# $FreeBSD$ #################################################################### #################################################################### # This file contains the default configuration for the CVSROOT # perl scripts. You are advised to override the configuration # in the cfg_local.pm file instead of here. # # WARNING: You are strongly advised to check for syntax errors # in this file before committing it. Use: perl -cw cfg.pm #################################################################### #################################################################### package cfg; use strict; use vars qw( $ADD_TO_LINE $AVAIL_FILE $CHECK_HEADERS $COMMITCHECK_EXTRA @COMMIT_HOSTS $COMMITTER $DEBUG $DIFF_BLOCK_TOTAL_LINES $EXCLUDE_FILE $FILE_PREFIX $IDHEADER $LAST_FILE @LOG_FILE_MAP $MAILADDRS $MAILBANNER $MAILCMD $MAIL_BRANCH_HDR $MAIL_ON_DIR_CREATION $MAIL_TRANSFORM $MINCVSVERSION $MAX_DIFF_SIZE $NO_DOS_LINEBREAKS $PID $PROG_CVS $PROG_MV %TEMPLATE_HEADERS $TMPDIR $TZ $UNEXPAND_RCSID $WARN_HEADERS ); use POSIX qw(tzset); my $CVSROOT = $ENV{'CVSROOT'} || die "Can't determine \$CVSROOT!"; ###################### ### global options ### ###################### ### WARNING: these aren't global across all the scripts yet. ### This is work in progress. # Process group id; used as a unique number in temporary file names. $PID = getpgrp(); # Debug level, 0 = off, 1 = on. $DEBUG = 0; # Location of temporary directory. $TMPDIR = "/tmp/"; # The filename prefix used for temporary files. $FILE_PREFIX = "#cvs.files.$PID"; # The file used to store the name of the last directory examined # when processing a multi-directory commit. $LAST_FILE = "$TMPDIR/$FILE_PREFIX.lastdir"; # System tools. $PROG_CVS = '/usr/bin/cvs'; # cvs(1) $PROG_MV = '/bin/mv'; # mv(1) # The username of the committer. $COMMITTER = $ENV{"LOGNAME"} || $ENV{'USER'} || getlogin || (getpwuid($<))[0] || sprintf("uid#%d",$<); # Time zone $TZ = undef; ################### ### commitcheck ### ################### # A list of hosts the it's ok to commit on. Useful if your committers # take local copies of the repository to work off-line. # (Empty if you don't want checks.) @COMMIT_HOSTS = (); # The minimum version of cvs that we will work with. $MINCVSVERSION = "1090900"; # 1.9.9p0 # Additional commit time checks. This is an anonymous subroutine # that gets called early on in the validation process to see whether # the committer is allowed to commit. It should return true if # everything is ok, otherwise the commit will be terminated. $COMMITCHECK_EXTRA = ""; ################### ### cvs_acls.pl ### ################### # The name of the avail file that defines who's allow to # commit to what. $AVAIL_FILE = "$CVSROOT/CVSROOT/avail"; ################ ### logcheck ### ################ # These are the optional headers that can be filled at the end of # each commit message. The associated value is a regular-expression # that is used to type-check the entered value. If a match fails # then the commit is rejected. (See rcstemplate). # # Make sure that these are also described in the rcstemplate to # make their usage clear to committers. # # In addition any of these entries that are left blank are removed # from the log at commit time. [Please note that for them to be # removed from the rcslog in the repository you need to be running # the version of cvs in the FreeBSD source tree. We've got a local # patch that causes cvs to read back the commit message after the # commit_prep.pl script has had a chance to modify it (via the # 'commitinfo' hook). ] %TEMPLATE_HEADERS = ( # "Reviewed by" => '.*', # "Submitted by" => '.*', # "Obtained from" => '.*', # "Approved by" => '.*', # "PR" => '.*', # "MFC after" => '\d+(\s+(days?|weeks?|months?))?' ); ###################### ### commit_prep.pl ### ###################### # Check for instances of $IDHEADER in committed files, and # bomb out if they're not present, or corrupted. # Exclusions can be specified in the exclude file. # Currently $IDHEADER must be an instance of '$ CVSHeader $', or an alias # defined in CVSROOT/options. $CHECK_HEADERS = 0; $EXCLUDE_FILE = "$CVSROOT/CVSROOT/exclude"; # Make a header check a non-fatal error - just warn, don't exit. $WARN_HEADERS = 0; # WARNING: You will also need to be running the version of cvs that # the FreeBSD project is using; I believe that we have some local patches # that aren't in the main 'cvs' source. # Additionally you'll need to tweak CVSROOT/options if you wish to use your # own ident header. $IDHEADER = 'CVSHeader'; # Contract any instances of $IDHEADER in the source file before committing. # This is useful because it means that expanded headers aren't stored in # the repository as part of the delta. $UNEXPAND_RCSID = 0; # Check for DOS/WINDOWS/MAC linebreaks in the file, bomb out if present. # Exclusions can be specified in the exclude file. $NO_DOS_LINEBREAKS = 0; #################### ### log_accum.pl ### #################### # The command used to mail the log messages. # Usually something like '/usr/sbin/sendmail'. $MAILCMD = "/usr/sbin/sendmail"; # Email addresses of recipients of commit mail. $MAILADDRS = 'nobody'; # Extra banner added to the top of commit email. # Use "" if you don't want one. # i.e. $MAILBANNER = "Project X CVS Repository"; $MAILBANNER = ""; # Send mail when directories are created in the repository. # 0 = off, 1 = on. $MAIL_ON_DIR_CREATION = 0; # Include the names of the branches committed to in the commit email, # using this header (leave off the trailing ':'). # Use "" if you don't want one. $MAIL_BRANCH_HDR = "X-CVS-Branch"; # Include a 'To:' header in the generated commit mail? $ADD_TO_LINE = 1; # This is a way to post-process the log email before it is mailed. # Some people find it useful to use this to create URLs in their # commit mails to show the patch in a web page (using cvsweb) for # instance. # # The $MAIL_TRANSFORM variable should be "" if you don't want to # use this feature. Otherwise it should be a reference to a # subroutine that is passed the email message as a list, and returns # the modified list to the log_accum.pl script. The list has one # element per email line, with no trailing line feeds. This function # shouldn't add them. If $DEBUG is switched on the log_accum.pl # script will show the before and after on stdout at commit time. # # The example below shows a way of inserting links to cvsweb. $MAIL_TRANSFORM = ""; #$MAIL_TRANSFORM = sub { # add_cvsweb_entry("http://www.example.org/cgi-bin/cvsweb.cgi", @_); #}; # A copy of the commit summary is saved locally as well as being # emailed to the committers. The name of the local log is obtained # by performing a pattern match on the directory that the files are # in. The following map defines the file names and their associated # pattern match. They are checked in order. The name 'other' is # used if none of the patterns match. # # XXX The directory that the logs are placed in should be a # configuration option too. @LOG_FILE_MAP = ( 'CVSROOT' => '^CVSROOT/', 'doc' => '^doc/', 'user' => '^src/', 'other' => '.*' ); # Include diffs of not greater than this size in kbytes in the # commit mail for each file modified. (0 = off). $MAX_DIFF_SIZE = 0; # Maximum size of in lines of the diff block. $DIFF_BLOCK_TOTAL_LINES = 200; ###################### # EXAMPLES ###################### # A function for post-processing a log message # and outputing it with URLs to a cvsweb.cgi in. sub add_cvsweb_entry { my $url_to_cvsweb = shift; my @input = @_; my @output = (); # Skip down to the revision summary. while (1) { my $line = shift @input; last unless defined($line); push @output, $line; last if $line =~ /^\s*Revision\s*Changes\s*Path\s*$/; } # Add the url links my $skip = 0; foreach (@input) { # The revision block is terminated with an empty line. $skip = 1 if $_ =~ /^\s*$/; push @output, $_; next if $skip; my ($rev, $add, $sub, $file, $status) = split; $rev =~ /(?:(.*)\.)?([^\.]+)\.([^\.]+)$/; my ($base, $r1, $r2) = ($1, $2, $3); my $prevrev = ""; if ($r2 == 1) { $prevrev = $base; } else { $prevrev = "$base." if $base; $prevrev .= "$r1." . ($r2 - 1); } my $baseurl = "$url_to_cvsweb/$file"; my $extra; if (defined($status)) { $rev = $prevrev if $status =~ /dead/; $extra = "?rev=$rev&content-type=text/plain"; } else { $extra = ".diff?r1=$prevrev&r2=$rev&f=h"; } push @output, "$baseurl$extra"; } return @output; }; ###################################################################### # Load the local configuration file, that allows the entries in this # file to be overridden. ###################################################################### eval { require "$CVSROOT/CVSROOT/cfg_local.pm" } if -e "$CVSROOT/CVSROOT/cfg_local.pm"; warn $@ if $@; if (defined $TZ) { $ENV{'TZ'} = $TZ; } else { delete $ENV{'TZ'}; } tzset; 1; # Perl requires all modules to return true. Don't delete!!!! #end 2.0.3jylefort2005-09-065-50/+25 * - Stop adding rzsh (restricted zsh) to /etc/shells [1]:sergei2005-09-062-6/+36 * There is more than 12 packages now.thierry2005-09-031-1/+1 * Upgrade to 1.0.3.thierry2005-09-023-6/+70 * - Re-add patch-configure (removed by mistake) to fix the build on the cluster;thierry2005-09-023-2/+28 * Remove mastersite which has gone away.linimon2005-09-011-1/+0 * Remove ftp.rge.com from MASTER_SITES.tg2005-08-301-2/+1 * - Retire shells/zsh-devel in favor of shells/zsh:sergei2005-08-295-772/+0 * Upgrade to 1.0.2.thierry2005-08-287-47/+32 * [1]:jylefort2005-07-308-124/+58 * Per prior standing request, turn this port over from inactive committerlinimon2005-07-201-1/+1 * Change MASTER_SITES to a CPAN address since old is brokengarga2005-07-124-4/+4 * Change MAINTAINER to my @FreeBSD.org accountgarga2005-07-122-2/+2 * Update to osh-050219 to fix fetchingkris2005-07-112-8/+3 * Fix svn issue with scponly via ssh+svn://.nork2005-06-201-2/+3 * Bump PORTREVISION by previous commit.nork2005-06-191-1/+1 * Add support ssh+svn://.nork2005-06-191-0/+9 * - Add itself to /etc/shellspav2005-06-062-1/+13 * Fix this patch file.obrien2005-05-052-21/+12 * - Change the way used to add/remove the shell on /etc/shells,clsung2005-05-048-24/+84 * Tweak pkg-descr, break out /etc/shell editing as seperate target, installobrien2005-04-293-13/+231 * - Use MAKE_ARGSvs2005-04-262-22/+1 * Update to version 1.0136krion2005-04-212-3/+3 * - Update to 4.2.5sergei2005-04-203-15/+20 * - It was not installing on FreeBSD 4.x with perl 5.00503.leeym2005-04-206-0/+40 * - Update to 1.8sergei2005-04-198-96/+202 * - Update to 4.1leeym2005-04-143-16/+4 * Change my MAINTAINER email address to jylefort@FreeBSD.orgjylefort2005-04-132-2/+2 * CVS really does need a better way of backing out a commit composing aobrien2005-04-121-3/+2 * At Kris's request, back out the MACHINE_ARCH spelling correction untilobrien2005-04-123-3/+4 * Very sorry for a local change that made it into the last commit.obrien2005-04-111-2/+1 * Assist getting more ports working on AMD64 by obeying theobrien2005-04-113-4/+5 * Bump PORTREVISION to chase the glib20 shared lib version change.marcus2005-03-121-0/+1 * Remove references to ports recently deleted.kris2005-02-211-3/+0 * As previously announced, remove ports that have reached their expiry date,kris2005-02-1929-675/+0 * BROKEN: Incomplete pkg-plistkris2005-02-122-0/+4 * - Update to 4.2.4sergei2005-02-072-5/+5 * Update to 2005-02-02vs2005-02-042-5/+5 * Use USE_PGSQLerwin2005-01-311-3/+1 * Update to version 2.2.3 to fix security vulnerability.simon2005-01-262-3/+3 * Remove the test for /dev/dsp during configure, it does not affect thethierry2005-01-261-0/+13 * - Update to 4.2.3sergei2005-01-243-6/+23 * Add bush 1.0.1, the Business Shell.thierry2005-01-247-0/+177 * - Update to 1.0.2pav2005-01-205-49/+39 * - Update to 20050112pav2005-01-204-6/+6 * Fix shells/ksh93 portedwin2005-01-123-20/+8 * BROKEN: unfetchable (maintainer confirms that a new release was uploadedkris2004-12-301-0/+2 * Reset MAINTAINER to ports@.nork2004-12-231-1/+1 * Scponly validates dangerous arguments since version 4.0. However,vs2004-12-152-1/+13 * - Update to 4.0pav2004-12-053-19/+24 * Update to 1.6.0seanc2004-11-303-7/+7 * Fix `read -e' handling when PS1 is longer than the terminal widtheik2004-11-192-1/+25 * - update to patchlevel 16 (replacing FreeBSD subst.c patch)eik2004-11-113-18/+10 * Bump PORTREVISIONS for all ports that depend on atk or pango to ease in themarcus2004-11-081-0/+1 * There is a string format vulnerability in rssh-2.2.1leeym2004-11-033-17/+9 * - update to patchlevel 15eik2004-11-023-19/+7 * Install the binary as 'bash2' also.obrien2004-10-282-0/+2 * Use the offical option for static linking.obrien2004-10-281-1/+1 * - Update to 20041017pav2004-10-286-32/+44 * Update to 2.06a.knu2004-10-266-478/+5 * Unbreak building by requiring gcc 3.4edwin2004-10-161-0/+1 * - better reflect `bash --version' in PORTVERSIONeik2004-10-149-22/+302 * New port: shells/viewglob, a GTK+ add-on to bash and zshedwin2004-10-147-0/+121 * [NEW PORT] shells/zoidberg: A modular PERL shelledwin2004-10-145-0/+152 * Fix process substitution on systems without fdescfs (FreeBSD 5.x, 6.x)eik2004-10-099-98/+79 * Unbreak on 5.X and -CURRENT.danfe2004-10-072-6/+1 * BROKEN on 5.x: Does not compilekris2004-09-291-0/+4 * - Fix package build on pointyhat and other environments wheresergei2004-09-271-1/+2 * - rssh < 2.2.1 has information disclosure vulnerability, so update to 2.2.1leeym2004-09-223-97/+20 * update to version 3.7eik2004-09-0320-520/+168 * - add FAQeik2004-09-036-11/+181 * Reenable 'pkg_add -r' usefullness.obrien2004-08-271-0/+1 * Add patch-set which fixes various bugs including a stack overflow.vs2004-08-262-1/+6 * Deprecated.shige2004-08-261-0/+3 * - Move a faster site (archive.progeny.com) to the beginningsergei2004-08-251-3/+4 * - Remove dead mirrors, add few new onessergei2004-08-251-5/+6 * - Update to 4.2.1 [1]sergei2004-08-243-69/+86 * We now have the C99 wide/multibyte character functions bash needs.obrien2004-08-232-26/+0 * Add the 'DEBUG' build option.obrien2004-08-231-0/+3 * add three fixes from bug-bash@:eik2004-08-194-1/+57 * update to 040812oliver2004-08-162-3/+3 * mark bash1 DEPRECATED, with EXPIRATION_DATE 2004-08-25eik2004-08-121-0/+3 * move shells/bash3 -> shells/basheik2004-08-129-232/+1 * Fix nested brace vs. variable expansioneik2004-08-114-2/+32 * Fix segfault when accessing an unset arrayeik2004-08-114-0/+34 * Ignore /dev/fd/ on FreeBSD 5.x -- devfs doesn't provide a full /dev/fd/obrien2004-08-102-1/+17 * Add bash3, The GNU Bourne-Again SHell version 3.00eik2004-07-3143-958/+355 * - Update to 20040711pav2004-07-304-8/+6 * Remove references to mirror.ac.ukvs2004-07-261-2/+1 * Update to 3.11krion2004-07-174-15/+27 * Integrate bug fixes from [FDclone-users:00310], [FDclone-users:00311]knu2004-07-174-0/+464 * - Update to 0.9.5vs2004-07-172-4/+5 * upgrade to 1.0124ijliao2004-07-152-3/+3 * Update to 2.05g.knu2004-07-102-3/+3 * Fix location of binary in man-pagevs2004-07-083-0/+15 * Fix packaging w/ NOSHARED.vs2004-06-301-19/+19 * Update to 2.05f.knu2004-06-256-94/+15 * Add v7sh, the original Steve R. Bourne shell from the 7th edition Unix includingpav2004-06-2239-0/+5606 * Avoid a null pointer dereference, so 'xargs <<< ${EMTPY_VARIABLE}'obrien2004-06-216-3/+63 * Fix MASTER_SITES.nork2004-06-131-4/+2 * Fix MASTER_SITES.nork2004-06-131-4/+2 * Fix a bug where a \ at EOL did not work as escape character.knu2004-06-134-0/+88 * Update to 2.05e.knu2004-06-097-762/+3 * - Postfix fix: don't expect postconf be in /usr/sbin, rely on it being in PATHpav2004-06-054-4/+42 * Putting commit bit in storage. I don't have the timepatrick2004-06-031-1/+1 * Don't remove directories we didn't installkris2004-05-312-6/+0 * Double MAXLAUNCHTABLE and MAXFUNCLINES.knu2004-05-272-5/+15 * Readd a correct fix against the glob expansion bug.knu2004-05-264-1/+715 * Back out part of the previous commit. Turned out that the fixes inknu2004-05-254-652/+1 * Apply fixes against recently reported bugs.knu2004-05-256-0/+696 * - Mark rssh as IGNORE on 4.x (wordexp() is not supported)clement2004-05-231-1/+5 * Add rssh 2.1.1, a Restricted Secure SHell only for sftp or/and scp.clement2004-05-216-0/+140 * - Fix MASTER_SITESkrion2004-05-192-5/+3 * Update to 2.05d.knu2004-05-132-3/+3 * Update to osh-040421linimon2004-05-112-3/+3 * - Update to version 20040331krion2004-04-164-6/+6 * Trim whitespace.trevor2004-04-111-1/+0 * - Update to version 040216krion2004-04-103-15/+5 * - tar -> ${TAR} (since we have now a bsdtar ;)clement2004-04-071-1/+1 * Remove category pkg/COMMENT files in favour of a COMMENT variable in thekris2004-04-022-1/+2 * - Fix CONFIGURE_ARGS handlingpav2004-04-021-4/+4 * SIZEify (maintainer timeout)trevor2004-03-319-0/+36 * Catch up with the master port's update to 4.2.0.knu2004-03-252-10/+9 * Rename a wrongly named patch.knu2004-03-251-0/+0 * Add a patch to fix a minor bug with deleting a multibyte character atknu2004-03-252-0/+18 * - Update to 4.2.0 [1]sergei2004-03-243-23/+98 * - Update to 1.0115clement2004-03-223-11/+11 * Use PORTDOCS macro.clement2004-03-222-3/+1 * Remove old version's SIZE.nork2004-03-201-1/+0 * Update to 3.9(support for WinSCP3).nork2004-03-205-30/+37 * Fix build on amd64, and make this port actually run on 5.x.kris2004-03-183-8/+33 * - SIZE'ifykrion2004-03-181-0/+1 * . New victim^Wmaintainer.glewis2004-03-181-1/+1 * . Unbreak by updating to 2004-02-29.glewis2004-03-183-8/+7 * SIZEify.trevor2004-03-181-0/+2 * BROKEN: Distfile is unfetchablekris2004-03-171-0/+2 * BROKEN on amd64: Does not compilekris2004-03-141-1/+7 * BROKEN on ia64: Does not compilekris2004-03-071-1/+7 * Drop maintainership. I don't use this.naddy2004-03-061-1/+1 * BROKEN on sparc64: Does not compilekris2004-03-051-1/+7 * - add SIZEdinoex2004-02-261-0/+1 * Update to 2.05c.knu2004-02-252-2/+3 * - Update to version 20040214krion2004-02-196-44/+30 * Use PLIST_FILES (bento-tested, marcus-reviewed).trevor2004-02-066-3/+3 * Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.marcus2004-02-042-0/+2 * SIZE *DOES* MATTER.sergei2004-01-311-0/+2 * SIZEify.trevor2004-01-3011-0/+11 * Update to 20040101mharo2004-01-114-4/+4 * Fix pkg-plist (NOPORTDOCS knob).osa2004-01-033-12/+12 * Use DOCSDIR macro.osa2003-12-312-8/+8 * Use DOCSDIR macro.osa2003-12-311-2/+2 * - Update to 4.0.9sergei2003-12-203-21/+51 * Also pay attention to NOSHARED=yes as /usr/src and zsh does.obrien2003-12-153-3/+3 * The option to enable network redirection is removed since this is theobrien2003-12-143-27/+0 * Build bash dynamic unless either WANT_STATIC_BASH or NO_DYNAMICROOTobrien2003-12-143-0/+12 * - Fix build on non-i386 platforms.pav2003-12-132-30/+43 * Update to 2.05a, which fixes a bug in a builtin command "checkid".knu2003-12-102-3/+4 * Update to 2.05.knu2003-12-093-34/+2 * Add 'cvs blame' support.obrien2003-12-072-8/+44 * scponly dist includes a script which setup chroot cage, whichjeh2003-11-212-0/+25 * Apply a patch that fixes segv in group lookups.knu2003-11-202-0/+32 * - fix build with gcc 3.3.xkrion2003-11-195-109/+171 * - Update to version 20031112krion2003-11-174-4/+4 * Update to 031112 and unbreak, old version was not fetchable anymore.pav2003-11-152-2/+2 * - Update to version 20031022krion2003-11-074-4/+4 * Some days it doesn't pay to try to try to chew through the leather straps.linimon2003-11-051-1/+1 * Reset maintainer to ports@FreeBSD.org. Requested by: kris.linimon2003-11-032-2/+2 * Reset maintainer to ports@. Reviewed by: kris.linimon2003-11-031-1/+1 * Update to current version. PR ports/58192.linimon2003-11-035-20/+15 * Reset maintainer of ports owned by inactive committers who were just retired.kris2003-11-031-2/+2 * Move inclusion of bsd.port.pre.mk past variable definitions.linimon2003-10-291-6/+6 * utilize SITE_PERLijliao2003-10-243-122/+122 * Change to my @FreeBSD.org address.sergei2003-10-231-1/+1 * All right, that's it, no more commits at 4am for me.linimon2003-10-211-5/+1 * Remove BROKEN case for i386 4.x.linimon2003-10-211-2/+10 * Per bento logs, this is broken on 5.x. Rather than marking it so onlylinimon2003-10-211-1/+3 * - Layout for GnuSTEP 1.8.0dinoex2003-10-191-5/+1 * Update to 2.04c.knu2003-10-182-2/+2 * Before committing the previous BROKEN changes I carefully checked the statuskris2003-10-161-7/+1 * BROKEN on 5.x: does not compilekris2003-10-162-2/+14 * [patch][non-maintainer] remove dead master site from shells/zshedwin2003-10-041-1/+0 * - Update to version 20030929krion2003-09-304-6/+6 * New port: shells/bash-completionedwin2003-09-2913-0/+143 * - Fix build on -currentkrion2003-09-281-0/+11 * KATO mega patchedwin2003-09-275-5/+5 * Fixup tcsh_config to look in ${PREFIX}/share instead of /usr/share.seanc2003-09-111-1/+6 * After using tcsh for 4 years and having just discovered the 'rprompt'seanc2003-09-105-0/+38 * o Respect scponly default configuration.nork2003-09-022-26/+37 * - Fix typo in COMMENT [1]krion2003-09-012-4/+2 * Fix build on -current (varargs -> stdarg)obrien2003-08-319-0/+0 * - Fix build on -current (varargs -> stdarg)krion2003-08-309-0/+255 * - Fix build on -currentkrion2003-08-291-0/+1707 * - use new hook USE_GNUSTEP in bsd.port.mkdinoex2003-08-281-6/+3 * Remove tcsh.netchild2003-08-217-104/+0 * Forced update to release 2003-07-24.naddy2003-08-022-3/+3 * Update to 2.04a.knu2003-07-293-16/+2 * - flat layoutdinoex2003-07-261-5/+5 * Fix compatibility with rsync (depend explicitly on rsync).maho2003-07-261-1/+3 * fix configure arguments for gftp stuff.maho2003-07-261-2/+2 * Fix NOSHARED (produce static executable)osa2003-07-212-0/+2 * Update to 4.0.7 and turn over this port to the submitter. This updatewill2003-07-203-542/+613 * Update to release 2003-06-21.naddy2003-07-082-3/+3 * Update to 4.1.1.shige2003-07-044-535/+687 * - Drop obsolete definesdinoex2003-07-041-1/+0 * Update to 2.04.knu2003-06-303-2/+16 * Add "test" target to exercise regression tests; from NetBSD.naddy2003-06-251-4/+9 * - don't package ~/GNUSstepdinoex2003-06-181-5/+0 * - remove empty dirsdinoex2003-06-101-0/+6 * Fetch patches from MASTER_SITE_GNU also.obrien2003-05-203-6/+12 * Properly configure on FreeBSD/amd64.obrien2003-05-176-0/+75 * Update to patchlevel 7.obrien2003-05-176-6/+18 * Update to 2.03b.knu2003-05-156-149/+2 * Change maintainership to submitter.nork2003-05-111-1/+1 * Update to 3.8.nork2003-05-032-2/+2 * Update to release 2003-04-22.naddy2003-05-022-4/+3 * Apply a fix against a macro expansion problem and bump PORTREVISIONknu2003-04-234-0/+134 * Update to 2.03a + readlink fix.knu2003-04-194-9/+34 * o Update to 3.7.nork2003-04-183-5/+90 * Oops, put the correct file into /etc/shells.naddy2003-04-162-2/+3 * - Use libobjc.sodinoex2003-04-131-22/+5 * Update to 4.1.0.dev7.shige2003-04-043-2/+22 * update shells/rc to version 1.7, with readlineedwin2003-03-303-13/+9 * Update to 2.03.knu2003-03-283-10/+10 * Support /dev/(tcp|udp)/host/port redirection.obrien2003-03-253-0/+27 * GSCommander is a simple unix command monitor for GNUstep.dinoex2003-03-245-0/+69 * PR: 49067foxfair2003-03-231-2/+4 * Clear moonlight beckons.ade2003-03-07