mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-06 22:18:28 +00:00
Fix tests and fixtures relying on expired pgp keys
PGP tests relied on expired gpg keys: upgrade with newer Debian keys from https://ftp-master.debian.org/keys.html. Download new fixtures files from http://ftp.debian.org/debian/dists/buster/
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
|
||||
3b84cc2db5823dffc669af78c35f90b218769aca1d7e2ff765448f7de3ffc77c ./generic/kernel.debian
|
||||
48d2cbebbc8582f546232c1acf68b1b73125731441fda528f8d71795a60e14a4 ./generic/debian.exec
|
||||
501e331ac35d550dd5b498abc10b067a33bcc0e41f8b5733ee153ec699c0297d ./generic/initrd.debian
|
||||
5b0d469b830fd2b2a8d05750a4a86eb7fd94557b9ad543380787c77de3b4e556 ./MANIFEST
|
||||
6c269d875272dc990f5bc961fe7ef7214d7b72157f119181f8779074cdfd05de ./MANIFEST.udebs
|
||||
9354b2a4c1660afbd5f76b187fbc2ffcc02b7d418ee3c17c9ff89a5bd0f60f48 ./udeb.list
|
||||
a6da5e602e22efbe0121d4d33cb3f072019cdf9430d90a35c922570f27229101 ./MD5SUMS
|
||||
79dc5831dde77711206eb2c6a0053dba24df694436fe773918706426da9b99d7 ./MD5SUMS
|
||||
867360c11a7c863e1770ba9c0ceb9d2b5c38fa0fddfc4645a84764287270bfc2 ./udeb.list
|
||||
8afce28c167e986af61162a1adf7487b06237679fb3cf5605bb161e2b12fc1f2 ./generic/initrd.debian
|
||||
d1e5caa566b732bd3925b8b88b7083fd10066ebc33a684781a3fbfc8f1d81020 ./MANIFEST.udebs
|
||||
d5828d0b715cfc7977f7eb09ec22a1cac3f7de09e9a07fcd8945b26f4b5b8a5b ./generic/kernel.debian
|
||||
d592bca155b709066bcd48070358e6a2dd4f401c09f594b37b15caaf9fc45d80 ./generic/parmfile.debian
|
||||
@@ -12,7 +12,7 @@ def strip_processor(output):
|
||||
|
||||
def ungzip_if_required(output):
|
||||
if output.startswith("\x1f\x8b"):
|
||||
return zlib.decompress(output, 16+zlib.MAX_WBITS)
|
||||
return zlib.decompress(output, 16 + zlib.MAX_WBITS)
|
||||
|
||||
return output
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ def sorted_processor(output):
|
||||
|
||||
def ungzip_if_required(output):
|
||||
if output.startswith("\x1f\x8b"):
|
||||
return zlib.decompress(output, 16+zlib.MAX_WBITS)
|
||||
return zlib.decompress(output, 16 + zlib.MAX_WBITS)
|
||||
|
||||
return output
|
||||
|
||||
|
||||
Reference in New Issue
Block a user