Control: tags 965462 + patch Control: tags 965462 + pending Control: tags 999095 + patch Control: tags 999095 + pending
Dear maintainer, I've prepared an NMU for clif (versioned as 0.93-9.2) and uploaded it to DELAYED/2. Please feel free to tell me if I should delay it longer. Regards, Eriberto diff -Nru clif-0.93/debian/changelog clif-0.93/debian/changelog --- clif-0.93/debian/changelog 2015-11-02 08:21:14.000000000 -0200 +++ clif-0.93/debian/changelog 2022-04-16 21:29:06.000000000 -0300 @@ -1,3 +1,18 @@ +clif (0.93-9.2) unstable; urgency=medium + + * Non-maintainer upload. + * Using new DH level format. Consequently: + - debian/compat: removed. + - debian/control: changed from 'debhelper' to 'debhelper-compat' in + Build-Depends field and bumped level to 13. + - debian/rules: using 'dh_prep' instead of 'dh_clean -k' because the + '-k' option is not supported since compat 12. + - Closes: #965462 + * debian/rules: added missing targets build-arch and build-indep. + (Closes: #999095) + + -- Joao Eriberto Mota Filho <eribe...@debian.org> Sat, 16 Apr 2022 21:29:06 -0300 + clif (0.93-9.1) unstable; urgency=medium * Non-maintainer upload. diff -Nru clif-0.93/debian/compat clif-0.93/debian/compat --- clif-0.93/debian/compat 2010-01-03 13:27:41.000000000 -0200 +++ clif-0.93/debian/compat 1969-12-31 21:00:00.000000000 -0300 @@ -1 +0,0 @@ -5 diff -Nru clif-0.93/debian/control clif-0.93/debian/control --- clif-0.93/debian/control 2015-11-02 08:19:46.000000000 -0200 +++ clif-0.93/debian/control 2022-04-16 21:29:06.000000000 -0300 @@ -2,7 +2,7 @@ Section: interpreters Priority: optional Maintainer: Sam Hocevar <s...@debian.org> -Build-Depends: debhelper (>= 5.0), libx11-dev, libxt-dev, texlive, libelf-dev +Build-Depends: debhelper-compat (= 13), libx11-dev, libxt-dev, texlive, libelf-dev Standards-Version: 3.8.3 Package: clif diff -Nru clif-0.93/debian/rules clif-0.93/debian/rules --- clif-0.93/debian/rules 2010-01-03 14:11:32.000000000 -0200 +++ clif-0.93/debian/rules 2022-04-16 21:29:06.000000000 -0300 @@ -46,7 +46,7 @@ install: build dh_testdir dh_testroot - dh_clean -k + dh_prep $(MAKE) install DESTDIR=`pwd`/debian/clif dh_installdirs usr/bin usr/lib/clif dh_install clif usr/bin @@ -83,5 +83,6 @@ dh_builddeb binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure - +build-arch: build +build-indep: build +.PHONY: build clean build-arch build-indep binary-indep binary-arch binary install configure