summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsimo <simo>2005-12-31 06:54:11 +0100
committersimo <simo>2005-12-31 06:54:11 +0100
commitf47b09de422ae3bf57ed6e70768fa7012783d842 (patch)
treee78f589b6e8f3230bbc057392f9e95d9b42c9412
parent4e74ee9adf954facc8ab3758b29e31478cd5ef48 (diff)
downloadaur-f47b09de422ae3bf57ed6e70768fa7012783d842.tar.gz
aur-f47b09de422ae3bf57ed6e70768fa7012783d842.tar.xz
tupkgupdate resource usage improvements
now gets binary package name/ver/rel from filename, rather than untarring
-rwxr-xr-xtupkg/update/tupkgupdate8
1 files changed, 6 insertions, 2 deletions
diff --git a/tupkg/update/tupkgupdate b/tupkg/update/tupkgupdate
index f300024c..41f87d48 100755
--- a/tupkg/update/tupkgupdate
+++ b/tupkg/update/tupkgupdate
@@ -212,8 +212,12 @@ def areFilesIdentical(file_a, file_b):
############################################################
def infoFromPackageFile(filename):
- pkg = pacman.load(filename)
- return pkg.name, pkg.version + "-" + pkg.release
+ pkg = os.path.basename(filename)
+ m = re.compile("(?P<pkgname>.*)-(?P<pkgver>.*)-(?P<pkgrel>.*).pkg.tar.gz").search(pkg)
+ if not m:
+ raise Exception("Non-standard filename")
+ else:
+ return m.group('pkgname'), m.group('pkgver') + "-" + m.group('pkgrel')
def infoFromPkgbuildFile(filename):
# first grab the category based on the file path