From 4f38782ef1a0f0d8f6c0eed962bbcb6503579c71 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 9 Feb 2011 16:06:58 -0700 Subject: Re-arrange verify-files and slight fixups --- src/pyfedpkg/__init__.py | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) (limited to 'src/pyfedpkg/__init__.py') diff --git a/src/pyfedpkg/__init__.py b/src/pyfedpkg/__init__.py index cf5c506..6f2f6d6 100644 --- a/src/pyfedpkg/__init__.py +++ b/src/pyfedpkg/__init__.py @@ -1341,19 +1341,6 @@ class PackageModule: _run_command(cmd, shell=True) return - def verify_files(self): - """Run rpmbuild -bl on a module to verify the %files section""" - - # Get the sources - sources(self.path) - # setup the rpm command - cmd = ['rpmbuild'] - cmd.extend(self.rpmdefines) - cmd.extend(['-bl', os.path.join(self.path, self.spec)]) - # Run the command - _run_command(cmd, shell=True) - return - def getver(self): """Return the version-release of a package module.""" @@ -1802,3 +1789,14 @@ class PackageModule: if file not in spec: unused.append(file) return unused + + def verify_files(self): + """Run rpmbuild -bl on a module to verify the %files section""" + + # setup the rpm command + cmd = ['rpmbuild'] + cmd.extend(self.rpmdefines) + cmd.extend(['-bl', os.path.join(self.path, self.spec)]) + # Run the command + _run_command(cmd, shell=True) + return -- cgit