aboutsummaryrefslogtreecommitdiff
path: root/Tools
Commit message (Collapse)AuthorAgeFilesLines
* Various fixes and improvements.Maxim Sobolev2000-07-191-5/+5
| | | | Notes: svn path=/head/; revision=30889
* Add hack for gzipped files that are not .tar.gz files and uncompressAlexander Langer2000-07-191-2/+3
| | | | | | | | | them The-Right-Way(tm). This whole uncompress-algorythm should be reworked, though. Notes: svn path=/head/; revision=30878
* Fix benign bug which had the script claiming to delete any package thatSatoshi Asami2000-07-121-1/+1
| | | | | | | | includes a missing package's name as a substring (e.g., ja-mh-6.8.4 vs. mh-6.8.4), when it wasn't actually deleting it anyway. Notes: svn path=/head/; revision=30542
* Add "-s" (silent) option useful for shell scripts.Maxim Sobolev2000-07-101-18/+41
| | | | Notes: svn path=/head/; revision=30441
* Add checknewver.sh - a shell script which checks for availability of newestMaxim Sobolev2000-07-071-0/+85
| | | | | | | | version of distfiles on MASTER_SITES. This is still work in progress, so please use with caution and don't forget report bugs and submit patches. Notes: svn path=/head/; revision=30300
* Add checknewvers.sh - a script which checks for availability of the newestMaxim Sobolev2000-07-071-0/+2
| | | | | | | | versions of distfiles on MASTER_SITES. This is still work in progress, so please use with caution and don't forget report bugs and submit patches. Notes: svn path=/head/; revision=30299
* Back out (1) in previous commit -- extra directories are fatal again.Satoshi Asami2000-07-051-5/+1
| | | | | | | | | Otherwise it is often too hard to find out which port left the directory behind since packages propagates extra directories. Also, many of the extra directories contain files, so it makes no sense to ignore them. Notes: svn path=/head/; revision=30247
* Allow existing CVS_RSH environment var to take precedent.Maxim Sobolev2000-07-041-1/+8
| | | | Notes: svn path=/head/; revision=30171
* Allow existing CVS_RSH environment var to take precedent.Will Andrews2000-07-031-2/+4
| | | | | | | Submitted by: sobomax Notes: svn path=/head/; revision=30146
* (1) Make extra files fatal errors only if they are files -- extraSatoshi Asami2000-07-021-2/+9
| | | | | | | | | | | directories are still included in the list of "extra stuff", but are not considered fatal (for now). (2) Use ls's -a flag to print out list of all files in ${PREFIX}, for obvious reasons. Notes: svn path=/head/; revision=30062
* Fix addport so that it will work on freefall. Remove old cruft leftWill Andrews2000-06-301-13/+28
| | | | | | | | around from older versions of addport. Make addport a little more helpful by actually displaying usage() if no args are passed. Notes: svn path=/head/; revision=30037
* Add close-pr - a slightly hacked version of edit-pr(1) to quickly close PR.Maxim Sobolev2000-06-262-0/+364
| | | | Notes: svn path=/head/; revision=29891
* Add extract-lines for .Z archives.Alexander Langer2000-06-101-1/+7
| | | | | | | | | Change MAINTAINER: alex@big.endian.de --> alex@FreeBSD.org Reviewed by: will Notes: svn path=/head/; revision=29501
* Add a traling slash ("/") to the /usr/ports/ and /usr/ports/distfiles/ to makeMaxim Sobolev2000-06-061-3/+3
| | | | | | | | | the script working for the cases when either one directory is a symlink. Submitted by: Juriy Goloveshkin <juriy@avias.com>, Volodymyr Kostyrko <arcade@limbo.dn.ua> Notes: svn path=/head/; revision=29255
* Add tag and MAINTAINER.Maxim Sobolev2000-06-051-4/+4
| | | | Notes: svn path=/head/; revision=29233
* Add distclean.sh - a little script to check set of distfiles against currentlyMaxim Sobolev2000-06-052-5/+71
| | | | | | | | | | installed ports collection and prompt to remove unmatching entries (i.e. distfiles that doesn't have corresponding md5 file). Hardly requiested by: will Notes: svn path=/head/; revision=29232
* Update for multiple ports. Also add MAINTAINER/Created [on,by] lines.Will Andrews2000-05-241-41/+57
| | | | | | | Submitted by: maintainer Notes: svn path=/head/; revision=28722
* Add checksum.sh script that checks a port or ports for broken distfiles andWill Andrews2000-05-222-0/+66
| | | | | | | | | | | | gives a diff of any port with broken distfiles, if the distfile names are the same. This script will help keep more ports' up-to-date distfiles on ftp.FreeBSD.org. PR: 18723 Submitted by: Alexander Langer <alex@cichlids.com> Notes: svn path=/head/; revision=28669
* Make getpr work for remote committers as well.Maxim Sobolev2000-05-191-2/+7
| | | | Notes: svn path=/head/; revision=28588
* (1) Make this file callable in two phases (checksum, package) so distfilesSatoshi Asami2000-05-081-31/+110
| | | | | | | | | | | | | | | | | | can be fetched even if the packaging fails. This is to ensure distfiles with correct checksums can be fetched and put on ftp.FreeBSD.org before they disappear from the original master sites. (2) Delete port and all dependencies after packaging, and print out list of (a) Security-related files (set[ug]id flag set or world-writable) (b) Extra files and directories Requested by: kris (2a only) Notes: svn path=/head/; revision=28362
* Readme describing all the scripts in this directory. Somebody good atMichael Haro2000-05-011-0/+47
| | | | | | | writing docs should probably fix this file. Notes: svn path=/head/; revision=28246
* 3 little scripts I use when dealing with port update PRs.Michael Haro2000-05-013-0/+147
| | | | | | | | | | | | | getpr - downloads a problem report from GNATS and attempts to extract the patch, shar, uuencoded file from it. this probably needs to be checked for potential security problems. prpatch - just does `patch $1 < pr-patch' (pr-patch is created by getpr) prdone - checks in the port, attempting to fill out the commit message using information from the problem report and then takes you into edit-pr so you don't forget to close the PR. Notes: svn path=/head/; revision=28245
* Future replacement to easy-import for adding ports to the tree.Michael Haro2000-05-011-0/+243
| | | | | | | | This still needs work, but I want to get this out there so people can comment on it. This is really only of use to committers. Notes: svn path=/head/; revision=28244
* A tool to check whether all your ports are installed properly, what filesMichael Haro2000-05-011-0/+143
| | | | | | | | | have changed, what new files there are, and so forth. Created by: Neil Blakey-Milner <nbm@mithrandr.moria.org> Notes: svn path=/head/; revision=28243
* (1) Be a little less picky about finding read-only mounts.Satoshi Asami2000-03-211-4/+6
| | | | | | | | | (2) Create directories before trying to copy files over. (3) There's no -a option to scp anymore. Notes: svn path=/head/; revision=26926
* Add a few more error tags (bison, ELF, REQUIRES_MOTIF, dependency, newSatoshi Asami2000-03-021-2/+12
| | | | | | | compiler error). Notes: svn path=/head/; revision=26501
* Add a few more files to bindest.Satoshi Asami2000-02-171-4/+16
| | | | Notes: svn path=/head/; revision=25898
* freebsd.org -> FreeBSD.orgSatoshi Asami1999-10-121-1/+1
| | | | Notes: svn path=/head/; revision=22376
* Increase wait from 4 hours to 5 hours. Seems the ports are taking longerSatoshi Asami1999-10-101-2/+2
| | | | | | | to build now. Notes: svn path=/head/; revision=22302
* Don't run make describe in parallel -- the outputs gets mangled sometimes.Satoshi Asami1999-10-101-1/+1
| | | | Notes: svn path=/head/; revision=22301
* Minor cleanup, remove excessive tests.Satoshi Asami1999-09-241-2/+1
| | | | Notes: svn path=/head/; revision=21897
* Adjust to new directory structure.Satoshi Asami1999-09-241-1/+1
| | | | Notes: svn path=/head/; revision=21896
* Put the logs and error logs in a dated subdirectory of the archiveSatoshi Asami1999-09-221-3/+22
| | | | | | | | | | | directory and create symlinks to it. Move index generation back into the parallel part, let's see if the echo `perl` fix to bsd.port.mk will make a difference. Move the index syntax check out of the background job so it can be properly flagged. Notes: svn path=/head/; revision=21885
* Call bothlogs.Satoshi Asami1999-09-221-0/+2
| | | | Notes: svn path=/head/; revision=21873
* A small script to generate a list of logs that are in both 3-stableSatoshi Asami1999-09-221-0/+51
| | | | | | | and 4-current. Notes: svn path=/head/; revision=21872
* Put build logs in "archive/buildlogs" and make a symlink to it.Satoshi Asami1999-09-221-5/+5
| | | | Notes: svn path=/head/; revision=21871
* Another case for compiler error.Satoshi Asami1999-09-221-1/+1
| | | | Notes: svn path=/head/; revision=21870
* Run chflags if rm -rf of chroot dir fails -- some port may haveSatoshi Asami1999-09-221-1/+6
| | | | | | | left some schg junk around. Notes: svn path=/head/; revision=21869
* Run Xvfb if it exists and set DISPLAY accordingly. This helps portsSatoshi Asami1999-09-221-4/+17
| | | | | | | that require xrdb and other inane stuff during build. Notes: svn path=/head/; revision=21868
* Remove /var/db/pkg/* *inside* chroot area, not outside.Satoshi Asami1999-09-111-2/+2
| | | | Notes: svn path=/head/; revision=21663
* Little whitespace fix.Satoshi Asami1999-09-111-1/+1
| | | | Notes: svn path=/head/; revision=21651
* Note that you need /usr/lib/aout/c++rt0.o for package building. It's notSatoshi Asami1999-09-111-3/+8
| | | | | | | included in bindist or any of the compat*dists. Notes: svn path=/head/; revision=21646
* This is supposed to be 4-current, not 3.1-release.Satoshi Asami1999-09-111-2/+2
| | | | Notes: svn path=/head/; revision=21644
* Don't delete the whole /usr/games, leave strfile behind. At least one portSatoshi Asami1999-09-112-4/+92
| | | | | | | (misc/fortuneit) needs it. Notes: svn path=/head/; revision=21643
* Improve snapshot ftp installation. Put hostnames, distributions etc. inSatoshi Asami1999-09-112-18/+28
| | | | | | | variables instead of command lines. Create /var/db/port.mkversion. Notes: svn path=/head/; revision=21642
* (1) Instead of specifying list of package names of dummy ports (i.e.,Satoshi Asami1999-09-111-19/+36
| | | | | | | | | | | | | | | | | | | | | | | | | XFree86, Motif) to copy, make a variable hold directory names, and do a "make package-name" in there to obtain the package names. (2) Exit if there is problem in INDEX. A line that contains "non-existent" (suggesting a dangling dependency) or a line that has less or more than nine |'s flag errors. (3) Pass the fifth argument (bindist.tar's md5) to setupnode. (4) Typo in spelling "restricted". Submitted by: marcel (5) Run cvsup at verbosity level 0 instead of 1. (6) Print out only ${PKGNAME}, not ${PKGNAME}.log or ${PKGNAME}.tgz when reporting new or old packages/failures. (7) Archive /usr/ports used to build packages in ${branch}/tarballs. Requested by: steve Notes: svn path=/head/; revision=21639
* (1) Remove FORCE_PKG_REGISTER, it is not necessary anymore. RemoveSatoshi Asami1999-09-111-12/+23
| | | | | | | | | | | | | | | | | | | everything under /var/db/pkg/* before installing dependencies and during final cleanup. (2) Change OSREL, OSVERSION and PORTOBJFORMAT (if necessary). Comment out those for 3-stable. Reported by: paul, tg (3) Move mtree until after we actually mount /usr/src. ;) Reported by: taoka (4) Run ldconfig with and without -aout in all sorts of directories to pick up everything that could be in compat dirs etc. Run ldconfig -aout -R after cleanup too. Notes: svn path=/head/; revision=21638
* Add extra argument md5 for bindist.tar. Skip scp if md5 matchesSatoshi Asami1999-09-111-3/+9
| | | | | | | what the client already has. Notes: svn path=/head/; revision=21637
* Change OSREL and OSVERSION for 3 and 4 branches. (The ones for 3-stableSatoshi Asami1999-09-112-6/+6
| | | | | | | are commented out anyway....) Notes: svn path=/head/; revision=21636
* Add check for "invalid category" error.Satoshi Asami1999-09-111-1/+3
| | | | | | | Add another case for compilation error (undeclared variable). Notes: svn path=/head/; revision=21635