-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I attach a NMU debdiff for version 0.4.2-0.1.
Thank you.
- --
Luca Falavigna
Ubuntu MOTU Developer
GPG Key: 0x86BC2A50
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFHjm/XnXjXEYa8KlARAvnFAJ4g6G0zX0V4YWWzcNSD4+/DQrzuGwCfV5h5
AQHVPjfcf/uQ7RUV2ymH5fY=
=nJIH
-----END PGP SIGNATURE-----
diff -Nru libdebug-0.4.2/debian/changelog libdebug-0.4.2/debian/changelog
--- libdebug-0.4.2/debian/changelog 2004-08-22 15:44:33.000000000 +0200
+++ libdebug-0.4.2/debian/changelog 2008-01-16 21:53:34.000000000 +0100
@@ -1,3 +1,17 @@
+libdebug (0.4.2-0.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * debian/rules:
+ - Fix bashisms (Closes: #381565).
+ - Fix debian-rules-ignores-make-clean-error lintian warning.
+ - Fix debian-rules-missing-required-target lintian error by
+ providing binary-indep target (Closes: #395708).
+ * Makefile:
+ - Fix bashisms.
+ * Use python/compat, fix debian-rules-sets-DH_COMPAT lintian warning.
+
+ -- Luca Falavigna <[EMAIL PROTECTED]> Wed, 16 Jan 2008 21:29:01 +0100
+
libdebug (0.4.2) unstable; urgency=high
* Fixed man page sections.
diff -Nru libdebug-0.4.2/debian/compat libdebug-0.4.2/debian/compat
--- libdebug-0.4.2/debian/compat 1970-01-01 01:00:00.000000000 +0100
+++ libdebug-0.4.2/debian/compat 2008-01-16 21:36:19.000000000 +0100
@@ -0,0 +1 @@
+3
diff -Nru libdebug-0.4.2/debian/rules libdebug-0.4.2/debian/rules
--- libdebug-0.4.2/debian/rules 2003-10-26 14:21:08.000000000 +0100
+++ libdebug-0.4.2/debian/rules 2008-01-16 21:42:31.000000000 +0100
@@ -3,7 +3,6 @@
# -*- sh -*-
export DH_VERBOSE=1
-export DH_COMPAT=3
DESTDIR=$(CURDIR)/debian/tmp
@@ -22,10 +21,10 @@
clean:
dh_testdir
dh_testroot
- -$(MAKE) clean
+ [ ! -f Makefile ] || $(MAKE) clean
dh_clean
- rm -f {,$(CURDIR)/debian/}{build,configure}-stamp
- rm -rf $(CURDIR)/debian/{libdebug-dev,libdebug,tmp}
+ rm -f build-stamp configure-stamp $(CURDIR)/debian/build-stamp
$(CURDIR)/debian/configure-stamp
+ rm -rf $(CURDIR)/debian/libdebug-dev $(CURDIR)/debian/libdebug
$(CURDIR)/debian/tmp
install: build
dh_testdir
@@ -34,6 +33,8 @@
dh_installdirs
$(MAKE) DESTDIR=$(DESTDIR) prefix=$(DESTDIR)/usr install
+binary-indep:
+
binary-arch: build install
dh_testdir
dh_testroot
@@ -52,6 +53,6 @@
dh_md5sums
dh_builddeb
-binary: binary-arch
-.PHONY: build clean binary-arch binary install configure
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
diff -Nru libdebug-0.4.2/Makefile libdebug-0.4.2/Makefile
--- libdebug-0.4.2/Makefile 2003-10-26 00:31:51.000000000 +0200
+++ libdebug-0.4.2/Makefile 2008-01-16 21:33:34.000000000 +0100
@@ -54,15 +54,16 @@
dpkg-buildpackage -rfakeroot -k2B555AEE
distclean::
- rm -f {configure,build}-stamp
- rm -f debian/*.{debhelper,substvars} debian/{substvars,files,*~}
- rm -rf debian/{libdebug0-dev,libdebug0,tmp}
+ rm -f configure-stamp build-stamp
+ rm -f debian/*.debhelper debian/*.substvars
+ rm -f debian/substvars debian/files debian/*~
+ rm -rf debian/libdebug0-dev debian/libdebug0 debian/tmp
find . -name "*~" -exec rm -f {} \;
find . -name ".index" -exec rm -f {} \;
install::
$(INSTALL) -d $(libdir)
- for F in $(shell find include/debug -name "*.h"); do $(INSTALL) -c -D
-m 0644 $$F $(includedir)$${F/include\///}; done
+ for F in $(shell find include/debug -name "*.h"); do $(INSTALL) -c -D
-m 0644 $$F $(includedir)$${F#include}; done
uninstall::
rm -rf $(includedir)/debug