Control: forwarded 906358 https://bugzilla.gnome.org/show_bug.cgi?id=794819 Control: tags 906358 patch fixed-upstream
On Fri, 17 Aug 2018 11:19:44 +0000 Santiago Vila <sanv...@debian.org> wrote: > Package: src:gimp-help > Version: 2.8.2-0.1 > Severity: serious > Tags: ftbfs > > Dear maintainer: > > I tried to build this package in buster but it failed: > > [...] > dh_autoreconf ./autogen.sh > dh_autoreconf: Compatibility levels before 9 are deprecated (level 7 in use) > Looking for latest automake version ... > You must have automake 1.10 or newer installed to compile gimp-help-2. > Download the appropriate package for your distribution, > or get the source tarball at ftp://ftp.gnu.org/pub/gnu/automake/ > > Please install/upgrade the missing tools and call me again. > > dh_autoreconf: ./autogen.sh returned exit code 1 The attached patch is the diff from https://gitlab.gnome.org/GNOME/gimp-help/commit/6b6238801f86136f711b15c867b80fbcef8b7b01 with a DEP-3 header. It resolves the build failure for me. Juhani
Description: autogen.sh - allow automake-1.16. Origin: https://gitlab.gnome.org/GNOME/gimp-help/commit/6b6238801f86136f711b15c867b80fbcef8b7b01 Bug: https://bugzilla.gnome.org/794819 Bug-Debian: https://bugs.debian.org/906358 Last-Update: 2018-08-31 --- a/autogen.sh +++ b/autogen.sh @@ -21,7 +21,7 @@ echo -n "Looking for latest automake version ... " required_automake_minor=10 -minor=15 +minor=16 while [ $minor -ge $required_automake_minor ]; do ver=1.$minor if (automake-$ver --version) < /dev/null > /dev/null 2>&1; then