summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Gavin <pete@gentoo.org>2001-08-04 18:22:45 +0000
committerPeter Gavin <pete@gentoo.org>2001-08-04 18:22:45 +0000
commita6c32cb8e7a55b1760726e28e7805a225e9bae8c (patch)
tree7289448a882b6cc8bf5bab9c7f9f93cc9a63bc60 /scripts/sortpkglist.py
parentweb updates (diff)
downloadhistorical-a6c32cb8e7a55b1760726e28e7805a225e9bae8c.tar.gz
historical-a6c32cb8e7a55b1760726e28e7805a225e9bae8c.tar.bz2
historical-a6c32cb8e7a55b1760726e28e7805a225e9bae8c.zip
*** empty log message ***
Diffstat (limited to 'scripts/sortpkglist.py')
-rw-r--r--scripts/sortpkglist.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/sortpkglist.py b/scripts/sortpkglist.py
index 233fbb237c59..c589046e7476 100644
--- a/scripts/sortpkglist.py
+++ b/scripts/sortpkglist.py
@@ -8,15 +8,3 @@
import portage
import sys
-digraph = portage.digraph()
-
-if len(sys.argv) != 2:
- print 'usage: %s packagelist' % sys.argv[0]
-
-try:
- packagelist = open(sys.argv[1], "r")
-except:
- sys.stderr.write("could not open %s\n" % sys.argv[1])
- sys.exit(1)
-
-packages = packagelist.readlines()