diff options
author | will <will@FreeBSD.org> | 2000-10-11 08:14:00 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-10-11 08:14:00 +0800 |
commit | 694340a543b21472a17ac0ca35f88baf81d06893 (patch) | |
tree | 045429b625150607d5a5d8a3104af0a8dceb0b91 /Tools | |
parent | 7ffbd77b5901b18a6f876a2d94315aa87515b754 (diff) | |
download | freebsd-ports-gnome-694340a543b21472a17ac0ca35f88baf81d06893.tar.gz freebsd-ports-gnome-694340a543b21472a17ac0ca35f88baf81d06893.tar.zst freebsd-ports-gnome-694340a543b21472a17ac0ca35f88baf81d06893.zip |
Since people don't seem to appreciate the fact that addport can do
automatic checking on their ports to be added, I'm removing it and its
overriding -v option. Let the improper port additions continue, and screw
anyone who doesn't care about the repo.
Propelled by: obrien, msmith
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/addport | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/Tools/scripts/addport b/Tools/scripts/addport index 235a0fdeac6b..378b563a6857 100755 --- a/Tools/scripts/addport +++ b/Tools/scripts/addport @@ -29,7 +29,6 @@ my $n = ""; $n = "-n " if $opts{'n'}; my $u = $ENV{USER}; $u = $opts{'u'} if ($opts{'u'} ne ""); my $more_testing = $opts{'t'}; -my $vanilla = $opts{'v'}; my $interactive = $opts{'i'}; my $tmpdir; @@ -74,24 +73,6 @@ END { } } -# setup the list of commands to run on the new port(s). -my @commands; -if (!$vanilla) { - push(@commands, "$make clean check-categories"); - push(@commands, "$portlint"); - if (-d $distdir) { - push(@commands, "$make DISTDIR='$distdir' FETCH_BEFORE_ARGS='-btA' checksum"); - } elsif ($myhost eq "freefall.freebsd.org") { - push(@commands, "$make DISTDIR='$tmpdir' FETCH_BEFORE_ARGS='-btA' checksum"); - } else { - push(@commands, "$make FETCH_BEFORE_ARGS='-btA' checksum"); - } - if ($more_testing) { - push(@commands, "$make distclean"); - push(@commands, "$make build"); - } -} - if ($dir eq "") { warnx("Need to specify a directory with -d argument!"); usage(); @@ -120,11 +101,6 @@ foreach my $thisdir (@dirs) { chdir $thisdir or err(1, "$thisdir"); - # now run the tests on this baby. - for (@commands) { - system("$_") && errx(1, "'$_' had problems. aborting."); - } - # Get the category name and make it suitable for use with cvs my $category; $_ = `grep CATEGORIES Makefile`; @@ -268,8 +244,6 @@ OPTIONS temporary directory set up on freefall. -u user Use a different username (default: $u). -t Do more port testing - -v Plain vanilla "add it" - no testing at all. - This option overrides -t in all cases. EXAMPLES % addport -n -d greatgame,helpfuldev,shoot |