12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # RPM header tags
- # Generated with the following command:
- # ``grep -Po '(RPMTAG[A-Z_]*)' tools/qvm_template.py | sort | uniq``
- RPMTAG_BUILDTIME = 1
- RPMTAG_DESCRIPTION = 2
- RPMTAG_EPOCHNUM = 3
- RPMTAG_LICENSE = 4
- RPMTAG_NAME = 5
- RPMTAG_RELEASE = 6
- RPMTAG_SIGGPG = 7
- RPMTAG_SIGPGP = 8
- RPMTAG_SUMMARY = 9
- RPMTAG_URL = 10
- RPMTAG_VERSION = 11
- RPMVSF_MASK_NOSIGNATURES = 0xc0c00
- class error(BaseException):
- def __init__(self, msg):
- self.msg = msg
- def __str__(self):
- return self.msg
- class hdr():
- def __getitem__(self, key):
- pass
- class keyring():
- def addKey(self, *args):
- pass
- class pubkey():
- pass
- class TransactionSet():
- def setVSFlags(self, flags):
- pass
- def setKeyring(self, *args):
- pass
- def hdrFromFdno(self, fdno) -> hdr:
- return hdr()
- def labelCompare(a, b):
- # Pretend that we're comparing the versions lexographically in the stub
- return (a > b) - (a < b)
|