mirror of
https://github.com/peridotbuild/pv2.git
synced 2024-11-21 20:51:26 +00:00
hotfix: raise exception if rpmbuild is not available
This commit is contained in:
parent
3488f7ca28
commit
1972740141
@ -14,6 +14,7 @@ in the RESF (such as Rocky Linux).
|
||||
* CentOS Stream 8, 9+ recommended
|
||||
|
||||
* Python 3.6 or higher - Python 3.9+ recommended
|
||||
* rpm-build
|
||||
* A few python modules
|
||||
|
||||
* file-magic (python3-file-magic)
|
||||
@ -22,7 +23,7 @@ in the RESF (such as Rocky Linux).
|
||||
* rpm (python3-rpm)
|
||||
* pycurl (python3-pycurl)
|
||||
|
||||
* rpm macros packages
|
||||
* rpm macros packages (brought in by rpm-build package)
|
||||
|
||||
* \*-rpm-macros
|
||||
* \*-srpm-macros
|
||||
|
@ -58,6 +58,9 @@ class Import:
|
||||
"""
|
||||
Packs an srpm from available sources
|
||||
"""
|
||||
if not os.path.exists('/usr/bin/rpmbuild'):
|
||||
raise err.FileNotFound('rpmbuild command is missing')
|
||||
|
||||
command_to_send = [
|
||||
'rpmbuild',
|
||||
'-bs',
|
||||
|
Loading…
Reference in New Issue
Block a user