diff -Nru live-boot-20250225/components/0030-verify-checksums live-boot-20250815~deb13u1/components/0030-verify-checksums --- live-boot-20250225/components/0030-verify-checksums 2019-06-14 10:39:11.000000000 +0100 +++ live-boot-20250815~deb13u1/components/0030-verify-checksums 2025-08-15 16:34:15.000000000 +0100 @@ -55,7 +55,7 @@ _RETURN="${?}" # Stop after first verification - break + break 2 else echo "Not found /bin/${_DIGEST}sum..." > "${_TTY}" fi diff -Nru live-boot-20250225/debian/changelog live-boot-20250815~deb13u1/debian/changelog --- live-boot-20250225/debian/changelog 2025-02-25 10:07:15.000000000 +0000 +++ live-boot-20250815~deb13u1/debian/changelog 2025-08-15 18:47:32.000000000 +0100 @@ -1,3 +1,19 @@ +live-boot (1:20250815~deb13u1) trixie; urgency=medium + + * Upload to trixie + + -- Luca Boccassi Fri, 15 Aug 2025 18:47:32 +0100 + +live-boot (1:20250815) unstable; urgency=medium + + [ Roland Clobus ] + * Don't verify with all checksum files + + [ Luca Boccassi ] + * Remove live-build's os-release on removal (Closes: #1111039) + + -- Luca Boccassi Fri, 15 Aug 2025 17:18:52 +0100 + live-boot (1:20250225) unstable; urgency=medium [ Emanuele Rocca ] diff -Nru live-boot-20250225/debian/gitlab-ci.yml live-boot-20250815~deb13u1/debian/gitlab-ci.yml --- live-boot-20250225/debian/gitlab-ci.yml 2024-05-25 12:28:10.000000000 +0100 +++ live-boot-20250815~deb13u1/debian/gitlab-ci.yml 2025-08-15 18:47:32.000000000 +0100 @@ -1,3 +1,14 @@ +--- include: - - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml - - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/recipes/debian.yml + +variables: + RELEASE: 'trixie' + SALSA_CI_IMAGES_LINTIAN: ${SALSA_CI_IMAGES}/lintian:stable + SALSA_CI_LINTIAN_SUPPRESS_TAGS: "bad-distribution-in-changes-file" + # The following jobs all run on unstable, and cannot work because they expect + # overrides, compiler flags, dependencies, etc to work as in unstable, but this + # is a stable branch + SALSA_CI_DISABLE_BLHC: 1 + SALSA_CI_DISABLE_REPROTEST: 1 + SALSA_CI_DISABLE_PIUPARTS: 1 diff -Nru live-boot-20250225/debian/live-boot.postrm live-boot-20250815~deb13u1/debian/live-boot.postrm --- live-boot-20250225/debian/live-boot.postrm 2019-06-14 10:39:11.000000000 +0100 +++ live-boot-20250815~deb13u1/debian/live-boot.postrm 2025-08-15 17:09:57.000000000 +0100 @@ -8,8 +8,18 @@ rmdir --ignore-fail-on-non-empty /etc/live > /dev/null 2>&1 || true ;; - remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + remove) + # Restore original os-release when installing to rootfs, + # as the IMAGE_ID= and similar fields are only valid for the + # read-only live environment created by live-build, but not + # for an installed rootfs, which + if [ -f /etc/os-release ] && [ ! -L /etc/os-release ] && grep -q IMAGE_ID=live /etc/os-release; then + rm -f /etc/os-release + ln -s ../usr/lib/os-release /etc/os-release > /dev/null 2>&1 || true + fi + ;; + upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *)