tag 547742 + patch
thanks

Hello,
as this bug is open for quite some time, I've prepared a patch fixing the issue,
It can be applied on top of the Git repository used for packaging.

In case I don't hear anything from you (the maintainer) until June 22nd, I'll go
ahead and look for a sponsor to NMU-fix this bug, following the normal
procedures for an NMU.

Kind regards,
Kai Wasserbäch



-- 

Kai Wasserbäch (Kai Wasserbaech)

E-Mail: deb...@carbon-project.org
Jabber (debianforum.de): Drizzt
URL: http://wiki.debian.org/C%C3%B9ran
GnuPG: 0xE1DE59D2      0600 96CE F3C8 E733 E5B6 1587 A309 D76C E1DE 59D2
(http://pgpkeys.pca.dfn.de/pks/lookup?search=0xE1DE59D2&fingerprint=on&hash=on&op=vindex)
diff --git a/debian/changelog b/debian/changelog
index dc81bc9..f7cba7c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+cb2bib (1.4.0-1.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * debian/patches/NMU_fix_bashism.patch: Added. (Closes: #547742)
+
+ -- Kai Wasserbäch <deb...@carbon-project.org>  Tue, 15 Jun 2010 14:30:59 +0200
+
 cb2bib (1.4.0-1) unstable; urgency=low
 
   * New upstream release;
diff --git a/debian/patches/NMU_fix_bashism.patch b/debian/patches/NMU_fix_bashism.patch
new file mode 100644
index 0000000..45a2086
--- /dev/null
+++ b/debian/patches/NMU_fix_bashism.patch
@@ -0,0 +1,26 @@
+From: Kai Wasserbäch <deb...@carbon-project.org>
+Subject: Release Goal: Remove bashisms.
+Last-Update: 2010-06-15
+---
+ c2btools/bib2pdf |    6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+--- a/c2btools/bib2pdf
++++ b/c2btools/bib2pdf
+@@ -117,13 +117,13 @@ cp "$bib" "${tmp_dir}"/c2b_tmp.bib
+ cd "${tmp_dir}"
+ # There might be bibliography errors, do not stop.
+ set +e
+-"${latexCmd}" $latex_flags c2b_tmp >& /dev/null
++"${latexCmd}" $latex_flags c2b_tmp > /dev/null 2>&1
+ "${bibtexCmd}" c2b_tmp
+-"${latexCmd}" $latex_flags c2b_tmp >& /dev/null
++"${latexCmd}" $latex_flags c2b_tmp > /dev/null 2>&1
+ "${latexCmd}" $latex_flags c2b_tmp
+ if [ "x${dvi2pdfCmd}" != "x" ]
+ then
+-    "${dvi2pdfCmd}" c2b_tmp >& /dev/null
++    "${dvi2pdfCmd}" c2b_tmp > /dev/null 2>&1
+ fi
+ 
+ # Make sure we trap errors.
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..5aa15fd
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+NMU_fix_bashism.patch

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to