aboutsummaryrefslogtreecommitdiffstats
path: root/extras
diff options
context:
space:
mode:
authorKristian Lyngstol <kristian@bohemians.org>2016-05-19 09:26:35 +0200
committerKristian Lyngstol <kristian@bohemians.org>2016-05-19 09:26:35 +0200
commitb417abd95fca765f12bee1b94fdebd48f701e56b (patch)
treea4a459e30443a526cc4bdfbe458330532cace459 /extras
parent09d7bca0d14e07525eab302a12b3ab5e300bc94b (diff)
Remove /comments from test - replace with oplog
Diffstat (limited to 'extras')
-rwxr-xr-xextras/tools/deplist.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/extras/tools/deplist.sh b/extras/tools/deplist.sh
deleted file mode 100755
index cd2ecc0..0000000
--- a/extras/tools/deplist.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-# Generate a dependency list for debian packages needed to work
-#
-# This is ... somewhat extensive. And a good incentive for people to clean
-# up their mess.
-
-(
-cat <<_EOF_
-use lib '../include';
-use lib '../web/streamlib';
-_EOF_
-find ../ -name '*pl' -exec egrep '^use ' {} \; | sort | uniq
-cat <<_EOF_
-foreach my \$key (keys %INC) {
- if (\$INC{\$key} =~ m/^\./) {
- next;
- }
- print \$INC{\$key} . "\n";
-}
-_EOF_
-) | perl 2>/dev/null | xargs realpath | xargs dpkg -S | awk '{print $1}' | sed 's/:$//' | sort | uniq