From 9aeff43b20d2912289191802674ec72f71adb32f Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Thu, 7 Jan 2016 00:58:07 -0800 Subject: autogen-native: 5.18.5 -> 5.18.6 * Update increase-timeout-limit.patch Signed-off-by: Robert Yang --- .../autogen/autogen-native_5.18.5.bb | 36 ---------------------- .../autogen/autogen-native_5.18.6.bb | 36 ++++++++++++++++++++++ .../autogen/autogen/increase-timeout-limit.patch | 29 ++++++++--------- 3 files changed, 49 insertions(+), 52 deletions(-) delete mode 100644 meta/recipes-devtools/autogen/autogen-native_5.18.5.bb create mode 100644 meta/recipes-devtools/autogen/autogen-native_5.18.6.bb diff --git a/meta/recipes-devtools/autogen/autogen-native_5.18.5.bb b/meta/recipes-devtools/autogen/autogen-native_5.18.5.bb deleted file mode 100644 index 373dd89994..0000000000 --- a/meta/recipes-devtools/autogen/autogen-native_5.18.5.bb +++ /dev/null @@ -1,36 +0,0 @@ -SUMMARY = "Automated text and program generation tool" -DESCRIPTION = "AutoGen is a tool designed to simplify the creation and\ - maintenance of programs that contain large amounts of repetitious text.\ - It is especially valuable in programs that have several blocks of text\ - that must be kept synchronized." -HOMEPAGE = "http://www.gnu.org/software/autogen/" -SECTION = "devel" -LICENSE = "GPLv3" -LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" - -SRC_URI = "${GNU_MIRROR}/autogen/rel${PV}/autogen-${PV}.tar.gz \ - file://increase-timeout-limit.patch \ - file://mk-tpl-config.sh-force-exit-value-to-be-0-in-subproc.patch \ - file://redirect-output-dir.patch \ -" - -SRC_URI[md5sum] = "385d7c7dfbe60babbee261c054923a53" -SRC_URI[sha256sum] = "7bbdb73b5518baf64c6d3739fb2ecc66d2cccda888ce5ad573abe235ab5d96ba" - -UPSTREAM_CHECK_URI = "http://ftp.gnu.org/gnu/autogen/" -UPSTREAM_CHECK_REGEX = "rel(?P\d+(\.\d+)+)/" - -DEPENDS = "guile-native libtool-native libxml2-native" - -inherit autotools texinfo native pkgconfig - -# autogen-native links against libguile which may have been relocated with sstate -# these environment variables ensure there isn't a relocation issue -export GUILE_LOAD_PATH = "${STAGING_DATADIR_NATIVE}/guile/2.0" -export GUILE_LOAD_COMPILED_PATH = "${STAGING_LIBDIR_NATIVE}/guile/2.0/ccache" - -do_install_append () { - create_wrapper ${D}/${bindir}/autogen \ - GUILE_LOAD_PATH=${STAGING_DATADIR_NATIVE}/guile/2.0 \ - GUILE_LOAD_COMPILED_PATH=${STAGING_LIBDIR_NATIVE}/guile/2.0/ccache -} diff --git a/meta/recipes-devtools/autogen/autogen-native_5.18.6.bb b/meta/recipes-devtools/autogen/autogen-native_5.18.6.bb new file mode 100644 index 0000000000..d77b8273e2 --- /dev/null +++ b/meta/recipes-devtools/autogen/autogen-native_5.18.6.bb @@ -0,0 +1,36 @@ +SUMMARY = "Automated text and program generation tool" +DESCRIPTION = "AutoGen is a tool designed to simplify the creation and\ + maintenance of programs that contain large amounts of repetitious text.\ + It is especially valuable in programs that have several blocks of text\ + that must be kept synchronized." +HOMEPAGE = "http://www.gnu.org/software/autogen/" +SECTION = "devel" +LICENSE = "GPLv3" +LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" + +SRC_URI = "${GNU_MIRROR}/autogen/rel${PV}/autogen-${PV}.tar.gz \ + file://increase-timeout-limit.patch \ + file://mk-tpl-config.sh-force-exit-value-to-be-0-in-subproc.patch \ + file://redirect-output-dir.patch \ +" + +SRC_URI[md5sum] = "fdee403e524c0af3ded6b3becb365671" +SRC_URI[sha256sum] = "2fc7f12a5ecb3b1e8bd4364aa906b837cff01f80edb7d2fb38ed8b9dfbcd3271" + +UPSTREAM_CHECK_URI = "http://ftp.gnu.org/gnu/autogen/" +UPSTREAM_CHECK_REGEX = "rel(?P\d+(\.\d+)+)/" + +DEPENDS = "guile-native libtool-native libxml2-native" + +inherit autotools texinfo native pkgconfig + +# autogen-native links against libguile which may have been relocated with sstate +# these environment variables ensure there isn't a relocation issue +export GUILE_LOAD_PATH = "${STAGING_DATADIR_NATIVE}/guile/2.0" +export GUILE_LOAD_COMPILED_PATH = "${STAGING_LIBDIR_NATIVE}/guile/2.0/ccache" + +do_install_append () { + create_wrapper ${D}/${bindir}/autogen \ + GUILE_LOAD_PATH=${STAGING_DATADIR_NATIVE}/guile/2.0 \ + GUILE_LOAD_COMPILED_PATH=${STAGING_LIBDIR_NATIVE}/guile/2.0/ccache +} diff --git a/meta/recipes-devtools/autogen/autogen/increase-timeout-limit.patch b/meta/recipes-devtools/autogen/autogen/increase-timeout-limit.patch index 3d4c1d604e..9efd7e5587 100644 --- a/meta/recipes-devtools/autogen/autogen/increase-timeout-limit.patch +++ b/meta/recipes-devtools/autogen/autogen/increase-timeout-limit.patch @@ -12,22 +12,19 @@ Signed-off-by: Xin Ouyang 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac -index 0af7c18..5544f59 100644 +index 58a848b..170dd9e 100644 --- a/configure.ac +++ b/configure.ac -@@ -175,9 +175,9 @@ config_end_time=`date +%s 2>/dev/null` - time_delta=`expr ${config_end_time} - ${config_start_time} 2>/dev/null` +@@ -178,9 +178,9 @@ time_delta=`expr ${config_end_time} - ${config_start_time} 2>/dev/null` + if test -z "${AG_TIMEOUT}" + then + if test -z "${time_delta}" +- then time_delta=10 +- elif test ${time_delta} -lt 5 +- then time_delta=5 ; fi ++ then time_delta=60 ++ elif test ${time_delta} -lt 30 ++ then time_delta=30 ; fi - if test -z "${time_delta}" --then time_delta=10 --elif test ${time_delta} -lt 5 --then time_delta=5 ; fi -+then time_delta=60 -+elif test ${time_delta} -lt 30 -+then time_delta=30 ; fi - - AG_TIMEOUT=${time_delta} - ] --- -1.7.9.5 - + AG_TIMEOUT=${time_delta} + fi -- cgit 1.2.3-korg