aboutsummaryrefslogtreecommitdiffstats
path: root/Tools/scripts
Commit message (Expand)AuthorAgeFilesLines
* Actually use the user's group name, not their username, for the *GRPnbm2001-11-181-1/+1
* Use 'id -un' and 'id -gn' for user and group information, not 'logname'.nbm2001-08-173-7/+80
* Actually fix the breakage introduced in rev 1.2.sobomax2001-07-311-2/+0
* Fix breakage introduced in previous commit.sobomax2001-07-311-1/+1
* Fix a bug that in some rare cases may lead to a patch not being properlysobomax2001-07-311-0/+2
* Trap signal 31 as well (typo).sobomax2001-07-301-2/+2
* Unbroke when /usr/ports is symlink.sobomax2001-07-301-2/+2
* Fix problems in previous commit:sobomax2001-05-171-5/+5
* - Add an option to disable interactive confirmation;sobomax2001-05-171-1/+18
* Stopgap bugfix to avoid the case where a user invokes -t and ends up withwill2001-05-011-3/+4
* Be more specific in trying to exclude man pages - look for 'man/man',nbm2001-04-021-1/+1
* Steal the 'hmake' variable building from mkpinstall. This wasn'tnbm2001-04-021-4/+6
* Add patchtool - a tool to automate generation/updating of patchfiles. Thissobomax2001-03-192-0/+775
* Look into arch-specific distinfo's as well.sobomax2001-03-191-2/+2
* Make plist work again with new-found use of line continuation ingreen2001-03-131-9/+16
* Do not hardcode /tmp as a temp directory base, try $TMPDIR, $TMP androam2001-02-222-4/+41
* Some minor additions so that we act a bit more like NetBSD's url2pkg; wenbm2001-02-021-1/+7
* Fix off-by-one error that was causing an infinite loop in some verywill2001-01-171-1/+1
* Use the -p option with diff. Add a FreeBSD tag. Don't try totrevor2001-01-131-24/+7
* Fix two bugs: pass $passenv to make *always*; remember that the initialwill2001-01-071-3/+3
* Make plist (the Ruby script) a tad more useful: build in mtree supportgreen2001-01-071-26/+54
* As a quick fix, use /tmp instead of the currently hardcoded /usr/tmp.nbm2001-01-032-2/+2
* Add (a currently very bare) mkpbuild, and (the more useful) mkpinstall.nbm2001-01-032-0/+136
* Fix breakage when someone uses -t option: pass DISTDIR environment variablewill2001-01-021-7/+9
* Several changes. First, depend on another environment variable ratherwill2001-01-011-12/+14
* Here's my holiday present to the ports team: new -l option allows you towill2000-12-311-19/+95
* Add new option: -c file : Pass a file containing the log message for thewill2000-12-301-3/+23
* Add -g option to disable committing to CVSROOT/modules, useful if someonewill2000-12-191-2/+5
* Functional modification: Make -n only apply to cvs commit, NOT *all*will2000-12-091-3/+3
* Add standard 2-clause BSD license to protect my (and mharo's) copyright.will2000-11-041-0/+24
* s|pkg/PLIST|pkg-plist|gsobomax2000-10-211-3/+3
* Add update-patches, a script to generate updated versions of thetrevor2000-10-192-1/+139
* Add plist, a script to automate the generation of a pkg-plist.green2000-10-172-0/+65
* Overhaul addport again. Should be quite functional now.will2000-10-141-22/+70
* Add the first efforts on my mkptools, the successor to makeport.pl.nbm2000-10-144-0/+613
* Since people don't seem to appreciate the fact that addport can dowill2000-10-111-26/+0
* Ajust for a new world order (md5 --> distinfo).sobomax2000-10-091-3/+3
* Use -t flag with portlint.will2000-10-041-1/+1
* Fix bogon where replies were not chomp()'d.will2000-10-011-0/+1
* New script (and it's README) for searching the ports tree. Add this scriptmarko2000-08-283-0/+349
* Make -n work again. Add new option -s to allow people to specify awill2000-08-191-11/+30
* Properly check -d argument, and return usage() if it's not there. Also usewill2000-08-121-6/+9
* Minor cleanups. Print usage() if no arguments are passed. Get rid ofwill2000-08-111-19/+10
* Major update to addport. Many *MANY* bugfixes. Addport should now workwill2000-08-101-160/+211
* Fix special case where people use ``.'' for the argument to -d. I'm notwill2000-08-061-1/+6
* Add missed '>' to my e-mail.sobomax2000-08-023-4/+4
* Add gnomedepends.py to our collection of helpfull scripts.sobomax2000-08-022-1/+164
* Various fixes and improvements.sobomax2000-07-191-5/+5
* Add hack for gzipped files that are not .tar.gz files and uncompressalex2000-07-191-2/+3
* Add "-s" (silent) option useful for shell scripts.sobomax2000-07-101-18/+41
* Add checknewver.sh - a shell script which checks for availability of newestsobomax2000-07-071-0/+85
* Add checknewvers.sh - a script which checks for availability of the newestsobomax2000-07-071-0/+2
* Allow existing CVS_RSH environment var to take precedent.sobomax2000-07-041-1/+8
* Allow existing CVS_RSH environment var to take precedent.will2000-07-041-2/+4
* Fix addport so that it will work on freefall. Remove old cruft leftwill2000-07-011-13/+28
* Add close-pr - a slightly hacked version of edit-pr(1) to quickly close PR.sobomax2000-06-272-0/+364
* Add extract-lines for .Z archives.alex2000-06-101-1/+7
* Add a traling slash ("/") to the /usr/ports/ and /usr/ports/distfiles/ to makesobomax2000-06-061-3/+3
* Add tag and MAINTAINER.sobomax2000-06-051-4/+4
* Add distclean.sh - a little script to check set of distfiles against currentlysobomax2000-06-052-5/+71
* Update for multiple ports. Also add MAINTAINER/Created [on,by] lines.will2000-05-241-41/+57
* Add checksum.sh script that checks a port or ports for broken distfiles andwill2000-05-222-0/+66
* Make getpr work for remote committers as well.sobomax2000-05-191-2/+7
* Readme describing all the scripts in this directory. Somebody good atmharo2000-05-021-0/+47
* 3 little scripts I use when dealing with port update PRs.mharo2000-05-023-0/+147
* Future replacement to easy-import for adding ports to the tree.mharo2000-05-021-0/+243
* A tool to check whether all your ports are installed properly, what filesmharo2000-05-021-0/+143