From c9575fbfdca7d4acc2324a8c6c13da1081b98156 Mon Sep 17 00:00:00 2001 From: Alex Kozlov Date: Fri, 10 Apr 2015 07:05:45 +0000 Subject: - 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) --- Tools/scripts/release/scrubindex.pl | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100755 Tools/scripts/release/scrubindex.pl (limited to 'Tools/scripts/release/scrubindex.pl') 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 \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" -- cgit v1.2.3