We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
gpg-pubkey
1 parent 31816ac commit eb0b37fCopy full SHA for eb0b37f
1 file changed
scripts/generate-metadata
@@ -42,6 +42,10 @@ def get_rpmdb_pkglist():
42
rpmdb = []
43
for line in out.splitlines():
44
n, e, v, r, a = line.split()
45
+ if n == 'gpg-pubkey':
46
+ # those aren't real packages, it's just how rpm represents imported
47
+ # GPG keys
48
+ continue
49
# canonicalize none to 0 to match rpm-ostree semantics
50
if e == '(none)':
51
e = '0'
0 commit comments