]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: fix gen-package-table to allow the "_r$REV" version numbers of packages
authorZooko O'Whielacronx <zooko@zooko.com>
Thu, 4 Nov 2010 07:39:44 +0000 (00:39 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Thu, 4 Nov 2010 07:39:44 +0000 (00:39 -0700)
misc/build_helpers/gen-package-table.py

index 06ac6efd3a41e91648d2729272e8f1a44a6e17e8..5c674717dfa96a4db14fa39538e7691a8082e76d 100644 (file)
@@ -1,4 +1,4 @@
-#!python
+#!/usr/bin/env python
 # This script generates a table of dependencies in HTML format on stdout.
 # It expects to be run in the tahoe-lafs-dep-eggs directory.
 
@@ -8,8 +8,8 @@ extensions = ('.egg', '.tar.bz2', '.tar.gz', '.exe')
 platform_aliases = [('i686','x86'), ('i386','x86'), ('i86pc','x86'), ('win32','windows-x86'),
                     ('win-amd64','windows-x86_64'), ('amd64','x86_64')]
 python_versions = ((2,4), (2,5), (2,6), (2,7))
-FILENAME_RE  = re.compile(r'([a-zA-Z_0-9]*)-([0-9\.]*)(-py[0-9\.]*)?(-.*)?')
-FILENAME_RE2 = re.compile(r'([a-zA-Z_0-9]*)-([0-9\.]*)(win32|win-amd64)?(-py[0-9\.]*)?')
+FILENAME_RE  = re.compile(r'([a-zA-Z_0-9]*)-([0-9\.r_]*)(-py[0-9\.]*)?(-.*)?')
+FILENAME_RE2 = re.compile(r'([a-zA-Z_0-9]*)-([0-9\.r_]*)(win32|win-amd64)?(-py[0-9\.]*)?')
 
 matrix = {}