-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Please find attached debdiff for NMU version 2.1-1.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
iD8DBQFHjRxunXjXEYa8KlARAofaAJ0fMSLFeS6+piqza6OuOsiTJ1TC4ACgpPhd
TK0NDU6DYNmtKGPALoxmL5A=
=zu/y
-----END PGP SIGNATURE-----
diff -u pd-zexy-2.1/debian/changelog pd-zexy-2.1/debian/changelog
--- pd-zexy-2.1/debian/changelog
+++ pd-zexy-2.1/debian/changelog
@@ -1,3 +1,11 @@
+pd-zexy (2.1-1.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * debian/rules: add simple-patchsys support
+ * debian/patches/bashisms.patch: fix bashisms (Closes: #378526)
+
+ -- Luca Falavigna <[EMAIL PROTECTED]> Tue, 15 Jan 2008 16:01:02 +0100
+
pd-zexy (2.1-1) unstable; urgency=low
* Initial release Closes: #nnnn (nnnn is the bug number of your ITP)
diff -u pd-zexy-2.1/debian/rules pd-zexy-2.1/debian/rules
--- pd-zexy-2.1/debian/rules
+++ pd-zexy-2.1/debian/rules
@@ -6,6 +6,7 @@
include /usr/share/cdbs/1/rules/tarball.mk
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
CFLAGS_pd-zexy := -O2 -g -fPIC -Wall
DEB_MAKE_BUILD_TARGET := all CFLAGS="-O2 -g -DZEXY_LIBRARY -fPIC -Wall"
only in patch2:
unchanged:
--- pd-zexy-2.1.orig/debian/patches/bashisms.patch
+++ pd-zexy-2.1/debian/patches/bashisms.patch
@@ -0,0 +1,47 @@
+diff -Nur pd-zexy-2.1/build-tree/zexy-2.1/src/makesource.sh
pd-zexy-2.1.new/build-tree/zexy-2.1/src/makesource.sh
+--- zexy-2.1/src/makesource.sh 2005-06-16 15:26:22.000000000 +0200
++++ zexy-2.1/src/makesource.sh 2008-01-15 16:09:03.000000000 +0100
+@@ -12,7 +12,7 @@
+ #################################
+ ## functions
+
+-function head_h() {
++head_h() {
+ echo "/* zexy-setup autogenerated header-file"
+ echo " * generated by \"$0\""
+ echo " * !! DO NOT MANUALLY EDIT !!"
+@@ -22,12 +22,12 @@
+ echo "#define Z_ZEXY_H__"
+ }
+
+-function foot_h() {
++foot_h() {
+ echo "#endif /* Z_ZEXY_H__ */"
+ echo ""
+ }
+
+-function head_c() {
++head_c() {
+ echo "/* zexy-setup autogenerated setup-file"
+ echo " * generated by \"$0\""
+ echo " * !! DO NOT MANUALLY EDIT !!"
+@@ -39,16 +39,16 @@
+ echo "{"
+ }
+
+-function foot_c() {
++foot_c() {
+ echo "}"
+ echo
+ }
+
+-function head_s() {
++head_s() {
+ echo "SOURCES = \\"
+ }
+
+-function foot_s() {
++foot_s() {
+ echo " zexy.c"
+ echo
+ }