Hi, On Sun, 05 Feb 2017 21:01:29 +0200 Adrian Bunk <b...@debian.org> wrote: > Source: apt-dpkg-ref > Version: 5.3.1+nmu1 > Severity: serious > Tags: stretch sid > > apt-dpkg-ref build-depends on clisp which is not in stretch. > > (I also wonder whether we really need an own package > for a 3 page document.)
I have uploaded an NMU to DELAYED/2 with the attached patch. Cheers, Balint
diff -Nru apt-dpkg-ref-5.3.1+nmu1/debian/changelog apt-dpkg-ref-5.3.1+nmu2/debian/changelog --- apt-dpkg-ref-5.3.1+nmu1/debian/changelog 2015-06-13 15:03:28.000000000 +0200 +++ apt-dpkg-ref-5.3.1+nmu2/debian/changelog 2017-02-22 17:24:34.000000000 +0100 @@ -1,3 +1,10 @@ +apt-dpkg-ref (5.3.1+nmu2) unstable; urgency=medium + + * Non-maintainer upload. + * Build-depend on and use sbcl instead of clisp (Closes: #854288) + + -- Balint Reczey <bal...@balintreczey.hu> Wed, 22 Feb 2017 17:23:38 +0100 + apt-dpkg-ref (5.3.1+nmu1) unstable; urgency=low [ Andreas Moog ] diff -Nru apt-dpkg-ref-5.3.1+nmu1/debian/control apt-dpkg-ref-5.3.1+nmu2/debian/control --- apt-dpkg-ref-5.3.1+nmu1/debian/control 2015-06-13 15:00:32.000000000 +0200 +++ apt-dpkg-ref-5.3.1+nmu2/debian/control 2017-02-22 17:22:11.000000000 +0100 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Vanessa Gutiérrez <vane...@gmail.com> Build-Depends: debhelper (>= 7.0) -Build-Depends-Indep: clisp | cmucl, texlive-base, texlive-latex-base, +Build-Depends-Indep: sbcl, texlive-base, texlive-latex-base, texlive-latex-recommended, texlive-fonts-recommended Standards-Version: 3.9.2.0 diff -Nru apt-dpkg-ref-5.3.1+nmu1/make-docs apt-dpkg-ref-5.3.1+nmu2/make-docs --- apt-dpkg-ref-5.3.1+nmu1/make-docs 2011-04-13 04:11:20.000000000 +0200 +++ apt-dpkg-ref-5.3.1+nmu2/make-docs 2017-02-22 17:21:33.000000000 +0100 @@ -1,10 +1,10 @@ #!/bin/sh -CLISP_BIN=$(which clisp) +CLISP_BIN=$(which sbcl) LISP_BIN=$(which cmucl) if [ -n "$CLISP_BIN" ]; then - $CLISP_BIN apt-dpkg-ref.lisp + $CLISP_BIN < apt-dpkg-ref.lisp elif [ -n "$LISP_BIN" ]; then $LISP_BIN -load apt-dpkg-ref.lisp else