diff options
author | Alex Kozlov <ak@FreeBSD.org> | 2015-04-10 07:05:45 +0000 |
---|---|---|
committer | Alex Kozlov <ak@FreeBSD.org> | 2015-04-10 07:05:45 +0000 |
commit | c9575fbfdca7d4acc2324a8c6c13da1081b98156 (patch) | |
tree | 7f5514afb6b21ee3abcbf102f1ad651406b0fd62 /Tools/scripts/release/scrubindex.pl | |
parent | Initial import of cppcms 1.0.5. (diff) |
- Remove a few more scripts from Tools/scripts:
chkdepschain.py: doesn't support pkgng
explicit_lib_depends.sh: doesn't support pkgng
plist: obsolete; searches for /etc/mtree/BSD.local.dist, add @dirrm, doesn't know about man pages in the plist
release: unused and obsolete
resolveportsfromlibs.sh: doesn't support pkgng
Approved by: portmgr (bapt)
Diffstat (limited to 'Tools/scripts/release/scrubindex.pl')
-rwxr-xr-x | Tools/scripts/release/scrubindex.pl | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/Tools/scripts/release/scrubindex.pl b/Tools/scripts/release/scrubindex.pl deleted file mode 100755 index 608d4d359a24..000000000000 --- a/Tools/scripts/release/scrubindex.pl +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/perl -# $FreeBSD$ - -die "$0 <pkgdir> <indexfile>\n" if ($#ARGV != 1); - -$xdep = 'XFree86-3\.3\.6_10'; -$pkgdir = shift(@ARGV); -#$ext = 'tbz'; -$ext = 'tgz'; - -print STDERR "scrubindex pkgdir: $pkgdir\n"; - -my $cnt = 0; - -LOOP: -while (<>) { - s/$xdep//g; - s/ */ /g; - s/\| /\|/g; - - @f = split('\|'); - next if (! -f "$pkgdir/$f[0].$ext"); - - foreach $dep (split(' ', $f[8])) { - next LOOP if (! -f "$pkgdir/$dep.$ext"); - } - - $cnt++; - print; -} -print STDERR "$cnt lines copied from scrubindex.pl" |