diff --git a/debian/changelog b/debian/changelog index ec5445d..b7830dc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +debuerreotype (0.15-1) UNRELEASED; urgency=medium + + * Update to 0.15 upstream release + - support for deb822-style sources + - replaces security.debian.org with deb.debian.org + * skip riscv64 in autopkgtests (ports architecture, harder to test) + + -- Tianon Gravi Fri, 01 Jul 2022 11:33:20 -0700 + debuerreotype (0.14-1) unstable; urgency=medium [ Tianon Gravi ] diff --git a/debian/tests/stretch b/debian/tests/stretch index 3ec6f97..272ac74 100755 --- a/debian/tests/stretch +++ b/debian/tests/stretch @@ -15,10 +15,16 @@ ['i386']='b4e574904703114291f1c42bd80744b1da333d95cf5c00e8e71ba09241ca66ae' ['mips64el']='767982e9ca353058d9ca44f410e0367071ebf9938a4a996e3ed9139d57bc987f' ['ppc64el']='99bc8a072448360be9ff741b98466835bc0f270041784cacbcb3803f8d3fbb6a' + ['riscv64']='ports' ['s390x']='7ad6fa1abaf9d8cb3fd9d1257e24363bc842f0fe204e98d0a2aa995541b62b1c' ) dpkgArch="$(dpkg --print-architecture)" expectedSha256="${expectedSha256s["$dpkgArch"]:-}" + +if [ "$expectedSha256" = 'ports' ]; then + echo >&2 "aw, '$dpkgArch' is a ports arch -- bailing early!" + exit 0 +fi expectedCompareUrl="https://people.debian.org/~tianon/debuerreotype/$suite--$timestamp--0.14--$dpkgArch--$expectedSha256.txz" @@ -43,6 +49,8 @@ debuerreotype-debian-sources-list "$rootfs" "$suite" # remove effect of https://github.com/debuerreotype/debuerreotype/pull/56 (to avoid regenerating expected tarballs to compensate) sed -i -e '/^#/d' "$rootfs/etc/apt/sources.list" +# remove effect of https://github.com/debuerreotype/debuerreotype/pull/135 (^^^) +sed -i -e 's!deb.debian.org/debian-security!security.debian.org/debian-security!g' "$rootfs/etc/apt/sources.list" debuerreotype-tar "$rootfs" "$tempDir/actual.tar" sha256="$(sha256sum "$tempDir/actual.tar" | cut -d' ' -f1)"