Package: sponsorship-requests Severity: important Dear mentors,
I am looking for a sponsor for my package "slt" as [RC][NMU]. I posted the patch to Bug#851876 for 4 days but no feedback. And pkg maintainer is in LowThresholdNmu list. * Package name : slt Version : 0.0.git20140301-2.1 Upstream Author : Alan Shreve <a...@inconshreveable.com> * URL : https://github.com/inconshreveable/slt * License : Apache-2.0 Section : devel It builds those binary packages: slt - TLS reverse-proxy with SNI multiplexing (TLS virtual hosts) To access further information about this package, please visit the following URL: https://mentors.debian.net/package/slt Alternatively, one can download the package with dget using this command: dget -x https://mentors.debian.net/debian/pool/main/s/slt/slt_0.0.git20140301-2.1.dsc or you can use git-buildpackage to build: gbp clone --pristine-tar https://anonscm.debian.org/git/collab-maint/slt.git cd slt git checkout debian_nmu gbp buildpackage -uc -us --git-ignore-branch I also made it available on debomatic (i386): http://debomatic-i386.debian.net/distribution#unstable/slt/0.0.git20140301-2.1/buildlog Changes since the last upload: slt (0.0.git20140301-2.1) unstable; urgency=medium [ Roger Shimizu ] * Non-maintainer upload. * debian/rules: - Run dh_auto_test only if CPUs >= 2 (Closes: #851876). I also enclosed the debdiff for NMU review. Thank you! Cheers, -- Roger Shimizu, GMT +9 Tokyo PGP/GPG: 4096R/6C6ACD6417B3ACB1
diff -Nru slt-0.0.git20140301/debian/changelog slt-0.0.git20140301/debian/changelog --- slt-0.0.git20140301/debian/changelog 2017-01-03 14:37:31.000000000 +0900 +++ slt-0.0.git20140301/debian/changelog 2017-02-15 07:52:32.000000000 +0900 @@ -1,3 +1,12 @@ +slt (0.0.git20140301-2.1) unstable; urgency=medium + + [ Roger Shimizu ] + * Non-maintainer upload. + * debian/rules: + - Run dh_auto_test only if CPUs >= 2 (Closes: #851876). + + -- Roger Shimizu <rogershim...@gmail.com> Wed, 15 Feb 2017 07:52:32 +0900 + slt (0.0.git20140301-2) unstable; urgency=medium * wrap-and-sort -ast diff -Nru slt-0.0.git20140301/debian/rules slt-0.0.git20140301/debian/rules --- slt-0.0.git20140301/debian/rules 2017-01-03 14:36:32.000000000 +0900 +++ slt-0.0.git20140301/debian/rules 2017-02-15 07:52:32.000000000 +0900 @@ -8,3 +8,11 @@ override_dh_installman: ronn < man/slt.8.ronn >debian/slt.8 dh_installman + +# Run test only if CPUs >= 2. See Bug#851876 +override_dh_auto_test: +ifneq ($(shell nproc), 1) + dh_auto_test +else + @echo dh_auto_test skipped on 1-Core CPU platform +endif