Package: xfce4-dev-tools Version: 4.7.2-1 Severity: important Tags: patch Hi,
xdt-autogen is broken currently since the last known automake version is 1.10, meaning we get to use 0.9, leading to autogen.sh failures for projects where 1.10+ is needed. A trivial patch is attached; which also fixes the descriptions as mentioned on IRC. Thanks for considering. Mraw, KiBi.
diff -u xfce4-dev-tools-4.7.2/debian/changelog xfce4-dev-tools-4.7.2/debian/changelog --- xfce4-dev-tools-4.7.2/debian/changelog +++ xfce4-dev-tools-4.7.2/debian/changelog @@ -1,3 +1,11 @@ +xfce4-dev-tools (4.7.2-2) UNRELEASED; urgency=low + + * Fix descriptions: s/svn/git/ + * Additionally check for aclocal-1.11 and automake-1.11 since last known + version is 1.10 as of now. + + -- Cyril Brulebois <k...@debian.org> Tue, 23 Feb 2010 23:09:55 +0100 + xfce4-dev-tools (4.7.2-1) unstable; urgency=low * New upstream release. diff -u xfce4-dev-tools-4.7.2/debian/control xfce4-dev-tools-4.7.2/debian/control --- xfce4-dev-tools-4.7.2/debian/control +++ xfce4-dev-tools-4.7.2/debian/control @@ -17,3 +17,3 @@ -Description: Script to help building Xfce from svn +Description: Script to help building Xfce from git xfce4-dev-tools provide an easy way to handle the setup and maintenance of a - projects build framework. It's required to build Xfce applications from svn. + projects build framework. It's required to build Xfce applications from git. only in patch2: unchanged: --- xfce4-dev-tools-4.7.2.orig/scripts/xdt-autogen.in.in +++ xfce4-dev-tools-4.7.2/scripts/xdt-autogen.in.in @@ -429,7 +429,7 @@ ## simply aclocal. ## test -z "${XDT_PROG_ACLOCAL}" && -for i in aclocal-1.10 aclocal-1.9 aclocal-1.8 aclocal; do +for i in aclocal-1.11 aclocal-1.10 aclocal-1.9 aclocal-1.8 aclocal; do (${i} --version) </dev/null >/dev/null 2>&1 && XDT_PROG_ACLOCAL=${i} && break done @@ -473,7 +473,7 @@ ## simply automake. ## test -z "${XDT_PROG_AUTOMAKE}" && -for i in automake-1.10 automake-1.9 automake-1.8 automake; do +for i in automake-1.11 automake-1.10 automake-1.9 automake-1.8 automake; do (${i} --version) </dev/null >/dev/null 2>&1 && XDT_PROG_AUTOMAKE=${i} && break done