summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2010-06-18 16:32:33 -0700
committerJesse Keating <jkeating@redhat.com>2010-06-18 16:34:54 -0700
commit2112925a92874ece0213cb6c891119bfd551020a (patch)
tree49faab369db9680430e61ccd6f8a23ecc541dbe6 /src
parenta0906dcea34827c094df8624072b2b8756738a6d (diff)
downloadfedora-packager-2112925a92874ece0213cb6c891119bfd551020a.tar.gz
fedora-packager-2112925a92874ece0213cb6c891119bfd551020a.tar.xz
fedora-packager-2112925a92874ece0213cb6c891119bfd551020a.zip
Add a function to get details of an srpm
Diffstat (limited to 'src')
-rw-r--r--src/pyfedpkg/__init__.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/pyfedpkg/__init__.py b/src/pyfedpkg/__init__.py
index 9350207..e03a102 100644
--- a/src/pyfedpkg/__init__.py
+++ b/src/pyfedpkg/__init__.py
@@ -18,12 +18,16 @@ import rpm
import logging
import git
import ConfigParser
+import tempfile
# Define some global variables, put them here to make it easy to change
LOOKASIDE = 'http://cvs.fedoraproject.org/repo/pkgs'
LOOKASIDEHASH = 'md5'
GITBASEURL = 'ssh://%(user)s@pkgs.stg.fedoraproject.org/%(module)s'
ANONGITURL = 'git://pkgs.stg.fedoraproject.org/%(module)s'
+UPLOADEXTS = ['tar', 'gz', 'bz2', 'lzma', 'xz', 'Z', 'zip', 'tff', 'bin',
+ 'tbz', 'tbz2', 'tlz', 'txz', 'pdf', 'rpm', 'jar', 'war', 'db',
+ 'cpio', 'jisp', 'egg', 'gem']
# Define our own error class
class FedpkgError(Exception):
@@ -108,6 +112,48 @@ def _get_build_arches_from_srpm(srpm, arches):
raise FedpkgError('No compatible build arches found in %s' % srpm)
return archlist
+def _srpmdetails(srpm):
+ """Return a tuple of package name, package files, and upload files."""
+
+ # get the name
+ cmd = ['rpm', '-qp', '--qf', '%{NAME}', srpm]
+ # Run the command
+ log.debug('Running: %s' % subprocess.list2cmdline(cmd))
+ try:
+ proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE)
+ output, error = proc.communicate()
+ except OSError, e:
+ raise FedpkgError(e)
+ name = output
+ if error:
+ log.error(error)
+ raise FedpkgError('Error querying srpm')
+
+ # now get the files and upload files
+ files = []
+ uploadfiles = []
+ cmd = ['rpm', '-qpl', srpm]
+ log.debug('Running: %s' % subprocess.list2cmdline(cmd))
+ try:
+ proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE)
+ output, error = proc.communicate()
+ except OSError, e:
+ raise FedpkgError(e)
+ if error:
+ log.error(error)
+ raise FedpkgError('Error querying srpm')
+ contents = output.split()
+ # Cycle through the stuff and sort correctly by its extension
+ for file in contents:
+ if file.rsplit('.')[-1] in UPLOADEXTS:
+ uploadfiles.append(file)
+ else:
+ files.append(file)
+
+ return((name, files, uploadfiles))
+
def clean(dry=False, useignore=True):
"""Clean a module checkout of untracked files.