Control: tags 942395 + pending Control: tags 946731 + patch Control: tags 946731 + pending
Dear maintainer, I've prepared an NMU for oz (versioned as 0.17.0-2.1) and uploaded it to DELAYED/4. Please feel free to tell me if I should cancel it. cu Adrian
diff -Nru oz-0.17.0/debian/changelog oz-0.17.0/debian/changelog --- oz-0.17.0/debian/changelog 2019-08-23 06:42:17.000000000 +0300 +++ oz-0.17.0/debian/changelog 2020-04-13 14:53:12.000000000 +0300 @@ -1,3 +1,13 @@ +oz (0.17.0-2.1) unstable; urgency=high + + * Non-maintainer upload. + * Drop autopkgtest for now, not working on all architectures. + (Closes: #946731) + * Make the postrm script idempotent, thanks to Ralf Treinen. + (Closes: #942395) + + -- Adrian Bunk <b...@debian.org> Mon, 13 Apr 2020 14:53:12 +0300 + oz (0.17.0-2) unstable; urgency=low * Add autopkgtest. diff -Nru oz-0.17.0/debian/postrm oz-0.17.0/debian/postrm --- oz-0.17.0/debian/postrm 2019-08-09 23:36:31.000000000 +0300 +++ oz-0.17.0/debian/postrm 2020-04-13 14:53:12.000000000 +0300 @@ -6,9 +6,7 @@ case "$1" in purge) - if [ -f $FILE ]; then - rm $FILE $FILE.pub - fi + rm -f $FILE $FILE.pub ;; remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) diff -Nru oz-0.17.0/debian/tests/control oz-0.17.0/debian/tests/control --- oz-0.17.0/debian/tests/control 2019-08-16 10:42:47.000000000 +0300 +++ oz-0.17.0/debian/tests/control 1970-01-01 02:00:00.000000000 +0200 @@ -1,2 +0,0 @@ -Tests: oz -Depends: oz, libvirt-daemon, python3-pytest diff -Nru oz-0.17.0/debian/tests/oz oz-0.17.0/debian/tests/oz --- oz-0.17.0/debian/tests/oz 2019-08-23 06:17:14.000000000 +0300 +++ oz-0.17.0/debian/tests/oz 1970-01-01 02:00:00.000000000 +0200 @@ -1,18 +0,0 @@ -#!/bin/sh - -set -e - -cp -a tests "$AUTOPKGTEST_TMP"/ -cd "$AUTOPKGTEST_TMP" - -perl -pi -e "s/def test_xml_generation/def nop_xml_generation/" \ - tests/guest/test_guest.py - -perl -pi -e "s/def test_auto\(/def nop_auto\(/" tests/ozutil/test_ozutil.py - -python3 -Wd -m pytest -vv -rs 2>&1 -rc=$? - -echo rc $rc - -exit $rc