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 13:03:28.000000000 +0000 +++ apt-dpkg-ref-5.3.1+nmu2/debian/changelog 2017-02-22 16:24:34.000000000 +0000 @@ -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 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 13:00:32.000000000 +0000 +++ apt-dpkg-ref-5.3.1+nmu2/debian/control 2017-02-22 16:22:11.000000000 +0000 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Vanessa GutiƩrrez 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 02:11:20.000000000 +0000 +++ apt-dpkg-ref-5.3.1+nmu2/make-docs 2017-02-22 16:21:33.000000000 +0000 @@ -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