summaryrefslogtreecommitdiffstats
path: root/src/fedpkg.py
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2011-01-31 16:44:43 +0100
committerHans Ulrich Niedermann <hun@n-dimensional.de>2011-02-01 16:23:52 +0100
commit357ae922fa3621b76ca5209524285d310cd869a1 (patch)
tree7bd76e62dc43329e48dd68bf323475c0e1fd7e53 /src/fedpkg.py
parentaa4ed2b47671786c2d651e2f0604fd18f7ab74a6 (diff)
downloadfedora-packager-5/verify-files.tar.gz
fedora-packager-5/verify-files.tar.xz
fedora-packager-5/verify-files.zip
Add "fedpkg verify-files" command5/verify-files
usage: fedpkg verify-files [-h] Locally run 'rpmbuild -bl' to verify the spec file's %files sections. This is useful after a successful run of 'fedpkg install' or after a 'fedpkg local' run which failed due to %files list inaccuracies.
Diffstat (limited to 'src/fedpkg.py')
-rwxr-xr-xsrc/fedpkg.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/fedpkg.py b/src/fedpkg.py
index b9d46c4..e12124f 100755
--- a/src/fedpkg.py
+++ b/src/fedpkg.py
@@ -498,6 +498,14 @@ def diff(args):
log.error('Could not diff: %s' % e)
sys.exit(1)
+def verify_files(args):
+ try:
+ mymodule = pyfedpkg.PackageModule(args.path, args.dist)
+ return mymodule.verify_files()
+ except pyfedpkg.FedpkgError, e:
+ log.error('Could not verify %%files list: %s' % e)
+ sys.exit(1)
+
def export(args):
# not implimented; not planned
log.warning('Not implimented yet, got %s' % args)
@@ -1007,6 +1015,12 @@ packages will be built sequentially.
help = 'short-circuit compile')
parser_compile.set_defaults(command = compile)
+ # Verify %files list locally
+ parser_verify_files = subparsers.add_parser('verify-files',
+ help='Locally verify %%files section',
+ description="Locally run 'rpmbuild -bl' to verify the spec file's %files sections. This is useful after a successful run of 'fedpkg install' or after a 'fedpkg local' run which failed due to %files list inaccuracies.")
+ parser_verify_files.set_defaults(command = verify_files)
+
# export the module; not planned
#parser_export = subparsers.add_parser('export',
# help = 'Create a clean export')