Source: seccure Version: 0.5-2 Tags: patch User: debian-cr...@lists.debian.org Usertags: ftcbfs
seccure fails to cross build from source, because it fails running tests despite being passed DEB_BUILD_OPTIONS=nocheck. Support for the nocheck option is enabled by upgrading the debhelper compatibility level or applying the attached patch. Helmut
diff --minimal -Nru seccure-0.5/debian/changelog seccure-0.5/debian/changelog --- seccure-0.5/debian/changelog 2019-01-26 13:06:00.000000000 +0100 +++ seccure-0.5/debian/changelog 2024-10-30 21:07:39.000000000 +0100 @@ -1,3 +1,10 @@ +seccure (0.5-2.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: Support DEB_BUILD_OPTIONS=nocheck. (Closes: #-1) + + -- Helmut Grohne <hel...@subdivi.de> Wed, 30 Oct 2024 21:07:39 +0100 + seccure (0.5-2) unstable; urgency=medium * Fix insecure-copyright-format-uri diff --minimal -Nru seccure-0.5/debian/rules seccure-0.5/debian/rules --- seccure-0.5/debian/rules 2018-01-02 14:38:59.000000000 +0100 +++ seccure-0.5/debian/rules 2024-10-30 21:07:38.000000000 +0100 @@ -10,4 +10,6 @@ dh_installchangelogs HISTORY override_dh_auto_test: +ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) cd test && make +endif