當前位置: 首頁>>代碼示例>>Python>>正文


Python rpm._RPMVSF_NOSIGNATURES屬性代碼示例

本文整理匯總了Python中rpm._RPMVSF_NOSIGNATURES屬性的典型用法代碼示例。如果您正苦於以下問題:Python rpm._RPMVSF_NOSIGNATURES屬性的具體用法?Python rpm._RPMVSF_NOSIGNATURES怎麽用?Python rpm._RPMVSF_NOSIGNATURES使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在rpm的用法示例。


在下文中一共展示了rpm._RPMVSF_NOSIGNATURES屬性的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: import rpm [as 別名]
# 或者: from rpm import _RPMVSF_NOSIGNATURES [as 別名]
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 
開發者ID:openSUSE,項目名稱:openSUSE-release-tools,代碼行數:26,代碼來源:abichecker.py

示例2: get_rpm_info

# 需要導入模塊: import rpm [as 別名]
# 或者: from rpm import _RPMVSF_NOSIGNATURES [as 別名]
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) 
開發者ID:theforeman,項目名稱:foreman-ansible-modules,代碼行數:23,代碼來源:content_upload.py

示例3: _get_rpms

# 需要導入模塊: import rpm [as 別名]
# 或者: from rpm import _RPMVSF_NOSIGNATURES [as 別名]
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 
開發者ID:OpenSCAP,項目名稱:openscap-daemon,代碼行數:21,代碼來源:scan.py

示例4: __init__

# 需要導入模塊: import rpm [as 別名]
# 或者: from rpm import _RPMVSF_NOSIGNATURES [as 別名]
def __init__(self, *args, **kwargs):
        cmdln.Cmdln.__init__(self, args, kwargs)
        self.ts = rpm.TransactionSet()
        self.ts.setVSFlags(rpm._RPMVSF_NOSIGNATURES) 
開發者ID:openSUSE,項目名稱:openSUSE-release-tools,代碼行數:6,代碼來源:factory-package-news.py

示例5: yieldSrpmHeaders

# 需要導入模塊: import rpm [as 別名]
# 或者: from rpm import _RPMVSF_NOSIGNATURES [as 別名]
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 
開發者ID:rpm-software-management,項目名稱:mock,代碼行數:28,代碼來源:util.py


注:本文中的rpm._RPMVSF_NOSIGNATURES屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。