[SCM] flumotion/master: Add patch to fix invoking autoconf on released source.

zmoelnig-guest at users.alioth.debian.org zmoelnig-guest at users.alioth.debian.org
Fri Jan 31 16:28:02 UTC 2014


The following commit has been merged in the master branch:
commit 5c600c4215933ddc0315d3ef70cf0a7e3d29bc95
Author: Jonas Smedegaard <dr at jones.dk>
Date:   Wed Jul 18 20:23:41 2012 +0200

    Add patch to fix invoking autoconf on released source.

diff --git a/debian/patches/fix_autoreconf.patch b/debian/patches/fix_autoreconf.patch
new file mode 100644
index 0000000..71719e3
--- /dev/null
+++ b/debian/patches/fix_autoreconf.patch
@@ -0,0 +1,21 @@
+Description: Fix invoking autoconf on released source
+ Upstream configure.ac unconditionally invokes common/version-gen which
+ is unneeded and not included with released source.
+ .
+ This patches autoconf.ac to gracefully handle missing version-gen
+ script, to allow regenerating autotools files not only when mandatory
+ with development snapshots but also with released source.
+Author: Jonas Smedegaard <dr at jones.dk>
+Last-Update: 2012-07-18
+
+--- a/configure.ac
++++ b/configure.ac
+@@ -3,7 +3,7 @@
+ dnl releases only do Wall, cvs and prerelease does Werror too
+ 
+ AC_INIT(flumotion, m4_esyscmd([ test -z "$VERSION" && VERSION=0.10.0;
+-                   common/version-gen $VERSION .tarball-version]),
++                   if test -x common/version-gen; then common/version-gen $VERSION .tarball-version; else echo -n "[$VERSION]"; fi]),
+         [flumotion-devel at lists.fluendo.com],
+         [flumotion], [http://www.flumotion.net/])
+ 
diff --git a/debian/patches/series b/debian/patches/series
index 88b3bd2..7b33752 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -3,3 +3,4 @@ desktop-encoding-key.patch
 manpage-fixes.patch
 assert_ssl.patch
 twisted_override.patch
+fix_autoreconf.patch

-- 
flumotion packaging



More information about the pkg-multimedia-commits mailing list