diff -Nru conda-package-handling-1.7.2/debian/changelog conda-package-handling-1.7.2/debian/changelog --- conda-package-handling-1.7.2/debian/changelog 2020-11-19 17:31:27.000000000 +0000 +++ conda-package-handling-1.7.2/debian/changelog 2020-12-06 15:29:39.000000000 +0000 @@ -1,8 +1,12 @@ -conda-package-handling (1.7.2-1build1) hirsute; urgency=medium +conda-package-handling (1.7.2-2) unstable; urgency=medium - * No-change rebuild to build with python3.9 as default. + * Team upload. + * Extend datetime to Dec 1, 2021 in api test + to prevent failing tests in arm64. (Closes: #976506) + * Standards-Version: 4.5.1 (routine-update) + * Remove trailing whitespace in debian/changelog (routine-update) - -- Matthias Klose Thu, 19 Nov 2020 18:31:27 +0100 + -- Nilesh Patra Sun, 06 Dec 2020 20:59:39 +0530 conda-package-handling (1.7.2-1) unstable; urgency=medium diff -Nru conda-package-handling-1.7.2/debian/control conda-package-handling-1.7.2/debian/control --- conda-package-handling-1.7.2/debian/control 2020-10-27 18:08:28.000000000 +0000 +++ conda-package-handling-1.7.2/debian/control 2020-12-06 15:29:39.000000000 +0000 @@ -12,7 +12,7 @@ python3-pytest , python3-tqdm , python3-pytest-mock , -Standards-Version: 4.5.0 +Standards-Version: 4.5.1 Vcs-Browser: https://salsa.debian.org/med-team/conda-package-handling Vcs-Git: https://salsa.debian.org/med-team/conda-package-handling.git Homepage: https://github.com/conda/conda-package-handling diff -Nru conda-package-handling-1.7.2/debian/patches/extend-test-datetime-to-dec-2021.patch conda-package-handling-1.7.2/debian/patches/extend-test-datetime-to-dec-2021.patch --- conda-package-handling-1.7.2/debian/patches/extend-test-datetime-to-dec-2021.patch 1970-01-01 00:00:00.000000000 +0000 +++ conda-package-handling-1.7.2/debian/patches/extend-test-datetime-to-dec-2021.patch 2020-12-06 15:26:42.000000000 +0000 @@ -0,0 +1,17 @@ +Description: Extend datetime to Dec 1, 2021 in test_secure_refusal_to_extract_abs_paths to prevent failing tests in arm64. +Upstream has confirmed this here: https://github.com/conda/conda-package-handling/issues/74#issuecomment-739349646 +Author: Nilesh Patra +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=976506 +Forwarded: https://github.com/conda/conda-package-handling/pull/75 +Last-Update: 2020-12-06 +--- a/tests/test_api.py ++++ b/tests/test_api.py +@@ -183,7 +183,7 @@ + assert stat.st_nlink == 1 + + +-@pytest.mark.skipif(datetime.now() <= datetime(2020, 12, 1), reason="Don't understand why this doesn't behave. Punt.") ++@pytest.mark.skipif(datetime.now() <= datetime(2021, 12, 1), reason="Don't understand why this doesn't behave. Punt.") + def test_secure_refusal_to_extract_abs_paths(testing_workdir): + with tarfile.open('pinkie.tar.bz2', 'w:bz2') as tf: + open('thebrain', 'w').close() diff -Nru conda-package-handling-1.7.2/debian/patches/series conda-package-handling-1.7.2/debian/patches/series --- conda-package-handling-1.7.2/debian/patches/series 2020-10-27 18:08:28.000000000 +0000 +++ conda-package-handling-1.7.2/debian/patches/series 2020-12-06 15:23:18.000000000 +0000 @@ -1,3 +1,4 @@ fix_linking.patch fix_test.patch fix-out-dir.patch +extend-test-datetime-to-dec-2021.patch