[Python-apps-commits] r4673 - in packages/pykaraoke/trunk/debian (3 files)

jwilk at users.alioth.debian.org jwilk at users.alioth.debian.org
Thu Feb 4 22:08:13 UTC 2010


    Date: Thursday, February 4, 2010 @ 22:08:09
  Author: jwilk
Revision: 4673

Include patch from Jonathan Wiltshire to fix bashism in cdg2mpg
(closes: #547761).

Added:
  packages/pykaraoke/trunk/debian/patches/fix_cdg2mpg_bashism.patch
Modified:
  packages/pykaraoke/trunk/debian/changelog
  packages/pykaraoke/trunk/debian/patches/series

Modified: packages/pykaraoke/trunk/debian/changelog
===================================================================
--- packages/pykaraoke/trunk/debian/changelog	2010-02-04 22:00:53 UTC (rev 4672)
+++ packages/pykaraoke/trunk/debian/changelog	2010-02-04 22:08:09 UTC (rev 4673)
@@ -3,6 +3,8 @@
   * In order to fix FTBFS, replace build-dependency on python-wxversion with
     python-wxgtk2.6 (closes: #562390).
   * Add Depends: ${misc:Depends}.
+  * Include patch from Jonathan Wiltshire to fix bashism in cdg2mpg
+    (closes: #547761).
 
  -- Jakub Wilk <jwilk at debian.org>  Thu, 04 Feb 2010 22:37:27 +0100
 

Added: packages/pykaraoke/trunk/debian/patches/fix_cdg2mpg_bashism.patch
===================================================================
--- packages/pykaraoke/trunk/debian/patches/fix_cdg2mpg_bashism.patch	                        (rev 0)
+++ packages/pykaraoke/trunk/debian/patches/fix_cdg2mpg_bashism.patch	2010-02-04 22:08:09 UTC (rev 4673)
@@ -0,0 +1,16 @@
+Description: Fix bashism in cdg2mpg
+Author: Jonathan Wiltshire <debian at jwiltshire.org.uk>
+
+Index: pykaraoke-0.7.1/install/cdg2mpg
+===================================================================
+--- pykaraoke-0.7.1.orig/install/cdg2mpg	2008-03-19 19:57:52.000000000 +0100
++++ pykaraoke-0.7.1/install/cdg2mpg	2010-02-04 23:05:50.000000000 +0100
+@@ -2,7 +2,7 @@
+ 
+ # Sanity-check parameters.
+ for cdg in "$@"; do
+-  if [ `basename "$cdg" .cdg` == "$cdg" ]; then
++  if [ `basename "$cdg" .cdg` = "$cdg" ]; then
+     echo "$cdg" does not end in .cdg.
+     exit 1
+   fi

Modified: packages/pykaraoke/trunk/debian/patches/series
===================================================================
--- packages/pykaraoke/trunk/debian/patches/series	2010-02-04 22:00:53 UTC (rev 4672)
+++ packages/pykaraoke/trunk/debian/patches/series	2010-02-04 22:08:09 UTC (rev 4673)
@@ -1,3 +1,4 @@
 disable_fonts_installation.patch
 fix_desktop_files.patch
 remove_hashbangs.patch
+fix_cdg2mpg_bashism.patch




More information about the Python-apps-commits mailing list