* [PATCH 01/28] guile: upgrade from 2.0.3 to 2.0.5
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
@ 2012-05-03 18:14 ` nitin.a.kamble
2012-05-03 18:14 ` [PATCH 02/28] autoconf: upgrade from 2.68 to 2.69 nitin.a.kamble
` (26 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:14 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
...01-Fix-the-SRFI-60-copy-bit-documentation.patch | 33 -------------------
..._GNU_SOURCE-to-fix-the-GNU-kFreeBSD-build.patch | 25 --------------
...-modules-are-removed-gc-test-as-unresolve.patch | 34 ++++++++++++++++++++
...h-rather-than-gc-gc_version.h-in-pthread-.patch | 26 ---------------
...with-owner-not-retained-threads-test-as-u.patch | 29 +++++++++++++++++
.../guile/files/guile_2.0.5_fix_sed_error.patch | 24 ++++++++++++++
.../guile/{guile_2.0.3.bb => guile_2.0.5.bb} | 16 +++++----
7 files changed, 96 insertions(+), 91 deletions(-)
delete mode 100644 meta/recipes-devtools/guile/files/debian/0001-Fix-the-SRFI-60-copy-bit-documentation.patch
delete mode 100644 meta/recipes-devtools/guile/files/debian/0002-Define-_GNU_SOURCE-to-fix-the-GNU-kFreeBSD-build.patch
create mode 100644 meta/recipes-devtools/guile/files/debian/0002-Mark-Unused-modules-are-removed-gc-test-as-unresolve.patch
delete mode 100644 meta/recipes-devtools/guile/files/debian/0003-Include-gc.h-rather-than-gc-gc_version.h-in-pthread-.patch
create mode 100644 meta/recipes-devtools/guile/files/debian/0003-Mark-mutex-with-owner-not-retained-threads-test-as-u.patch
create mode 100644 meta/recipes-devtools/guile/files/guile_2.0.5_fix_sed_error.patch
rename meta/recipes-devtools/guile/{guile_2.0.3.bb => guile_2.0.5.bb} (84%)
diff --git a/meta/recipes-devtools/guile/files/debian/0001-Fix-the-SRFI-60-copy-bit-documentation.patch b/meta/recipes-devtools/guile/files/debian/0001-Fix-the-SRFI-60-copy-bit-documentation.patch
deleted file mode 100644
index e6df9b9..0000000
--- a/meta/recipes-devtools/guile/files/debian/0001-Fix-the-SRFI-60-copy-bit-documentation.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-Upstream-Status: Inappropriate [debian patch]
-
-From c53b49c63d7ed145fbaa3dde25063c407631f373 Mon Sep 17 00:00:00 2001
-From: Rob Browning <rlb@defaultvalue.org>
-Date: Sat, 23 Apr 2011 14:57:49 -0500
-Subject: Fix the SRFI 60 copy-bit documentation.
-
----
- libguile/srfi-60.c | 4 ++--
- 1 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/libguile/srfi-60.c b/libguile/srfi-60.c
-index 264f4cb..1ed3c9e 100644
---- a/libguile/srfi-60.c
-+++ b/libguile/srfi-60.c
-@@ -70,7 +70,7 @@ SCM_DEFINE (scm_srfi60_log2_binary_factors, "log2-binary-factors", 1, 0, 0,
-
-
- SCM_DEFINE (scm_srfi60_copy_bit, "copy-bit", 3, 0, 0,
-- (SCM index, SCM n, SCM bit),
-+ (SCM index, SCM n, SCM newbit),
- "Return @var{n} with the bit at @var{index} set according to\n"
- "@var{newbit}. @var{newbit} should be @code{#t} to set the bit\n"
- "to 1, or @code{#f} to set it to 0. Bits other than at\n"
-@@ -86,7 +86,7 @@ SCM_DEFINE (scm_srfi60_copy_bit, "copy-bit", 3, 0, 0,
- int bb;
-
- ii = scm_to_ulong (index);
-- bb = scm_to_bool (bit);
-+ bb = scm_to_bool (newbit);
-
- if (SCM_I_INUMP (n))
- {
diff --git a/meta/recipes-devtools/guile/files/debian/0002-Define-_GNU_SOURCE-to-fix-the-GNU-kFreeBSD-build.patch b/meta/recipes-devtools/guile/files/debian/0002-Define-_GNU_SOURCE-to-fix-the-GNU-kFreeBSD-build.patch
deleted file mode 100644
index 7176c76..0000000
--- a/meta/recipes-devtools/guile/files/debian/0002-Define-_GNU_SOURCE-to-fix-the-GNU-kFreeBSD-build.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Upstream-Status: Inappropriate [debian patch]
-
-From 6614b8efc5a8d90a26a2b99308b909ac351b65e5 Mon Sep 17 00:00:00 2001
-From: Rob Browning <rlb@defaultvalue.org>
-Date: Sat, 23 Apr 2011 14:57:50 -0500
-Subject: Define _GNU_SOURCE to fix the GNU/kFreeBSD build.
-
-Author: Petr Salinger <Petr.Salinger@seznam.cz>
-Closes: #401168
----
- libguile/fports.c | 1 +
- 1 files changed, 1 insertions(+), 0 deletions(-)
-
-diff --git a/libguile/fports.c b/libguile/fports.c
-index 1348b8b..3ac3ced 100644
---- a/libguile/fports.c
-+++ b/libguile/fports.c
-@@ -20,6 +20,7 @@
-
- \f
- #define _LARGEFILE64_SOURCE /* ask for stat64 etc */
-+#define _GNU_SOURCE /* ask for LONG_LONG_MAX/LONG_LONG_MIN */
-
- #ifdef HAVE_CONFIG_H
- # include <config.h>
diff --git a/meta/recipes-devtools/guile/files/debian/0002-Mark-Unused-modules-are-removed-gc-test-as-unresolve.patch b/meta/recipes-devtools/guile/files/debian/0002-Mark-Unused-modules-are-removed-gc-test-as-unresolve.patch
new file mode 100644
index 0000000..6864c8b
--- /dev/null
+++ b/meta/recipes-devtools/guile/files/debian/0002-Mark-Unused-modules-are-removed-gc-test-as-unresolve.patch
@@ -0,0 +1,34 @@
+From e52bfcdbaca5dce498678d8f512381e3e39a4066 Mon Sep 17 00:00:00 2001
+From: Rob Browning <rlb@defaultvalue.org>
+Date: Sun, 18 Mar 2012 11:40:55 -0500
+Subject: Mark "Unused modules are removed" gc test as unresolved.
+
+As per discussion with upstream, mark this test as unresolved since it
+may produce false negatives, depending on the behavior/timing of the
+garbage collector.
+---
+ test-suite/tests/gc.test | 11 ++++++-----
+ 1 files changed, 6 insertions(+), 5 deletions(-)
+
+diff --git a/test-suite/tests/gc.test b/test-suite/tests/gc.test
+index 97eeb19..58e4936 100644
+--- a/test-suite/tests/gc.test
++++ b/test-suite/tests/gc.test
+@@ -80,11 +80,12 @@
+ (gc) ;; thrice: because the test doesn't succeed with only
+ ;; one gc round. not sure why.
+
+- (= (let lp ((i 0))
+- (if (guard)
+- (lp (1+ i))
+- i))
+- total)))
++ (or (= (let lp ((i 0))
++ (if (guard)
++ (lp (1+ i))
++ i))
++ total)
++ (throw 'unresolved))))
+
+ (pass-if "Lexical vars are collectable"
+ (let ((l (compile
diff --git a/meta/recipes-devtools/guile/files/debian/0003-Include-gc.h-rather-than-gc-gc_version.h-in-pthread-.patch b/meta/recipes-devtools/guile/files/debian/0003-Include-gc.h-rather-than-gc-gc_version.h-in-pthread-.patch
deleted file mode 100644
index aa64f58..0000000
--- a/meta/recipes-devtools/guile/files/debian/0003-Include-gc.h-rather-than-gc-gc_version.h-in-pthread-.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Upstream-Status: Inappropriate [debian patch]
-
-From 0c91fa9270e86b20bfb8e62db5ac84617b2567d9 Mon Sep 17 00:00:00 2001
-From: Rob Browning <rlb@defaultvalue.org>
-Date: Thu, 10 Nov 2011 02:23:04 -0600
-Subject: Include gc.h rather than gc/gc_version.h in pthread test.
-
-See comments in recent gc_version.h. It should never be included
-directly, and doing so was causing build failures.
----
- .../standalone/test-pthread-create-secondary.c | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/test-suite/standalone/test-pthread-create-secondary.c b/test-suite/standalone/test-pthread-create-secondary.c
-index fe39c2a..d87fb33 100644
---- a/test-suite/standalone/test-pthread-create-secondary.c
-+++ b/test-suite/standalone/test-pthread-create-secondary.c
-@@ -27,7 +27,7 @@
- #include <stdlib.h>
- #include <libguile.h>
-
--#include <gc/gc_version.h>
-+#include <gc.h>
-
-
- /* Up to GC 7.2alpha5, calling `GC_INIT' from a secondary thread would
diff --git a/meta/recipes-devtools/guile/files/debian/0003-Mark-mutex-with-owner-not-retained-threads-test-as-u.patch b/meta/recipes-devtools/guile/files/debian/0003-Mark-mutex-with-owner-not-retained-threads-test-as-u.patch
new file mode 100644
index 0000000..ebf8939
--- /dev/null
+++ b/meta/recipes-devtools/guile/files/debian/0003-Mark-mutex-with-owner-not-retained-threads-test-as-u.patch
@@ -0,0 +1,29 @@
+From 848543091d55dddb54a85612155964506d712852 Mon Sep 17 00:00:00 2001
+From: Rob Browning <rlb@defaultvalue.org>
+Date: Sun, 18 Mar 2012 13:28:24 -0500
+Subject: Mark "mutex with owner not retained" threads test as unresolved.
+
+As per discussion with upstream, mark this test as unresolved since it
+may produce false negatives, depending on the behavior/timing of the
+garbage collector.
+---
+ test-suite/tests/threads.test | 6 ++++--
+ 1 files changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/test-suite/tests/threads.test b/test-suite/tests/threads.test
+index 85a7c38..50899cb 100644
+--- a/test-suite/tests/threads.test
++++ b/test-suite/tests/threads.test
+@@ -414,8 +414,10 @@
+
+ (gc) (gc)
+ (let ((m (g)))
+- (and (mutex? m)
+- (eq? (mutex-owner m) (current-thread)))))))
++ (or
++ (and (mutex? m)
++ (eq? (mutex-owner m) (current-thread)))
++ (throw 'unresolved))))))
+
+ ;;
+ ;; mutex lock levels
diff --git a/meta/recipes-devtools/guile/files/guile_2.0.5_fix_sed_error.patch b/meta/recipes-devtools/guile/files/guile_2.0.5_fix_sed_error.patch
new file mode 100644
index 0000000..e5dc226
--- /dev/null
+++ b/meta/recipes-devtools/guile/files/guile_2.0.5_fix_sed_error.patch
@@ -0,0 +1,24 @@
+Upstream-Status: Pending
+
+This fixes sed issue when prefix has / in it, like /usr/local
+
+autoreconf error avoided:
+| sed: -e expression #1, char 9: unknown option to `s'
+| configure.ac:39: error: AC_INIT should be called with package and version arguments
+
+Signed-Off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/01
+
+Index: guile-2.0.5/build-aux/git-version-gen
+===================================================================
+--- guile-2.0.5.orig/build-aux/git-version-gen
++++ guile-2.0.5/build-aux/git-version-gen
+@@ -187,7 +187,7 @@ else
+ v=UNKNOWN
+ fi
+
+-v=`echo "$v" |sed "s/^$prefix//"`
++v=`echo "$v" |sed "s#^$prefix##"`
+
+ # Test whether to append the "-dirty" suffix only if the version
+ # string we're using came from git. I.e., skip the test if it's "UNKNOWN"
diff --git a/meta/recipes-devtools/guile/guile_2.0.3.bb b/meta/recipes-devtools/guile/guile_2.0.5.bb
similarity index 84%
rename from meta/recipes-devtools/guile/guile_2.0.3.bb
rename to meta/recipes-devtools/guile/guile_2.0.5.bb
index 164ab8c..db75863 100644
--- a/meta/recipes-devtools/guile/guile_2.0.3.bb
+++ b/meta/recipes-devtools/guile/guile_2.0.5.bb
@@ -14,17 +14,19 @@ LICENSE = "GPLv3"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
SRC_URI = "${GNU_MIRROR}/guile/guile-${PV}.tar.gz \
- file://debian/0001-Fix-the-SRFI-60-copy-bit-documentation.patch \
- file://debian/0002-Define-_GNU_SOURCE-to-fix-the-GNU-kFreeBSD-build.patch \
- file://debian/0003-Include-gc.h-rather-than-gc-gc_version.h-in-pthread-.patch \
+ file://debian/0002-Mark-Unused-modules-are-removed-gc-test-as-unresolve.patch \
+ file://debian/0003-Mark-mutex-with-owner-not-retained-threads-test-as-u.patch \
file://opensuse/guile-64bit.patch \
- file://opensuse/guile-turn-off-gc-test.patch \
+ file://guile_2.0.5_fix_sed_error.patch \
"
-SRC_URI[md5sum] = "3b8b4e1083037f29d2c4704a6d55f2a8"
-SRC_URI[sha256sum] = "a53b21159befe3e89bbaca71e9e62cf00af0f49fcca297c407944b988d59eb08"
+# file://debian/0001-Change-guile-to-guile-X.Y-for-info-pages.patch
+# file://opensuse/guile-turn-off-gc-test.patch
-PR = "r5"
+SRC_URI[md5sum] = "bcf70d54b44c99cb9acd3f63c5486b4b"
+SRC_URI[sha256sum] = "2a026ea6cdbc51ca71bcd9787839debfa45ac5db1e26dc00b30ca9b128b10956"
+
+PR = "r0"
inherit autotools gettext
BBCLASSEXTEND = "native"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 02/28] autoconf: upgrade from 2.68 to 2.69
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
2012-05-03 18:14 ` [PATCH 01/28] guile: upgrade from 2.0.3 to 2.0.5 nitin.a.kamble
@ 2012-05-03 18:14 ` nitin.a.kamble
2012-05-03 18:14 ` [PATCH 03/28] automake: upgrade from 1.11.3 to 1.12 nitin.a.kamble
` (25 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:14 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
meta/recipes-devtools/autoconf/autoconf.inc | 2 +-
.../{autoconf_2.68.bb => autoconf_2.69.bb} | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
rename meta/recipes-devtools/autoconf/{autoconf_2.68.bb => autoconf_2.69.bb} (84%)
diff --git a/meta/recipes-devtools/autoconf/autoconf.inc b/meta/recipes-devtools/autoconf/autoconf.inc
index 3ae98c8..778c9a1 100644
--- a/meta/recipes-devtools/autoconf/autoconf.inc
+++ b/meta/recipes-devtools/autoconf/autoconf.inc
@@ -12,7 +12,7 @@ RDEPENDS_${PN} = "m4 gnu-config"
RDEPENDS_${PN}_virtclass-native = "m4-native gnu-config-native"
RDEPENDS_${PN}_virtclass-nativesdk = "m4-nativesdk gnu-config-nativesdk"
-SRC_URI = "${GNU_MIRROR}/autoconf/autoconf-${PV}.tar.bz2 \
+SRC_URI = "${GNU_MIRROR}/autoconf/autoconf-${PV}.tar.gz \
file://program_prefix.patch"
inherit autotools
diff --git a/meta/recipes-devtools/autoconf/autoconf_2.68.bb b/meta/recipes-devtools/autoconf/autoconf_2.69.bb
similarity index 84%
rename from meta/recipes-devtools/autoconf/autoconf_2.68.bb
rename to meta/recipes-devtools/autoconf/autoconf_2.69.bb
index 8d466e0..8c84e4a 100644
--- a/meta/recipes-devtools/autoconf/autoconf_2.68.bb
+++ b/meta/recipes-devtools/autoconf/autoconf_2.69.bb
@@ -1,6 +1,6 @@
require autoconf.inc
-PR = "r7"
+PR = "r0"
PARALLEL_MAKE = ""
@@ -17,8 +17,8 @@ SRC_URI += "file://autoreconf-include.patch \
file://remove-usr-local-lib-from-m4.patch \
"
-SRC_URI[md5sum] = "864d785215aa60d627c91fcb21b05b07"
-SRC_URI[sha256sum] = "c491fb273fd6d4ca925e26ceed3d177920233c76d542b150ff35e571454332c8"
+SRC_URI[md5sum] = "82d05e03b93e45f5a39b828dc9c6c29b"
+SRC_URI[sha256sum] = "954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969"
SRC_URI_append_virtclass-native = " file://fix_path_xtra.patch"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 03/28] automake: upgrade from 1.11.3 to 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
2012-05-03 18:14 ` [PATCH 01/28] guile: upgrade from 2.0.3 to 2.0.5 nitin.a.kamble
2012-05-03 18:14 ` [PATCH 02/28] autoconf: upgrade from 2.68 to 2.69 nitin.a.kamble
@ 2012-05-03 18:14 ` nitin.a.kamble
2012-05-03 18:14 ` [PATCH 04/28] distro-tracking: update for guile automake & autoconf nitin.a.kamble
` (24 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:14 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../automake/automake/path_prog_fixes.patch | 44 ++++---------------
.../prefer-cpio-over-pax-for-ustar-archives.patch | 32 ++++++++------
.../{automake_1.11.3.bb => automake_1.12.bb} | 4 +-
3 files changed, 30 insertions(+), 50 deletions(-)
rename meta/recipes-devtools/automake/{automake_1.11.3.bb => automake_1.12.bb} (93%)
diff --git a/meta/recipes-devtools/automake/automake/path_prog_fixes.patch b/meta/recipes-devtools/automake/automake/path_prog_fixes.patch
index 312cec6..4daec52 100644
--- a/meta/recipes-devtools/automake/automake/path_prog_fixes.patch
+++ b/meta/recipes-devtools/automake/automake/path_prog_fixes.patch
@@ -1,5 +1,9 @@
Upstream-Status: Inappropriate [embedded specific]
+Updated for automake 1.12
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
---
Makefile.am | 3 ++-
Makefile.in | 3 ++-
@@ -7,38 +11,10 @@ Upstream-Status: Inappropriate [embedded specific]
automake.in | 6 ++++--
4 files changed, 10 insertions(+), 6 deletions(-)
-Index: automake-1.10.1/Makefile.am
-===================================================================
---- automake-1.10.1.orig/Makefile.am 2008-01-21 22:28:58.000000000 +0000
-+++ automake-1.10.1/Makefile.am 2008-10-10 17:21:20.000000000 +0100
-@@ -75,7 +75,8 @@
- -e 's,[@]SHELL[@],$(SHELL),g' \
- -e 's,[@]VERSION[@],$(VERSION),g' \
- -e 's,[@]configure_input[@],Generated from $@.in; do not edit by hand.,g' \
-- -e 's,[@]datadir[@],$(datadir),g'
-+ -e 's,[@]datadir[@],$(datadir),g' \
-+ -e 's,[@]bindir[@],$(bindir),g'
-
- ## These files depend on Makefile so they are rebuilt if $(VERSION),
- ## $(datadir) or other do_subst'ituted variables change.
-Index: automake-1.10.1/Makefile.in
-===================================================================
---- automake-1.10.1.orig/Makefile.in 2008-01-21 22:29:10.000000000 +0000
-+++ automake-1.10.1/Makefile.in 2008-10-10 17:22:21.000000000 +0100
-@@ -185,7 +185,8 @@
- -e 's,[@]SHELL[@],$(SHELL),g' \
- -e 's,[@]VERSION[@],$(VERSION),g' \
- -e 's,[@]configure_input[@],Generated from $@.in; do not edit by hand.,g' \
-- -e 's,[@]datadir[@],$(datadir),g'
-+ -e 's,[@]datadir[@],$(datadir),g' \
-+ -e 's,[@]bindir[@],$(bindir),g'
-
- WGET = wget
- WGET_SV_CVS = $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/
-Index: automake-1.10.1/aclocal.in
+Index: automake-1.12/aclocal.in
===================================================================
---- automake-1.10.1.orig/aclocal.in 2008-01-21 22:11:41.000000000 +0000
-+++ automake-1.10.1/aclocal.in 2008-10-10 17:21:20.000000000 +0100
+--- automake-1.12.orig/aclocal.in
++++ automake-1.12/aclocal.in
@@ -1,8 +1,8 @@
-#!@PERL@ -w
+#!@bindir@/env perl
@@ -50,10 +26,10 @@ Index: automake-1.10.1/aclocal.in
if 0;
# aclocal - create aclocal.m4 by scanning configure.ac
-Index: automake-1.10.1/automake.in
+Index: automake-1.12/automake.in
===================================================================
---- automake-1.10.1.orig/automake.in 2008-01-21 22:11:41.000000000 +0000
-+++ automake-1.10.1/automake.in 2008-10-10 17:21:20.000000000 +0100
+--- automake-1.12.orig/automake.in
++++ automake-1.12/automake.in
@@ -1,8 +1,10 @@
-#!@PERL@ -w
+#!@bindir@/env perl
diff --git a/meta/recipes-devtools/automake/automake/prefer-cpio-over-pax-for-ustar-archives.patch b/meta/recipes-devtools/automake/automake/prefer-cpio-over-pax-for-ustar-archives.patch
index 4627855..e7f93e9 100644
--- a/meta/recipes-devtools/automake/automake/prefer-cpio-over-pax-for-ustar-archives.patch
+++ b/meta/recipes-devtools/automake/automake/prefer-cpio-over-pax-for-ustar-archives.patch
@@ -19,10 +19,14 @@ Updated for version 1.11.3:
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Date: 2011/03/14
-Index: automake-1.11.3/m4/tar.m4
+Updated for version 1.12:
+Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
+Date: 2012/05/02
+
+Index: automake-1.12/m4/tar.m4
===================================================================
---- automake-1.11.3.orig/m4/tar.m4 2012-01-31 03:41:18.000000000 -0800
-+++ automake-1.11.3/m4/tar.m4 2012-03-14 17:36:11.901303777 -0700
+--- automake-1.12.orig/m4/tar.m4
++++ automake-1.12/m4/tar.m4
@@ -31,7 +31,7 @@ m4_if([$1], [v7],
[m4_fatal([Unknown tar format])])
AC_MSG_CHECKING([how to create a $1 tar archive])
@@ -31,17 +35,17 @@ Index: automake-1.11.3/m4/tar.m4
+_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) cpio pax none'
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
# Do not fold the above two line into one, because Tru64 sh and
- # Solaris sh will not grok spaces in the rhs of `-'.
-Index: automake-1.11.3/Makefile.in
+ # Solaris sh will not grok spaces in the rhs of '-'.
+Index: automake-1.12/Makefile.in
===================================================================
---- automake-1.11.3.orig/Makefile.in 2012-02-01 02:37:59.000000000 -0800
-+++ automake-1.11.3/Makefile.in 2012-03-14 17:38:03.530869197 -0700
-@@ -62,7 +62,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/a
- $(top_srcdir)/m4/options.m4 $(top_srcdir)/m4/runlog.m4 \
- $(top_srcdir)/m4/sanity.m4 $(top_srcdir)/m4/silent.m4 \
- $(top_srcdir)/m4/strip.m4 $(top_srcdir)/m4/substnot.m4 \
-- $(top_srcdir)/m4/tar.m4 $(top_srcdir)/configure.ac
-+ $(top_srcdir)/configure.ac
+--- automake-1.12.orig/Makefile.in
++++ automake-1.12/Makefile.in
+@@ -95,7 +95,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/a
+ $(top_srcdir)/m4/mkdirp.m4 $(top_srcdir)/m4/options.m4 \
+ $(top_srcdir)/m4/runlog.m4 $(top_srcdir)/m4/sanity.m4 \
+ $(top_srcdir)/m4/silent.m4 $(top_srcdir)/m4/strip.m4 \
+- $(top_srcdir)/m4/substnot.m4 $(top_srcdir)/m4/tar.m4 \
++ $(top_srcdir)/m4/substnot.m4 \
+ $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
- am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
diff --git a/meta/recipes-devtools/automake/automake_1.11.3.bb b/meta/recipes-devtools/automake/automake_1.12.bb
similarity index 93%
rename from meta/recipes-devtools/automake/automake_1.11.3.bb
rename to meta/recipes-devtools/automake/automake_1.12.bb
index 2008774..6e9cd33 100644
--- a/meta/recipes-devtools/automake/automake_1.11.3.bb
+++ b/meta/recipes-devtools/automake/automake_1.12.bb
@@ -44,8 +44,8 @@ SRC_URI += "${PATHFIXPATCH} \
file://py-compile-compile-only-optimized-byte-code.patch"
-SRC_URI[md5sum] = "93ecb319f0365cb801990b00f658d026"
-SRC_URI[sha256sum] = "921b5188057e57bdd9c0ba06e21d0b0ea7dafa61a9bd08a2b041215bcff12f55"
+SRC_URI[md5sum] = "d8a8f6bd898a6b34a874728cd1e47a95"
+SRC_URI[sha256sum] = "6dcc0c5971c74da369dda00fceaf5416c1f186d635eb14cc301d1ce29e5a9a26"
PR = "r0"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 04/28] distro-tracking: update for guile automake & autoconf
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (2 preceding siblings ...)
2012-05-03 18:14 ` [PATCH 03/28] automake: upgrade from 1.11.3 to 1.12 nitin.a.kamble
@ 2012-05-03 18:14 ` nitin.a.kamble
2012-05-03 18:14 ` [PATCH 05/28] gmp: fix build with automake 1.12 nitin.a.kamble
` (23 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:14 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../conf/distro/include/distro_tracking_fields.inc | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc
index f74c8d3..beddd03 100644
--- a/meta/conf/distro/include/distro_tracking_fields.inc
+++ b/meta/conf/distro/include/distro_tracking_fields.inc
@@ -48,9 +48,9 @@ RECIPE_LAST_UPDATE_pn-libunistring = "Jan 17, 2012"
RECIPE_MANUAL_CHECK_DATE_pn-libunistring = "Jan 17, 2012"
RECIPE_MAINTAINER_pn-libunistring = "Nitin A Kamble <nitin.a.kamble@intel.com>"
-RECIPE_LATEST_VERSION_pn-guile = "2.0.3"
-RECIPE_LAST_UPDATE_pn-guile = "Jan 17, 2012"
-RECIPE_MANUAL_CHECK_DATE_pn-guile = "Jan 17, 2012"
+RECIPE_LATEST_VERSION_pn-guile = "2.0.5"
+RECIPE_LAST_UPDATE_pn-guile = "May 03, 2012"
+RECIPE_MANUAL_CHECK_DATE_pn-guile = "May 03, 2012"
RECIPE_MAINTAINER_pn-guile = "Nitin A Kamble <nitin.a.kamble@intel.com>"
RECIPE_LATEST_VERSION_pn-autogen = "5.12"
@@ -3128,16 +3128,17 @@ RECIPE_LATEST_VERSION_pn-gcc-runtime = "4.6.2+git"
RECIPE_LAST_UPDATE_pn-gcc-runtime = "May 1, 2011"
RECIPE_MANUAL_CHECK_DATE_pn-gcc-runtime = "Jan 10, 2012"
-RECIPE_STATUS_pn-autoconf="red"
-RECIPE_LATEST_VERSION_pn-autoconf="2.68"
-RECIPE_LAST_UPDATE_pn-autoconf = "Jan 29, 2010"
+RECIPE_STATUS_pn-autoconf="green"
+RECIPE_LATEST_VERSION_pn-autoconf="2.69"
+RECIPE_LAST_UPDATE_pn-autoconf = "May 03, 2012"
+RECIPE_MANUAL_CHECK_DATE_pn-autoconf = "May 03, 2012"
RECIPE_NO_UPDATE_REASON_pn-autoconf="seeing rpm issue with the 2.68 version, a bug is open"
RECIPE_MAINTAINER_pn-autoconf = "Nitin A Kamble <nitin.a.kamble@intel.com>"
RECIPE_STATUS_pn-automake="green"
-RECIPE_LATEST_VERSION_pn-automake="1.11.3"
-RECIPE_LAST_UPDATE_pn-automake = "Mar 14, 2012"
-RECIPE_MANUAL_CHECK_DATE_pn-automake = "Mar 14, 2012"
+RECIPE_LATEST_VERSION_pn-automake="1.12"
+RECIPE_LAST_UPDATE_pn-automake = "May 03, 2012"
+RECIPE_MANUAL_CHECK_DATE_pn-automake = "May 03, 2012"
RECIPE_MAINTAINER_pn-automake = "Nitin A Kamble <nitin.a.kamble@intel.com>"
RECIPE_STATUS_pn-bison="green"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 05/28] gmp: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (3 preceding siblings ...)
2012-05-03 18:14 ` [PATCH 04/28] distro-tracking: update for guile automake & autoconf nitin.a.kamble
@ 2012-05-03 18:14 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 06/28] mpfr: " nitin.a.kamble
` (22 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:14 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../gmp/gmp/gmp_fix_for_automake-1.12.patch | 48 ++++++++++++++++++++
meta/recipes-support/gmp/gmp_5.0.4.bb | 6 ++-
2 files changed, 52 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-support/gmp/gmp/gmp_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/gmp/gmp/gmp_fix_for_automake-1.12.patch b/meta/recipes-support/gmp/gmp/gmp_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..8ff1bcf
--- /dev/null
+++ b/meta/recipes-support/gmp/gmp/gmp_fix_for_automake-1.12.patch
@@ -0,0 +1,48 @@
+Upstream-Status: Pending
+
+automake 1.12 has depricated automatic de-ANSI-fication support
+
+this patch avoids these kinds of errors:
+
+| configure.in:2240: error: automatic de-ANSI-fication support has been removed
+| Makefile.am:28: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: gmp-5.0.4/configure.in
+===================================================================
+--- gmp-5.0.4.orig/configure.in
++++ gmp-5.0.4/configure.in
+@@ -59,7 +59,7 @@ dnl
+ dnl Note that there's a copy of these options in the top-level Makefile.am,
+ dnl so update there too if changing anything.
+ dnl
+-AM_INIT_AUTOMAKE([1.8 gnu no-dependencies $(top_builddir)/ansi2knr])
++AM_INIT_AUTOMAKE([1.8 gnu no-dependencies])
+ AM_CONFIG_HEADER(config.h:config.in)
+ AM_MAINTAINER_MODE
+
+@@ -2236,9 +2236,6 @@ fi
+ echo " MPN_PATH=\"$path\""
+
+
+-# Automake ansi2knr support.
+-AM_C_PROTOTYPES
+-
+ CL_AS_NOEXECSTACK
+
+ GMP_PROG_AR
+Index: gmp-5.0.4/Makefile.am
+===================================================================
+--- gmp-5.0.4.orig/Makefile.am
++++ gmp-5.0.4/Makefile.am
+@@ -25,7 +25,7 @@
+ # Makefiles in subdirectories, but here we must omit it so automake gives
+ # the actual ansi2knr build rule, not "cd $(top_builddir) && make ansi2knr".
+ #
+-AUTOMAKE_OPTIONS = 1.8 gnu no-dependencies ansi2knr
++AUTOMAKE_OPTIONS = 1.8 gnu no-dependencies
+
+
+ # Libtool -version-info for libgmp.la and libmp.la. See "Versioning" in the
diff --git a/meta/recipes-support/gmp/gmp_5.0.4.bb b/meta/recipes-support/gmp/gmp_5.0.4.bb
index 9adcc3f..c5c0f03 100644
--- a/meta/recipes-support/gmp/gmp_5.0.4.bb
+++ b/meta/recipes-support/gmp/gmp_5.0.4.bb
@@ -2,10 +2,12 @@ require gmp.inc
LICENSE="LGPLv3&GPLv3"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
file://version.c;endline=18;md5=d8c56b52b9092346b9f93b4da65ef790"
-PR = "r0"
+PR = "r1"
SRC_URI_append += "file://use-includedir.patch \
- file://gmp_fix_for_x32.patch"
+ file://gmp_fix_for_x32.patch \
+ file://gmp/gmp_fix_for_automake-1.12.patch \
+ "
export CC_FOR_BUILD = "${BUILD_CC}"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 06/28] mpfr: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (4 preceding siblings ...)
2012-05-03 18:14 ` [PATCH 05/28] gmp: fix build with automake 1.12 nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 07/28] popt: " nitin.a.kamble
` (21 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch | 35 ++++++++++++++++++++
meta/recipes-support/mpfr/mpfr_3.1.0.bb | 7 ++--
2 files changed, 39 insertions(+), 3 deletions(-)
create mode 100644 meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch b/meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..5b0a24a
--- /dev/null
+++ b/meta/recipes-support/mpfr/mpfr-3.1.0/mpfr_fix_for_automake-1.12.patch
@@ -0,0 +1,35 @@
+Upstream-Status: Pending
+
+this patch avoids these issues with automake 1.12
+
+| configure.ac:304: error: automatic de-ANSI-fication support has been removed
+| tests/Makefile.am:12: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@.intel.com>
+2012/05/02
+
+Index: mpfr-3.1.0/configure.ac
+===================================================================
+--- mpfr-3.1.0.orig/configure.ac
++++ mpfr-3.1.0/configure.ac
+@@ -301,7 +301,6 @@ if test "$test_CFLAGS" != set && test -n
+ fi
+
+ AM_PROG_CC_C_O
+-AM_C_PROTOTYPES
+
+ case $host in
+ *-apple-darwin*)
+Index: mpfr-3.1.0/tests/Makefile.am
+===================================================================
+--- mpfr-3.1.0.orig/tests/Makefile.am
++++ mpfr-3.1.0/tests/Makefile.am
+@@ -9,7 +9,7 @@
+ # PARTICULAR PURPOSE.
+
+
+-AUTOMAKE_OPTIONS = 1.6 gnu $(top_builddir)/ansi2knr
++AUTOMAKE_OPTIONS = 1.6 gnu
+
+ # tversion is run
+ # * at the beginning so that the user gets a possible version error
diff --git a/meta/recipes-support/mpfr/mpfr_3.1.0.bb b/meta/recipes-support/mpfr/mpfr_3.1.0.bb
index 102ec69..e7e20ce 100644
--- a/meta/recipes-support/mpfr/mpfr_3.1.0.bb
+++ b/meta/recipes-support/mpfr/mpfr_3.1.0.bb
@@ -3,11 +3,12 @@ LICENSE="GPLv3&LGPLv3"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
file://COPYING.LESSER;md5=6a6a8e020838b23406c81b19c1d46df6"
DEPENDS = "gmp"
-PR = "r1"
+PR = "r2"
SRC_URI = "http://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.bz2 \
- file://long-long-thumb.patch \
-"
+ file://long-long-thumb.patch \
+ file://mpfr_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "238ae4a15cc3a5049b723daef5d17938"
SRC_URI[sha256sum] = "74a7bbbad168dd1cc414f1c9210b8fc16ccfc8e422d34b3371a8978e31eab680"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 07/28] popt: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (5 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 06/28] mpfr: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 08/28] rpm: " nitin.a.kamble
` (20 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../popt/popt/popt_fix_for_automake-1.12.patch | 21 ++++++++++++++++++++
meta/recipes-support/popt/popt_1.16.bb | 3 +-
2 files changed, 23 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-support/popt/popt/popt_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/popt/popt/popt_fix_for_automake-1.12.patch b/meta/recipes-support/popt/popt/popt_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..91bca96
--- /dev/null
+++ b/meta/recipes-support/popt/popt/popt_fix_for_automake-1.12.patch
@@ -0,0 +1,21 @@
+Upstream-Status: pending
+
+This patch avoids this error with automake 1.12:
+
+| configure.ac:49: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: popt-1.16/configure.ac
+===================================================================
+--- popt-1.16.orig/configure.ac
++++ popt-1.16/configure.ac
+@@ -46,7 +46,6 @@ AC_GCC_TRADITIONAL
+ AC_SYS_LARGEFILE
+
+ AC_ISC_POSIX
+-AM_C_PROTOTYPES
+
+ AC_CHECK_HEADERS(float.h fnmatch.h glob.h langinfo.h libintl.h mcheck.h unistd.h)
+
diff --git a/meta/recipes-support/popt/popt_1.16.bb b/meta/recipes-support/popt/popt_1.16.bb
index cd22e9a..91b0d60 100644
--- a/meta/recipes-support/popt/popt_1.16.bb
+++ b/meta/recipes-support/popt/popt_1.16.bb
@@ -4,10 +4,11 @@ SECTION = "libs"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://COPYING;md5=cb0613c30af2a8249b8dcc67d3edb06d"
-PR = "r1"
+PR = "r2"
SRC_URI = "http://rpm5.org/files/popt/popt-${PV}.tar.gz \
file://pkgconfig_fix.patch \
+ file://popt_fix_for_automake-1.12.patch \
"
SRC_URI[md5sum] = "3743beefa3dd6247a73f8f7a32c14c33"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 08/28] rpm: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (6 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 07/28] popt: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 09/28] libxml2: " nitin.a.kamble
` (19 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../rpm/rpm/rpm_fix_for_automake-1.12.patch | 21 ++++++++++++++++++++
meta/recipes-devtools/rpm/rpm_5.4.0.bb | 3 +-
2 files changed, 23 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-devtools/rpm/rpm/rpm_fix_for_automake-1.12.patch
diff --git a/meta/recipes-devtools/rpm/rpm/rpm_fix_for_automake-1.12.patch b/meta/recipes-devtools/rpm/rpm/rpm_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..abbb15d
--- /dev/null
+++ b/meta/recipes-devtools/rpm/rpm/rpm_fix_for_automake-1.12.patch
@@ -0,0 +1,21 @@
+Upstream-Status: 2012/05/02
+
+automake 1.12 has depricated automatic de-ANSI-fication.
+
+fix this issue:
+| configure.ac:564: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+Index: rpm-5.4.0/configure.ac
+===================================================================
+--- rpm-5.4.0.orig/configure.ac
++++ rpm-5.4.0/configure.ac
+@@ -561,7 +561,6 @@ dnl # platform specific checks
+ AC_SEARCH_LIBS([strerror],[cposix])
+
+ dnl # standard checks
+-AM_C_PROTOTYPES
+ AC_C_INLINE
+ AC_C_BIGENDIAN
+
diff --git a/meta/recipes-devtools/rpm/rpm_5.4.0.bb b/meta/recipes-devtools/rpm/rpm_5.4.0.bb
index 5ee6b47..3c259b2 100644
--- a/meta/recipes-devtools/rpm/rpm_5.4.0.bb
+++ b/meta/recipes-devtools/rpm/rpm_5.4.0.bb
@@ -45,7 +45,7 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1"
DEPENDS = "bzip2 zlib db openssl elfutils expat libpcre attr acl popt ${extrarpmdeps}"
extrarpmdeps = "python perl file"
extrarpmdeps_virtclass-native = "python-native file-native"
-PR = "r36"
+PR = "r37"
# rpm2cpio is a shell script, which is part of the rpm src.rpm. It is needed
# in order to extract the distribution SRPM into a format we can extract...
@@ -70,6 +70,7 @@ SRC_URI = "http://www.rpm5.org/files/rpm/rpm-5.4/rpm-5.4.0-0.20101229.src.rpm;ex
file://pythondeps.sh \
file://rpmdeps-oecore.patch \
file://rpm-resolvedep.patch \
+ file://rpm_fix_for_automake-1.12.patch \
"
# file://rpm-autoconf.patch \
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 09/28] libxml2: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (7 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 08/28] rpm: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 10/28] shadow shadow-native: " nitin.a.kamble
` (18 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../libxml2/libxml2_fix_for_automake_1.12.patch | 23 ++++++++++++++++++++
meta/recipes-core/libxml/libxml2_2.7.8.bb | 5 ++-
2 files changed, 26 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-core/libxml/libxml2/libxml2_fix_for_automake_1.12.patch
diff --git a/meta/recipes-core/libxml/libxml2/libxml2_fix_for_automake_1.12.patch b/meta/recipes-core/libxml/libxml2/libxml2_fix_for_automake_1.12.patch
new file mode 100644
index 0000000..5c25882
--- /dev/null
+++ b/meta/recipes-core/libxml/libxml2/libxml2_fix_for_automake_1.12.patch
@@ -0,0 +1,23 @@
+Upstream-Status: Pending
+
+automake 1.12 has decpricated automatic de-ANSI-fication support
+
+this patch fixes this build issue:
+
+| configure.in:67: error: automatic de-ANSI-fication support has been removed
+Signed-Off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: libxml2-2.7.8/configure.in
+===================================================================
+--- libxml2-2.7.8.orig/configure.in
++++ libxml2-2.7.8/configure.in
+@@ -63,8 +63,6 @@ AC_PATH_PROG(WGET, wget, /usr/bin/wget)
+ AC_PATH_PROG(XMLLINT, xmllint, /usr/bin/xmllint)
+ AC_PATH_PROG(XSLTPROC, xsltproc, /usr/bin/xsltproc)
+
+-dnl Make sure we have an ANSI compiler
+-AM_C_PROTOTYPES
+ test "x$U" != "x" && AC_MSG_ERROR(Compiler not ANSI compliant)
+
+ AC_LIBTOOL_WIN32_DLL
diff --git a/meta/recipes-core/libxml/libxml2_2.7.8.bb b/meta/recipes-core/libxml/libxml2_2.7.8.bb
index 1de73da..9111120 100644
--- a/meta/recipes-core/libxml/libxml2_2.7.8.bb
+++ b/meta/recipes-core/libxml/libxml2_2.7.8.bb
@@ -1,8 +1,9 @@
require libxml2.inc
-PR = "r7"
+PR = "r8"
-SRC_URI += "file://fix_version_info.patch"
+SRC_URI += "file://fix_version_info.patch \
+ file://libxml2_fix_for_automake_1.12.patch"
SRC_URI[md5sum] = "8127a65e8c3b08856093099b52599c86"
SRC_URI[sha256sum] = "cda23bc9ebd26474ca8f3d67e7d1c4a1f1e7106364b690d822e009fdc3c417ec"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 10/28] shadow shadow-native: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (8 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 09/28] libxml2: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 11/28] jpeg: " nitin.a.kamble
` (17 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../files/shadow_fix_for_automake-1.12.patch | 23 ++++++++++++++++++++
.../shadow/shadow-native_4.1.4.3.bb | 6 +++-
meta/recipes-extended/shadow/shadow_4.1.4.3.bb | 6 +++-
3 files changed, 31 insertions(+), 4 deletions(-)
create mode 100644 meta/recipes-extended/shadow/files/shadow_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/shadow/files/shadow_fix_for_automake-1.12.patch b/meta/recipes-extended/shadow/files/shadow_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..6a27ed3
--- /dev/null
+++ b/meta/recipes-extended/shadow/files/shadow_fix_for_automake-1.12.patch
@@ -0,0 +1,23 @@
+Upstream-Status: pending
+
+Automake 1.12 has deprecated automatic de-ANSI-fication support
+
+This patch avoids this issue with automake 1.12:
+
+| configure.in:22: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: shadow-4.1.4.3/configure.in
+===================================================================
+--- shadow-4.1.4.3.orig/configure.in
++++ shadow-4.1.4.3/configure.in
+@@ -19,7 +19,6 @@ AC_PROG_CC
+ AC_ISC_POSIX
+ AC_PROG_LN_S
+ AC_PROG_YACC
+-AM_C_PROTOTYPES
+ AM_PROG_LIBTOOL
+
+ dnl Checks for libraries.
diff --git a/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb b/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb
index 38bb922..61fccba 100644
--- a/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb
+++ b/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb
@@ -7,7 +7,7 @@ LICENSE = "BSD | Artistic-1.0"
LIC_FILES_CHKSUM = "file://COPYING;md5=08c553a87d4e51bbed50b20e0adcaede \
file://src/passwd.c;firstline=8;endline=30;md5=2899a045e90511d0e043b85a7db7e2fe"
-PR = "r4"
+PR = "r5"
SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
file://shadow.automake-1.11.patch \
@@ -15,7 +15,9 @@ SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
file://shadow-4.1.4.2-env-reset-keep-locale.patch \
file://add_root_cmd_options.patch \
file://disable-syslog.patch \
- file://useradd.patch"
+ file://useradd.patch \
+ file://shadow_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "b8608d8294ac88974f27b20f991c0e79"
SRC_URI[sha256sum] = "633f5bb4ea0c88c55f3642c97f9d25cbef74f82e0b4cf8d54e7ad6f9f9caa778"
diff --git a/meta/recipes-extended/shadow/shadow_4.1.4.3.bb b/meta/recipes-extended/shadow/shadow_4.1.4.3.bb
index 60fb78b..098b0b0 100644
--- a/meta/recipes-extended/shadow/shadow_4.1.4.3.bb
+++ b/meta/recipes-extended/shadow/shadow_4.1.4.3.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=08c553a87d4e51bbed50b20e0adcaede \
DEPENDS = "${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
RDEPENDS_${PN} = "shadow-securetty ${@base_contains('DISTRO_FEATURES', 'pam', '${PAM_PLUGINS}', '', d)}"
-PR = "r9"
+PR = "r10"
SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
file://login_defs_pam.sed \
@@ -19,7 +19,9 @@ SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
file://shadow-4.1.4.2-env-reset-keep-locale.patch \
file://shadow-4.1.4.2-groupmod-pam-check.patch \
file://shadow-4.1.4.2-su_no_sanitize_env.patch \
- file://shadow-update-pam-conf.patch"
+ file://shadow-update-pam-conf.patch \
+ file://shadow_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "b8608d8294ac88974f27b20f991c0e79"
SRC_URI[sha256sum] = "633f5bb4ea0c88c55f3642c97f9d25cbef74f82e0b4cf8d54e7ad6f9f9caa778"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 11/28] jpeg: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (9 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 10/28] shadow shadow-native: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 12/28] libtasn1: " nitin.a.kamble
` (16 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch | 41 ++++++++++++++++++++
meta/recipes-core/jpeg/jpeg_8c.bb | 6 ++-
2 files changed, 45 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-core/jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch
diff --git a/meta/recipes-core/jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch b/meta/recipes-core/jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..e8a2f75
--- /dev/null
+++ b/meta/recipes-core/jpeg/jpeg-8c/jpeg_fix_for_automake-1.12.patch
@@ -0,0 +1,41 @@
+Upstream-Status: Pending
+
+automake 1.12 has deprecated automatic de-ANSI-fication support
+
+this patch avoids this error with automake 1.12
+
+| configure.ac:32: error: automatic de-ANSI-fication support has been removed
+...
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libjpeg.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: jpeg-8c/configure.ac
+===================================================================
+--- jpeg-8c.orig/configure.ac
++++ jpeg-8c/configure.ac
+@@ -28,9 +28,6 @@ AM_INIT_AUTOMAKE([-Wall -Werror no-dist
+ # with --disable-silent-rules or use "make V=1".
+ AM_SILENT_RULES([yes])
+
+-# This is required when using the de-ANSI-fication feature.
+-AM_C_PROTOTYPES
+-
+ # Add configure option --enable-maintainer-mode which enables
+ # dependency checking and generation useful to package maintainers.
+ # This is made an option to avoid confusing end users.
+@@ -44,6 +41,10 @@ AC_PROG_INSTALL
+ AC_PROG_MAKE_SET
+ AC_PROG_LN_S
+
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
++
+ # Check if LD supports linker scripts,
+ # and define automake conditional HAVE_LD_VERSION_SCRIPT if so.
+ AC_ARG_ENABLE([ld-version-script],
diff --git a/meta/recipes-core/jpeg/jpeg_8c.bb b/meta/recipes-core/jpeg/jpeg_8c.bb
index 6aeaeaa..c276a51 100644
--- a/meta/recipes-core/jpeg/jpeg_8c.bb
+++ b/meta/recipes-core/jpeg/jpeg_8c.bb
@@ -13,11 +13,13 @@ SECTION = "libs"
DEPENDS = "libtool-cross"
DEPENDS_virtclass-native = "libtool-native"
-PR = "r3"
+PR = "r4"
SRC_URI = "http://www.ijg.org/files/jpegsrc.v${PV}.tar.gz \
file://debian-libjpeg7_7-1.diff \
- file://fix_for_automake_1.11.2.patch"
+ file://fix_for_automake_1.11.2.patch \
+ file://jpeg_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "a2c10c04f396a9ce72894beb18b4e1f9"
SRC_URI[sha256sum] = "edfc0b3e004b2fe58ffeeec89f96e3a3c28972c46725ec127d01edf8a1cc7c9a"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 12/28] libtasn1: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (10 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 11/28] jpeg: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 13/28] systemtap: " nitin.a.kamble
` (15 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../libtasn1/libtasn1_fix_for_automake_1.12.patch | 28 ++++++++++++++++++++
meta/recipes-support/gnutls/libtasn1_2.12.bb | 6 +++-
2 files changed, 32 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch
diff --git a/meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch b/meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch
new file mode 100644
index 0000000..5540bef
--- /dev/null
+++ b/meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch
@@ -0,0 +1,28 @@
+Upstream-Status: Pending
+
+This patch avoids following issues with automake 1.12:
+
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libtasn1.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+
+Index: libtasn1-2.11/configure.ac
+===================================================================
+--- libtasn1-2.11.orig/configure.ac
++++ libtasn1-2.11/configure.ac
+@@ -38,6 +38,11 @@ lgl_EARLY
+ AC_PROG_YACC
+ AC_PROG_LN_S
+
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
++
++
+ dnl Checks for programs.
+ AC_PROG_INSTALL
+ AM_MISSING_PROG(HELP2MAN, help2man, $missing_dir)
diff --git a/meta/recipes-support/gnutls/libtasn1_2.12.bb b/meta/recipes-support/gnutls/libtasn1_2.12.bb
index aae409e..d0b4191 100644
--- a/meta/recipes-support/gnutls/libtasn1_2.12.bb
+++ b/meta/recipes-support/gnutls/libtasn1_2.12.bb
@@ -8,9 +8,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c \
file://README;endline=8;md5=c3803a3e8ca5ab5eb1e5912faa405351"
-PR = "r0"
+PR = "r1"
-SRC_URI = "${GNU_MIRROR}/libtasn1/libtasn1-${PV}.tar.gz"
+SRC_URI = "${GNU_MIRROR}/libtasn1/libtasn1-${PV}.tar.gz \
+ file://libtasn1_fix_for_automake_1.12.patch \
+ "
SRC_URI[md5sum] = "4eba39fb962d6cf5a370267eae8ff52b"
SRC_URI[sha256sum] = "0e257a8a01c80e464f73262e13c226e04a15165c2ad087a340f53902281a1c5d"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 13/28] systemtap: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (11 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 12/28] libtasn1: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 14/28] libmpc: " nitin.a.kamble
` (14 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../systemtap_fix_for_automake_1.12.patch | 23 ++++++++++++++++++++
meta/recipes-kernel/systemtap/systemtap_git.bb | 2 +-
meta/recipes-kernel/systemtap/systemtap_git.inc | 1 +
3 files changed, 25 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
diff --git a/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch b/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
new file mode 100644
index 0000000..ef74a09
--- /dev/null
+++ b/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
@@ -0,0 +1,23 @@
+Upstream-Status: Pending
+
+Automake 1.12 has deprecated automatic de-ANSI-fication support
+
+Fix this issue with automake 1.12:
+
+| configure.ac:23: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: git/configure.ac
+===================================================================
+--- git.orig/configure.ac
++++ git/configure.ac
+@@ -20,7 +20,6 @@ AC_PROG_CXX
+ AC_PROG_CPP
+ AM_PROG_CC_STDC
+ AM_PROG_CC_C_O
+-AM_C_PROTOTYPES
+ AC_PROG_RANLIB
+ AC_OBJEXT
+ AC_EXEEXT
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb
index 91bccd1..4d340fc 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap_git.bb
@@ -6,7 +6,7 @@ DEPENDS = "elfutils sqlite3 systemtap-native"
DEPENDS_virtclass-native = "elfutils-native sqlite3-native gettext-native"
DEPENDS_virtclass-nativesdk = "elfutils-nativesdk sqlite3-nativesdk gettext-nativesdk"
-PR = "r3"
+PR = "r4"
export CC_FOR_BUILD = "${BUILD_CC}"
export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS}"
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index 839cec3..9f4feee 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -6,6 +6,7 @@ PV = "1.7+git${SRCPV}"
SRC_URI = "git://sources.redhat.com/git/systemtap.git;protocol=git \
file://docproc-build-fix.patch \
+ file://systemtap_fix_for_automake_1.12.patch \
"
FILESPATH = "${FILE_DIRNAME}/systemtap"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 14/28] libmpc: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (12 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 13/28] systemtap: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 15/28] libcheck: " nitin.a.kamble
` (13 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../libmpc/libmpc_fix_for_automake-1.12.patch | 26 ++++++++++++++++++++
meta/recipes-support/libmpc/libmpc_0.8.2.bb | 5 ++-
2 files changed, 29 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch b/meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..75fa28e
--- /dev/null
+++ b/meta/recipes-support/libmpc/libmpc/libmpc_fix_for_automake-1.12.patch
@@ -0,0 +1,26 @@
+Upstream-Status: Pending
+
+this fix avoids this error with automake 1.12
+
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libmpc.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/02
+
+Index: mpc-0.8.2/configure.ac
+===================================================================
+--- mpc-0.8.2.orig/configure.ac
++++ mpc-0.8.2/configure.ac
+@@ -86,6 +86,10 @@ AC_PROG_EGREP
+ AC_PROG_SED
+ AC_LANG(C)
+
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
++
+ dnl Check for GMP CFLAGS in gmp.h
+ if test -z "$user_redefine_cc" ; then
+ MPC_GMP_CC_CFLAGS
diff --git a/meta/recipes-support/libmpc/libmpc_0.8.2.bb b/meta/recipes-support/libmpc/libmpc_0.8.2.bb
index f991a8e..7a372ba 100644
--- a/meta/recipes-support/libmpc/libmpc_0.8.2.bb
+++ b/meta/recipes-support/libmpc/libmpc_0.8.2.bb
@@ -2,10 +2,11 @@ require libmpc.inc
DEPENDS = "gmp mpfr"
-PR = "r0"
+PR = "r1"
LICENSE="LGPLv2.1"
LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=7fbc338309ac38fefcd64b04bb903e34"
-SRC_URI = "http://www.multiprecision.org/mpc/download/mpc-${PV}.tar.gz"
+SRC_URI = "http://www.multiprecision.org/mpc/download/mpc-${PV}.tar.gz \
+ file://libmpc_fix_for_automake-1.12.patch"
SRC_URI[md5sum] = "e98267ebd5648a39f881d66797122fb6"
SRC_URI[sha256sum] = "ae79f8d41d8a86456b68607e9ca398d00f8b7342d1d83bcf4428178ac45380c7"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 15/28] libcheck: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (13 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 14/28] libmpc: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 16/28] texinfo: " nitin.a.kamble
` (12 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../libcheck/libcheck_fix_for_automake-1.12.patch | 26 ++++++++++++++++++++
meta/recipes-support/libcheck/libcheck_0.9.8.bb | 6 +++-
2 files changed, 30 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch
diff --git a/meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch b/meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..263f6d6
--- /dev/null
+++ b/meta/recipes-support/libcheck/libcheck/libcheck_fix_for_automake-1.12.patch
@@ -0,0 +1,26 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libcompat.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: check-0.9.8/configure.ac
+===================================================================
+--- check-0.9.8.orig/configure.ac
++++ check-0.9.8/configure.ac
+@@ -103,6 +103,10 @@ AC_PROG_INSTALL
+ AC_PROG_LN_S
+ AC_PROG_LIBTOOL
+
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
++
+ # add these options to CFLAGS if the compiler supports them
+ AC_DEFUN([AX_CFLAGS_ADD],[AX_C_CHECK_FLAG($1, , , CFLAGS="$CFLAGS $1")])
+ AX_CFLAGS_WARN_ALL_ANSI
diff --git a/meta/recipes-support/libcheck/libcheck_0.9.8.bb b/meta/recipes-support/libcheck/libcheck_0.9.8.bb
index d5b9930..e988d47 100644
--- a/meta/recipes-support/libcheck/libcheck_0.9.8.bb
+++ b/meta/recipes-support/libcheck/libcheck_0.9.8.bb
@@ -5,9 +5,11 @@ SECTION = "devel"
LICENSE = "LGPLv2.1+"
LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=2d5025d4aa3495befef8f17206a5b0a1"
-PR = "r0"
+PR = "r1"
-SRC_URI = "${SOURCEFORGE_MIRROR}/check/check-${PV}.tar.gz"
+SRC_URI = "${SOURCEFORGE_MIRROR}/check/check-${PV}.tar.gz \
+ file://libcheck_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "5d75e9a6027cde79d2c339ef261e7470"
SRC_URI[sha256sum] = "82acf956bb07584ffea2bf04d5989fe939c3e74ecf93133a21037fd0f7996a7f"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 16/28] texinfo: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (14 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 15/28] libcheck: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 17/28] libidn: " nitin.a.kamble
` (11 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../texinfo_fix_for_automake-1.12.patch | 24 ++++++++++++++++++++
meta/recipes-extended/texinfo/texinfo_4.13a.bb | 3 +-
2 files changed, 26 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch b/meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..e0684ff
--- /dev/null
+++ b/meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch
@@ -0,0 +1,24 @@
+Upsteam-Status: pending
+
+automake 1.12 has deprecated support for lzma-compressed distribution archives
+this patch fixes following issue with automake 1.12
+
+| configure.ac:16: error: support for lzma-compressed distribution archives has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+
+Index: texinfo-4.13/configure.ac
+===================================================================
+--- texinfo-4.13.orig/configure.ac
++++ texinfo-4.13/configure.ac
+@@ -13,7 +13,7 @@ AC_INIT([GNU Texinfo], [4.13], [bug-texi
+
+ dnl Must come before AM_INIT_AUTOMAKE.
+ AC_CONFIG_AUX_DIR([build-aux])
+-AM_INIT_AUTOMAKE([1.10.1 readme-alpha dist-lzma])
++AM_INIT_AUTOMAKE([1.10.1 readme-alpha])
+
+ # Minimum Autoconf version required.
+ AC_PREREQ(2.59)
diff --git a/meta/recipes-extended/texinfo/texinfo_4.13a.bb b/meta/recipes-extended/texinfo/texinfo_4.13a.bb
index f9e566b..50892ce 100644
--- a/meta/recipes-extended/texinfo/texinfo_4.13a.bb
+++ b/meta/recipes-extended/texinfo/texinfo_4.13a.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "http://www.gnu.org/software/texinfo/"
SECTION = "console/utils"
LICENSE = "GPLv3+"
LIC_FILES_CHKSUM = "file://COPYING;md5=adefda309052235aa5d1e99ce7557010"
-PR = "r4"
+PR = "r5"
DEPENDS = "zlib ncurses texinfo-native"
DEPENDS_virtclass-native = "zlib-native ncurses-native"
@@ -23,6 +23,7 @@ SRC_URI = "${GNU_MIRROR}/texinfo/texinfo-${PV}.tar.gz \
file://disable-native-tools.patch \
file://link-zip.patch \
file://gettext-macros.patch \
+ file://texinfo_fix_for_automake-1.12.patch \
${TARGET_PATCH}"
SRC_URI[md5sum] = "71ba711519209b5fb583fed2b3d86fcb"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 17/28] libidn: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (15 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 16/28] texinfo: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 18/28] glew: " nitin.a.kamble
` (10 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../libidn/libidn_fix_for_automake-1.12.patch | 26 ++++++++++++++++++++
meta/recipes-extended/libidn/libidn_1.24.bb | 5 ++-
2 files changed, 29 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-extended/libidn/libidn/libidn_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/libidn/libidn/libidn_fix_for_automake-1.12.patch b/meta/recipes-extended/libidn/libidn/libidn_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..20afd25
--- /dev/null
+++ b/meta/recipes-extended/libidn/libidn/libidn_fix_for_automake-1.12.patch
@@ -0,0 +1,26 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libidn.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: libidn-1.24/configure.ac
+===================================================================
+--- libidn-1.24.orig/configure.ac
++++ libidn-1.24/configure.ac
+@@ -34,6 +34,10 @@ AC_SUBST(LT_CURRENT, 17)
+ AC_SUBST(LT_REVISION, 7)
+ AC_SUBST(LT_AGE, 6)
+
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
++
+ AC_PROG_CC
+ gl_EARLY
+ lgl_EARLY
diff --git a/meta/recipes-extended/libidn/libidn_1.24.bb b/meta/recipes-extended/libidn/libidn_1.24.bb
index 018f118..c6ecea7 100644
--- a/meta/recipes-extended/libidn/libidn_1.24.bb
+++ b/meta/recipes-extended/libidn/libidn_1.24.bb
@@ -10,11 +10,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=9c9d9d207a3468a696a03368913d360b \
file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504 \
file://lib/idna.h;endline=21;md5=7364f6a250728ffe16170f5e3ab37512 \
file://src/idn.c;endline=20;md5=7d7235e7951ac87d9dfac42e1b69d9cb"
-PR = "r0"
+PR = "r1"
inherit pkgconfig autotools gettext
-SRC_URI = "${GNU_MIRROR}/libidn/${BPN}-${PV}.tar.gz"
+SRC_URI = "${GNU_MIRROR}/libidn/${BPN}-${PV}.tar.gz \
+ file://libidn_fix_for_automake-1.12.patch "
SRC_URI[md5sum] = "764d7258eeb273941680499fab2c7367"
SRC_URI[sha256sum] = "da1708c6063ecb7951a0908e67df3eacdfe128b18edaa6cf6867d7b73b5f35ff"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 18/28] glew: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (16 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 17/28] libidn: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 19/28] findutils: " nitin.a.kamble
` (9 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../glew/files/glew_fix_for_automake-1.12.patch | 25 ++++++++++++++++++++
meta/recipes-graphics/glew/glew_1.7.0.bb | 3 +-
2 files changed, 27 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-graphics/glew/files/glew_fix_for_automake-1.12.patch
diff --git a/meta/recipes-graphics/glew/files/glew_fix_for_automake-1.12.patch b/meta/recipes-graphics/glew/files/glew_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..0707efb
--- /dev/null
+++ b/meta/recipes-graphics/glew/files/glew_fix_for_automake-1.12.patch
@@ -0,0 +1,25 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'libGLEW.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: glew-1.7.0/configure.ac
+===================================================================
+--- glew-1.7.0.orig/configure.ac
++++ glew-1.7.0/configure.ac
+@@ -14,6 +14,9 @@ LT_INIT
+ AC_PROG_CC
+ AC_PROG_INSTALL
+ AC_PROG_LN_S
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
+
+ # Checks for libraries.
+
diff --git a/meta/recipes-graphics/glew/glew_1.7.0.bb b/meta/recipes-graphics/glew/glew_1.7.0.bb
index e65663d..cdb778c 100644
--- a/meta/recipes-graphics/glew/glew_1.7.0.bb
+++ b/meta/recipes-graphics/glew/glew_1.7.0.bb
@@ -7,10 +7,11 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ac251558de685c6b9478d89be3149c2"
DEPENDS = "virtual/libx11 virtual/libgl libxext libxi libxmu"
-PR = "r0"
+PR = "r1"
SRC_URI = "${SOURCEFORGE_MIRROR}/project/glew/glew/${PV}/glew-${PV}.tgz \
file://autotools.patch \
+ file://glew_fix_for_automake-1.12.patch \
"
SRC_URI[md5sum] = "fb7a8bb79187ac98a90b57f0f27a3e84"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 19/28] findutils: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (17 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 18/28] glew: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 20/28] gawk: " nitin.a.kamble
` (8 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../findutils_fix_for_automake-1.12.patch | 22 ++++++++++++++++++++
meta/recipes-extended/findutils/findutils_4.4.2.bb | 6 +++-
2 files changed, 26 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-extended/findutils/findutils-4.4.2/findutils_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/findutils/findutils-4.4.2/findutils_fix_for_automake-1.12.patch b/meta/recipes-extended/findutils/findutils-4.4.2/findutils_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..d4a7e95
--- /dev/null
+++ b/meta/recipes-extended/findutils/findutils-4.4.2/findutils_fix_for_automake-1.12.patch
@@ -0,0 +1,22 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| configure.ac:80: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: findutils-4.4.2/configure.ac
+===================================================================
+--- findutils-4.4.2.orig/configure.ac
++++ findutils-4.4.2/configure.ac
+@@ -77,8 +77,6 @@ AC_PROG_CPP
+ dnl for gnulib
+ gl_EARLY
+
+-AM_C_PROTOTYPES
+-
+ AC_PROG_INSTALL
+ AC_PROG_RANLIB
+ dnl AC_PROG_LIBTOOL
diff --git a/meta/recipes-extended/findutils/findutils_4.4.2.bb b/meta/recipes-extended/findutils/findutils_4.4.2.bb
index d80511c..127eb4b 100644
--- a/meta/recipes-extended/findutils/findutils_4.4.2.bb
+++ b/meta/recipes-extended/findutils/findutils_4.4.2.bb
@@ -1,11 +1,13 @@
require findutils.inc
-PR = "r3"
+PR = "r4"
SRC_URI += "file://01-27017.patch \
file://02-28824.patch \
file://03-28872.patch \
- file://findutils_fix_for_x32.patch "
+ file://findutils_fix_for_x32.patch \
+ file://findutils_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "351cc4adb07d54877fa15f75fb77d39f"
SRC_URI[sha256sum] = "434f32d171cbc0a5e72cfc5372c6fc4cb0e681f8dce566a0de5b6fccd702b62a"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 20/28] gawk: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (18 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 19/28] findutils: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 21/28] lrzsz: " nitin.a.kamble
` (7 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../gawk/gawk/gawk_fix_for_automake-1.12.patch | 23 ++++++++++++++++++++
meta/recipes-extended/gawk/gawk_4.0.0.bb | 5 ++-
2 files changed, 26 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-extended/gawk/gawk/gawk_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/gawk/gawk/gawk_fix_for_automake-1.12.patch b/meta/recipes-extended/gawk/gawk/gawk_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..a2458a8
--- /dev/null
+++ b/meta/recipes-extended/gawk/gawk/gawk_fix_for_automake-1.12.patch
@@ -0,0 +1,23 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| configure.ac:120: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: gawk-4.0.0/configure.ac
+===================================================================
+--- gawk-4.0.0.orig/configure.ac
++++ gawk-4.0.0/configure.ac
+@@ -116,9 +116,6 @@ dnl Set the programming language for che
+ dnl this only needs to be set once, since everything is in C.
+ AC_LANG([C])
+
+-dnl check for C compiler for automake. Needed for dfa.h.
+-AM_C_PROTOTYPES
+-
+ dnl Cygwin doesn't like to get libs with full paths
+ dnl since that overrides linking against DLLs.
+ case `(uname) 2> /dev/null` in
diff --git a/meta/recipes-extended/gawk/gawk_4.0.0.bb b/meta/recipes-extended/gawk/gawk_4.0.0.bb
index 977feb9..3587e85 100644
--- a/meta/recipes-extended/gawk/gawk_4.0.0.bb
+++ b/meta/recipes-extended/gawk/gawk_4.0.0.bb
@@ -11,9 +11,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
RDEPENDS_gawk += "gawk-common"
RDEPENDS_pgawk += "gawk-common"
-PR = "r1"
+PR = "r2"
-SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz"
+SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz \
+ file://gawk_fix_for_automake-1.12.patch"
SRC_URI[md5sum] = "51e417b71287629940051e6f652c6492"
SRC_URI[sha256sum] = "c3a7cf7d976e05c6a1d8a9b3f14fa55d4304707408ddafb1396212653ea00be5"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 21/28] lrzsz: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (19 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 20/28] gawk: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 22/28] minicom: " nitin.a.kamble
` (6 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../lrzsz_fix_for_automake-1.12.patch | 49 ++++++++++++++++++++
meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb | 6 ++-
2 files changed, 53 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-bsp/lrzsz/lrzsz-0.12.20/lrzsz_fix_for_automake-1.12.patch
diff --git a/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/lrzsz_fix_for_automake-1.12.patch b/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/lrzsz_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..b4529f4
--- /dev/null
+++ b/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/lrzsz_fix_for_automake-1.12.patch
@@ -0,0 +1,49 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| configure.in:95: error: automatic de-ANSI-fication support has been removed
+...
+| lib/Makefile.am:3: error: automatic de-ANSI-fication support has been removed
+| lib/Makefile.am: installing './depcomp'
+| src/Makefile.am:11: error: automatic de-ANSI-fication support has been removed
+
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: lrzsz-0.12.20/configure.in
+===================================================================
+--- lrzsz-0.12.20.orig/configure.in
++++ lrzsz-0.12.20/configure.in
+@@ -92,7 +92,6 @@ AC_PROG_RANLIB
+ AC_ISC_POSIX
+ AC_AIX
+ AC_MINIX
+-AM_C_PROTOTYPES
+ AC_C_CONST
+ AC_C_INLINE
+
+Index: lrzsz-0.12.20/lib/Makefile.am
+===================================================================
+--- lrzsz-0.12.20.orig/lib/Makefile.am
++++ lrzsz-0.12.20/lib/Makefile.am
+@@ -1,6 +1,5 @@
+ noinst_LIBRARIES=libzmodem.a
+ CFLAGS=@CFLAGS@
+-AUTOMAKE_OPTIONS=ansi2knr
+
+ EXTRA_DIST = alloca.c ansi2knr.1 ansi2knr.c \
+ getopt.c getopt1.c mkdir.c mktime.c \
+Index: lrzsz-0.12.20/src/Makefile.am
+===================================================================
+--- lrzsz-0.12.20.orig/src/Makefile.am
++++ lrzsz-0.12.20/src/Makefile.am
+@@ -8,7 +8,6 @@ CFLAGS=@CFLAGS@
+ DISTCLEAN_FILES=lrzszbug
+
+ LDADD = ../lib/libzmodem.a @LIBINTL@
+-AUTOMAKE_OPTIONS=ansi2knr
+ EXTRA_DIST = ansi2knr.1 ansi2knr.c lrzszbug.in
+ INCLUDES = -I.. -I$(srcdir) -I$(top_srcdir)/src -I../intl -I$(top_srcdir)/lib
+ #DEFS = -DLOCALEDIR=\"$(localedir)\" -DOS=\"@host_os@\" -DCPU=\"@host_cpu@\"
diff --git a/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
index 7f86157..e76f36a 100644
--- a/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
+++ b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb
@@ -10,12 +10,14 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
file://src/lrz.c;beginline=1;endline=10;md5=5276956373ff7d8758837f6399a1045f"
SECTION = "console/network"
DEPENDS = ""
-PR = "r4"
+PR = "r5"
SRC_URI = "http://www.ohse.de/uwe/releases/lrzsz-${PV}.tar.gz \
file://autotools.patch \
file://makefile.patch \
- file://gettext.patch"
+ file://gettext.patch \
+ file://lrzsz_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "b5ce6a74abc9b9eb2af94dffdfd372a4"
SRC_URI[sha256sum] = "c28b36b14bddb014d9e9c97c52459852f97bd405f89113f30bee45ed92728ff1"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 22/28] minicom: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (20 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 21/28] lrzsz: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 23/28] lighttpd: " nitin.a.kamble
` (5 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../minicom_fix_for_automake-1.12.patch | 21 ++++++++++++++++++++
meta/recipes-extended/minicom/minicom_2.6.1.bb | 3 ++
2 files changed, 24 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-extended/minicom/minicom-2.6.1/minicom_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/minicom/minicom-2.6.1/minicom_fix_for_automake-1.12.patch b/meta/recipes-extended/minicom/minicom-2.6.1/minicom_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..aba6298
--- /dev/null
+++ b/meta/recipes-extended/minicom/minicom-2.6.1/minicom_fix_for_automake-1.12.patch
@@ -0,0 +1,21 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| configure.in:193: error: automatic de-ANSI-fication support has been removed
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: minicom-2.6.1/configure.in
+===================================================================
+--- minicom-2.6.1.orig/configure.in
++++ minicom-2.6.1/configure.in
+@@ -190,7 +190,6 @@ AC_CHECK_HEADERS(stdarg.h varargs.h term
+
+ dnl Checks for typedefs, structures, and compiler characteristics.
+ AC_C_CONST
+-AM_C_PROTOTYPES
+ AC_TYPE_UID_T
+ AC_TYPE_MODE_T
+ AC_TYPE_PID_T
diff --git a/meta/recipes-extended/minicom/minicom_2.6.1.bb b/meta/recipes-extended/minicom/minicom_2.6.1.bb
index 3a9f934..b54853d 100644
--- a/meta/recipes-extended/minicom/minicom_2.6.1.bb
+++ b/meta/recipes-extended/minicom/minicom_2.6.1.bb
@@ -6,8 +6,11 @@ LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=420477abc567404debca0a2a1cb6b645 \
file://src/minicom.h;beginline=1;endline=12;md5=a58838cb709f0db517f4e42730c49e81"
+PR = "r1"
+
SRC_URI = "http://alioth.debian.org/frs/download.php/3700/minicom-${PV}.tar.gz \
file://rename-conflicting-functions.patch \
+ file://minicom_fix_for_automake-1.12.patch \
"
# file://gcc4-scope.patch
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 23/28] lighttpd: fix build with automake 1.12
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (21 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 22/28] minicom: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 24/28] tar: fix build nitin.a.kamble
` (4 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../files/lighttpd_fix_for_automake-1.12.patch | 37 ++++++++++++++++++++
meta/recipes-extended/lighttpd/lighttpd_1.4.30.bb | 5 ++-
2 files changed, 40 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-extended/lighttpd/files/lighttpd_fix_for_automake-1.12.patch
diff --git a/meta/recipes-extended/lighttpd/files/lighttpd_fix_for_automake-1.12.patch b/meta/recipes-extended/lighttpd/files/lighttpd_fix_for_automake-1.12.patch
new file mode 100644
index 0000000..42451b8
--- /dev/null
+++ b/meta/recipes-extended/lighttpd/files/lighttpd_fix_for_automake-1.12.patch
@@ -0,0 +1,37 @@
+Upstream-Status: Pending
+
+This patch fixes following issue with automake 1.12
+
+| configure.ac:42: error: automatic de-ANSI-fication support has been removed
+...
+| automake: warnings are treated as errors
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: warning: 'liblightcomp.la': linking libtool libraries using a non-POSIX
+| /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
+
+Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
+2012/05/03
+
+Index: lighttpd-1.4.30/configure.ac
+===================================================================
+--- lighttpd-1.4.30.orig/configure.ac
++++ lighttpd-1.4.30/configure.ac
+@@ -24,6 +24,11 @@ dnl AC_PROG_CXX
+ AC_PROG_LN_S
+ AC_PROG_MAKE_SET
+
++# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
++m4_pattern_allow([AM_PROG_AR])
++AM_PROG_AR
++
++
+ dnl check environment
+ AC_AIX
+ AC_ISC_POSIX
+@@ -39,7 +44,6 @@ AM_CONDITIONAL(NO_RDYNAMIC, test x$NO_RD
+ AC_EXEEXT
+
+ dnl more automake stuff
+-AM_C_PROTOTYPES
+
+ dnl libtool
+ AC_DISABLE_STATIC
diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.30.bb b/meta/recipes-extended/lighttpd/lighttpd_1.4.30.bb
index 3ae3867..161c0d9 100644
--- a/meta/recipes-extended/lighttpd/lighttpd_1.4.30.bb
+++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.30.bb
@@ -16,13 +16,14 @@ RDEPENDS_${PN} += " \
lighttpd-module-staticfile \
"
-PR = "r0"
+PR = "r1"
SRC_URI = "http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${PV}.tar.bz2 \
file://index.html.lighttpd \
file://lighttpd.conf \
file://lighttpd \
-"
+ file://lighttpd_fix_for_automake-1.12.patch \
+ "
SRC_URI[md5sum] = "63f9df52dcae0ab5689a95c99c54e48a"
SRC_URI[sha256sum] = "0d795597e4666dbf6ffe44b4a42f388ddb44736ddfab0b1ac091e5bb35212c2d"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 24/28] tar: fix build
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (22 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 23/28] lighttpd: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 25/28] libgcrypt: " nitin.a.kamble
` (3 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Avoid this error:
| rmdir: failed to remove `/srv/home/nitin/builds/build-gcc47/tmp/work/i586-poky-linux/tar-1.26-r1/image/usr/sbin/': No such file or directory
NOTE: package tar-1.26-r1: task do_install: Failed
no PR bump as no change in the output.
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
meta/recipes-extended/tar/tar.inc | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-extended/tar/tar.inc b/meta/recipes-extended/tar/tar.inc
index 0533b82..5c2325a 100644
--- a/meta/recipes-extended/tar/tar.inc
+++ b/meta/recipes-extended/tar/tar.inc
@@ -18,8 +18,12 @@ do_install () {
do_install_extra () {
install -d ${D}${base_bindir}
mv ${D}${bindir}/tar ${D}${base_bindir}/tar.${PN}
- rmdir ${D}${bindir}/
- rmdir ${D}${sbindir}/
+ if [ -d ${D}${bindir}/ ] ; then
+ rmdir ${D}${bindir}/
+ fi
+ if [ -d ${D}${sbindir}/ ] ; then
+ rmdir ${D}${sbindir}/
+ fi
mv ${D}${libexecdir}/rmt ${D}${libexecdir}/rmt.${PN}
}
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 25/28] libgcrypt: fix build
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (23 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 24/28] tar: fix build nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 26/28] gpgme: " nitin.a.kamble
` (2 subsequent siblings)
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
avoid this issue:
| rmdir: failed to remove `/srv/home/nitin/builds/build-gcc47/tmp/work/i586-poky-linux/libgcrypt-1.5.0-r0/image/usr/sbin': No such file or directory
NOTE: package libgcrypt-1.5.0-r0: task do_install: Failed
no PR bump as no change in the output
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
meta/recipes-support/libgcrypt/libgcrypt.inc | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-support/libgcrypt/libgcrypt.inc b/meta/recipes-support/libgcrypt/libgcrypt.inc
index a890188..012f36a 100644
--- a/meta/recipes-support/libgcrypt/libgcrypt.inc
+++ b/meta/recipes-support/libgcrypt/libgcrypt.inc
@@ -23,7 +23,9 @@ do_install_append() {
install -m 0644 ${S}/src/libgcrypt.pc ${D}/${libdir}/pkgconfig/
# Remove empty sbin directory since we don't build the daemon that would install there
- rmdir ${D}${sbindir}
+ if [ -d ${D}${sbindir} ] ; then
+ rmdir ${D}${sbindir}
+ fi
}
ARM_INSTRUCTION_SET = "arm"
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 26/28] gpgme: fix build
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (24 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 25/28] libgcrypt: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 27/28] telepathy-glib: " nitin.a.kamble
2012-05-03 18:15 ` [PATCH 28/28] xf86-video-vmware: fix build issue nitin.a.kamble
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
avoid this issue:
| rmdir: failed to remove `/srv/home/nitin/builds/build-gcc47/tmp/wERROR: Function failed: do_install (see /srv/home/nitin/builds/build-gcc47/tmp/work/i586-poky-linux/gpgme-1.3.1-r1/temp/log.do_install.36763 for further information)
| ork/i586-poky-linux/gpgme-1.3.1-r1/image/usr/libexec': No such file or directory
NOTE: package gpgme-1.3.1-r1: task do_install: Failed
no PR bump as no change in the output
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
meta/recipes-support/gpgme/gpgme_1.3.1.bb | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-support/gpgme/gpgme_1.3.1.bb b/meta/recipes-support/gpgme/gpgme_1.3.1.bb
index 4bcb57a..88f6d28 100644
--- a/meta/recipes-support/gpgme/gpgme_1.3.1.bb
+++ b/meta/recipes-support/gpgme/gpgme_1.3.1.bb
@@ -28,5 +28,7 @@ FILES_${PN} = "${libdir}/libgpgme.so.*"
FILES_${PN}-dev += "${bindir}/gpgme-config ${datadir}/common-lisp/source/gpgme/*"
do_install_append() {
- rmdir ${D}/usr/libexec
+ if [ -d ${D}/usr/libexec ] ; then
+ rmdir ${D}/usr/libexec
+ fi
}
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 27/28] telepathy-glib: fix build
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (25 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 26/28] gpgme: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
2012-05-03 18:15 ` [PATCH 28/28] xf86-video-vmware: fix build issue nitin.a.kamble
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
avoid this issue:
| rmdir: failed to remove `/srv/home/nitin/builds/build-gcc47/tmp/work/i586-poky-linux/telepathy-glib-0.18.1-r0/image/usr/bin': No such file or directory
NOTE: package telepathy-glib-0.18.1-r0: task do_install: Failed
no PR bump as no change in the output
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../telepathy/telepathy-glib_0.18.1.bb | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-connectivity/telepathy/telepathy-glib_0.18.1.bb b/meta/recipes-connectivity/telepathy/telepathy-glib_0.18.1.bb
index 81da5f8..296b978 100644
--- a/meta/recipes-connectivity/telepathy/telepathy-glib_0.18.1.bb
+++ b/meta/recipes-connectivity/telepathy/telepathy-glib_0.18.1.bb
@@ -18,7 +18,13 @@ FILES_${PN} += "${datadir}/telepathy \
${datadir}/dbus-1"
do_install_append() {
- rmdir ${D}${bindir}
- rmdir ${D}${libexecdir}
- rmdir ${D}${servicedir}
+ if [ -d ${D}${bindir} ] ; then
+ rmdir ${D}${bindir}
+ fi
+ if [ -d ${D}${libexecdir} ] ; then
+ rmdir ${D}${libexecdir}
+ fi
+ if [ -d ${D}${servicedir} ] ; then
+ rmdir ${D}${servicedir}
+ fi
}
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread* [PATCH 28/28] xf86-video-vmware: fix build issue
2012-05-03 18:15 [PATCH 00/28] various recipe upgrades & fixes nitin.a.kamble
` (26 preceding siblings ...)
2012-05-03 18:15 ` [PATCH 27/28] telepathy-glib: " nitin.a.kamble
@ 2012-05-03 18:15 ` nitin.a.kamble
27 siblings, 0 replies; 29+ messages in thread
From: nitin.a.kamble @ 2012-05-03 18:15 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Fixes this build issue:
| rmdir: failed to remove
`/srv/home/nitin/builds/build-gcc47/tmp/work/i586-poky-linux/xf86-video-vmware-2_12.0.1-r17.1/image/usr/bin':
No such file or directory
NOTE: package xf86-video-vmware-2_12.0.1-r17.1: task do_install: Failed
No PR bump as no change in the output.
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
.../xorg-driver/xf86-video-vmware_12.0.1.bb | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-graphics/xorg-driver/xf86-video-vmware_12.0.1.bb b/meta/recipes-graphics/xorg-driver/xf86-video-vmware_12.0.1.bb
index a5655fc..87336e3 100644
--- a/meta/recipes-graphics/xorg-driver/xf86-video-vmware_12.0.1.bb
+++ b/meta/recipes-graphics/xorg-driver/xf86-video-vmware_12.0.1.bb
@@ -18,5 +18,7 @@ COMPATIBLE_HOST = '(i.86.*-linux|x86_64.*-linux)'
do_install_append () {
# Remove useless empty directory
- rmdir ${D}${bindir}
+ if [ -d ${D}${bindir} ]; then
+ rmdir ${D}${bindir}
+ fi
}
--
1.7.7
^ permalink raw reply related [flat|nested] 29+ messages in thread