Control: tags 999021 + patch
Control: tags 999021 + pending
Dear maintainer,
I've prepared an NMU for libexpect-perl (versioned as 1.21-1.2) and
uploaded it to DELAYED/7. Please feel free to tell me if I
should delay it longer.
Regards,
dam
diff -u libexpect-perl-1.21/debian/changelog libexpect-perl-1.21/debian/changelog
--- libexpect-perl-1.21/debian/changelog
+++ libexpect-perl-1.21/debian/changelog
@@ -1,3 +1,11 @@
+libexpect-perl (1.21-1.2) unstable; urgency=medium
+
+ * Non-maintainer upload
+ * Provide 'build-arch' and 'build-indep' targets in debian/rules
+ Closes: #999021
+
+ -- Damyan Ivanov <[email protected]> Wed, 15 Dec 2021 19:58:42 +0000
+
libexpect-perl (1.21-1.1) unstable; urgency=medium
* Non maintainer upload by the Reproducible Builds team.
diff -u libexpect-perl-1.21/debian/rules libexpect-perl-1.21/debian/rules
--- libexpect-perl-1.21/debian/rules
+++ libexpect-perl-1.21/debian/rules
@@ -7,21 +7,26 @@
TMP =`pwd`/debian/$(PACKAGE)
-build: build-stamp
-build-stamp:
+build: build-arch build-indep
+
+build-indep: build-indep-stamp
+build-indep-stamp:
dh_testdir
perl Makefile.PL INSTALLDIRS=vendor
$(MAKE) OPTIMIZE="-O2 -g -Wall"
- touch build-stamp
+ touch $@
+
+build-arch:
+ # nothing to do here
realclean: clean
clean:
dh_testdir
dh_testroot
- rm -f build-stamp
+ rm -f build-indep-stamp
[ ! -f Makefile ] || $(MAKE) distclean
@@ -60,4 +65,4 @@
dh_builddeb
binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+.PHONY: build build-arch build-indep clean binary-indep binary-arch binary install