[Pkg-xfce-commits] r8056 - in /goodies/trunk/parole/debian: changelog patches/ patches/01_fix-format-string-kfreebsd.patch patches/series

Yves-Alexis Perez corsac at alioth.debian.org
Sat Nov 9 08:27:55 UTC 2013


Author: corsac
Date: Sat Nov  9 08:27:55 2013
New Revision: 8056

URL: http://svn.debian.org/wsvn/pkg-xfce/?sc=1&rev=8056
Log:
* debian/patches:
  - 01_fix-format-string-kfreebsd added, fix format string on FreeBSD
    specific code, fix FTBFS on kfreebsd arches.

Added:
    goodies/trunk/parole/debian/patches/
    goodies/trunk/parole/debian/patches/01_fix-format-string-kfreebsd.patch
    goodies/trunk/parole/debian/patches/series
Modified:
    goodies/trunk/parole/debian/changelog

Modified: goodies/trunk/parole/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/parole/debian/changelog?rev=8056&op=diff
==============================================================================
--- goodies/trunk/parole/debian/changelog	(original)
+++ goodies/trunk/parole/debian/changelog	Sat Nov  9 08:27:55 2013
@@ -1,9 +1,15 @@
 parole (0.5.3-1) UNRELEASED; urgency=low
 
+  [ Jackson Doak ]
   * New upstream release
   * Replace autotools-dev with autoreconf
   * debian/rules: --disable-silent-rules
   * Update manpage
+
+  [ Yves-Alexis Perez ]
+  * debian/patches:
+    - 01_fix-format-string-kfreebsd added, fix format string on FreeBSD
+      specific code, fix FTBFS on kfreebsd arches.
 
  -- Jackson Doak <noskcaj at ubuntu.com>  Fri, 25 Oct 2013 07:06:29 +1100
 

Added: goodies/trunk/parole/debian/patches/01_fix-format-string-kfreebsd.patch
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/parole/debian/patches/01_fix-format-string-kfreebsd.patch?rev=8056&op=file
==============================================================================
--- goodies/trunk/parole/debian/patches/01_fix-format-string-kfreebsd.patch	(added)
+++ goodies/trunk/parole/debian/patches/01_fix-format-string-kfreebsd.patch	Sat Nov  9 08:27:55 2013
@@ -0,0 +1,11 @@
+--- parole-0.5.3.orig/src/gst/parole-gst.c
++++ parole-0.5.3/src/gst/parole-gst.c
+@@ -1610,7 +1610,7 @@ parole_gst_missing_codec_dialog(ParoleGs
+ #elif defined(__FreeBSD__)
+                                              "Parole needs <b>%s</b> to play this file.",
+ #endif
+-                                             desc);
++                                             "%s", desc);
+     
+     return GTK_DIALOG(dialog);
+ }

Added: goodies/trunk/parole/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/parole/debian/patches/series?rev=8056&op=file
==============================================================================
--- goodies/trunk/parole/debian/patches/series	(added)
+++ goodies/trunk/parole/debian/patches/series	Sat Nov  9 08:27:55 2013
@@ -0,0 +1 @@
+01_fix-format-string-kfreebsd.patch




More information about the Pkg-xfce-commits mailing list