Python rpm._RPMVSF_NOSIGNATURES Examples
The following are 5
code examples of rpm._RPMVSF_NOSIGNATURES().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
rpm
, or try the search function
.
Example #1
Source File: abichecker.py From openSUSE-release-tools with GNU General Public License v2.0 | 9 votes |
def __init__(self, *args, **kwargs): ReviewBot.ReviewBot.__init__(self, *args, **kwargs) self.no_review = False self.force = False self.ts = rpm.TransactionSet() self.ts.setVSFlags(rpm._RPMVSF_NOSIGNATURES) # reports of source submission self.reports = [] # textual report summary for use in accept/decline message # or comments self.text_summary = '' self.session = DB.db_session() self.dblogger = LogToDB(self.session) self.logger.addFilter(self.dblogger) self.commentapi = CommentAPI(self.apiurl) self.current_request = None
Example #2
Source File: content_upload.py From foreman-ansible-modules with GNU General Public License v3.0 | 8 votes |
def get_rpm_info(path): ts = rpm.TransactionSet() # disable signature checks, we might not have the key or the file might be unsigned # pre 4.15 RPM needs to use the old name of the bitmask try: vsflags = rpm.RPMVSF_MASK_NOSIGNATURES except AttributeError: vsflags = rpm._RPMVSF_NOSIGNATURES ts.setVSFlags(vsflags) with open(path) as rpmfile: rpmhdr = ts.hdrFromFdno(rpmfile) name = rpmhdr[rpm.RPMTAG_NAME].decode('ascii') epoch = rpmhdr[rpm.RPMTAG_EPOCHNUM] version = rpmhdr[rpm.RPMTAG_VERSION].decode('ascii') release = rpmhdr[rpm.RPMTAG_RELEASE].decode('ascii') arch = rpmhdr[rpm.RPMTAG_ARCH].decode('ascii') return (name, epoch, version, release, arch)
Example #3
Source File: util.py From mock with GNU General Public License v2.0 | 6 votes |
def yieldSrpmHeaders(srpms, plainRpmOk=0): import rpm ts = rpm.TransactionSet('/') # When RPM > 4.14.90 is common we can use RPMVSF_MASK_NOSIGNATURES, RPMVSF_MASK_NODIGESTS # pylint: disable=protected-access flags = (rpm._RPMVSF_NOSIGNATURES | rpm._RPMVSF_NODIGESTS) ts.setVSFlags(flags) for srpm in srpms: srpm = host_file(srpm) try: fd = os.open(srpm, os.O_RDONLY) except OSError as e: raise exception.Error("Cannot find/open srpm: %s. Error: %s" % (srpm, e)) try: hdr = ts.hdrFromFdno(fd) except rpm.error as e: raise exception.Error( "Cannot find/open srpm: %s. Error: %s" % (srpm, e)) finally: os.close(fd) if not plainRpmOk and hdr[rpm.RPMTAG_SOURCEPACKAGE] != 1: raise exception.Error("File is not an srpm: %s." % srpm) yield hdr
Example #4
Source File: scan.py From openscap-daemon with GNU Lesser General Public License v2.1 | 6 votes |
def _get_rpms(self): # TODO: External dep! import rpm chroot_os = os.path.join(self.dest, "rootfs") ts = rpm.TransactionSet(chroot_os) ts.setVSFlags((rpm._RPMVSF_NOSIGNATURES | rpm._RPMVSF_NODIGESTS)) image_rpms = [] for hdr in ts.dbMatch(): # No sorting if hdr['name'] == 'gpg-pubkey': continue else: foo = "{0}-{1}-{2}-{3}-{4}".format(hdr['name'], hdr['epochnum'], hdr['version'], hdr['release'], hdr['arch']) image_rpms.append(foo) return image_rpms
Example #5
Source File: factory-package-news.py From openSUSE-release-tools with GNU General Public License v2.0 | 5 votes |
def __init__(self, *args, **kwargs): cmdln.Cmdln.__init__(self, args, kwargs) self.ts = rpm.TransactionSet() self.ts.setVSFlags(rpm._RPMVSF_NOSIGNATURES)