public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [PATCH 0/4] denzil pull request
@ 2013-01-27 23:39 Scott Garman
  2013-01-27 23:39 ` [PATCH 1/4] bison: move remove-gets.patch to BASE_SRC_URI, it's needed for bison-native too if host has (e)glibc-2.16 Scott Garman
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Scott Garman @ 2013-01-27 23:39 UTC (permalink / raw)
  To: openembedded-core

Hello,

This is a pull request for denzil. It includes a bitbake fix from
MatthewM (poky-based tree only) and some Fedora 18 build fixes from
Koen.

Build status: 100% Green.

nightly-x86: Green
http://autobuilder.yoctoproject.org:8010/builders/nightly-x86/builds/885

nightly-x86-lsb: Green
http://autobuilder.yoctoproject.org:8010/builders/nightly-x86-lsb/builds/214

nightly-x86-64: Green
http://autobuilder.yoctoproject.org:8010/builders/nightly-x86-64/builds/810

nightly-x86-64-lsb: Green
http://autobuilder.yoctoproject.org:8010/builders/nightly-x86-64-lsb/builds/209

nightly-arm: Green
http://autobuilder.yoctoproject.org:8010/builders/nightly-arm/builds/814

nightly-arm-lsb: Green
http://autobuilder.yoctoproject.org:8010/builders/nightly-arm-lsb/builds/207

nightly-mips: Green
http://autobuilder.yoctoproject.org:8010/builders/nightly-mips/builds/786

nightly-mips-lsb: Green
http://autobuilder.yoctoproject.org:8010/builders/nightly-mips-lsb/builds/213

nightly-ppc: Green
http://autobuilder.yoctoproject.org:8010/builders/nightly-ppc/builds/765

nightly-ppc-lsb: Green
http://autobuilder.yoctoproject.org:8010/builders/nightly-ppc-lsb/builds/217

nightly-non-gpl3: Green
http://autobuilder.yoctoproject.org:8010/builders/nightly-non-gpl3/builds/443

nightly-multilib: Green
http://autobuilder.yoctoproject.org:8010/builders/nightly-multilib/builds/444

nightly-tiny: Green
http://autobuilder.yoctoproject.org:8010/builders/nightly-tiny/builds/420

build-appliance: Green
http://autobuilder.yoctoproject.org:8010/builders/build-appliance/builds/220

eclipse-plugin: Green
http://autobuilder.yoctoproject.org:8010/builders/eclipse-plugin/builds/763


The following changes since commit 0a9e8bf35afd5990c1b586bba5eb68f643458a4b:

  build-appliance-image: Bump SRCREV (2013-01-04 22:23:34 +0000)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib sgarman/denzil-next
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgarman/denzil-next

Martin Jansa (1):
  bison: move remove-gets.patch to BASE_SRC_URI, it's needed for
    bison-native too if host has (e)glibc-2.16

Nitin A Kamble (1):
  libtasn1: fix build with automake 1.12

Saul Wold (2):
  libtasn1: Update to 2.12
  libtasn1: Upgrade to 2.13

 meta/recipes-devtools/bison/bison_2.5.bb           |    4 +--
 .../libtasn1/libtasn1_fix_for_automake_1.12.patch  |   28 ++++++++++++++++++++
 .../gnutls/{libtasn1_2.11.bb => libtasn1_2.13.bb}  |    8 +++---
 3 files changed, 35 insertions(+), 5 deletions(-)
 create mode 100644 meta/recipes-support/gnutls/libtasn1/libtasn1_fix_for_automake_1.12.patch
 rename meta/recipes-support/gnutls/{libtasn1_2.11.bb => libtasn1_2.13.bb} (65%)

-- 
1.7.9.5




^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/4] bison: move remove-gets.patch to BASE_SRC_URI, it's needed for bison-native too if host has (e)glibc-2.16
  2013-01-27 23:39 [PATCH 0/4] denzil pull request Scott Garman
@ 2013-01-27 23:39 ` Scott Garman
  2013-01-27 23:39 ` [PATCH 2/4] libtasn1: Update to 2.12 Scott Garman
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Scott Garman @ 2013-01-27 23:39 UTC (permalink / raw)
  To: openembedded-core

From: Martin Jansa <martin.jansa@gmail.com>

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/recipes-devtools/bison/bison_2.5.bb |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/bison/bison_2.5.bb b/meta/recipes-devtools/bison/bison_2.5.bb
index e3f9273..4d82723 100644
--- a/meta/recipes-devtools/bison/bison_2.5.bb
+++ b/meta/recipes-devtools/bison/bison_2.5.bb
@@ -9,15 +9,15 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 SECTION = "devel"
 DEPENDS = "bison-native flex-native"
 
-PR = "r2"
+PR = "r3"
 
 BASE_SRC_URI = "${GNU_MIRROR}/bison/bison-${PV}.tar.gz \
 	   file://m4.patch \
+           file://remove-gets.patch \
 	  "
 
 SRC_URI = "${BASE_SRC_URI} \
            file://fix_cross_manpage_building.patch \
-           file://remove-gets.patch \
           "
 
 SRC_URI[md5sum] = "687e1dcd29452789d34eaeea4c25abe4"
-- 
1.7.9.5




^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/4] libtasn1: Update to 2.12
  2013-01-27 23:39 [PATCH 0/4] denzil pull request Scott Garman
  2013-01-27 23:39 ` [PATCH 1/4] bison: move remove-gets.patch to BASE_SRC_URI, it's needed for bison-native too if host has (e)glibc-2.16 Scott Garman
@ 2013-01-27 23:39 ` Scott Garman
  2013-01-27 23:39 ` [PATCH 3/4] libtasn1: fix build with automake 1.12 Scott Garman
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Scott Garman @ 2013-01-27 23:39 UTC (permalink / raw)
  To: openembedded-core

From: Saul Wold <sgw@linux.intel.com>

Use the GUN_MIRROR correctly

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../gnutls/{libtasn1_2.11.bb => libtasn1_2.12.bb}  |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-support/gnutls/{libtasn1_2.11.bb => libtasn1_2.12.bb} (71%)

diff --git a/meta/recipes-support/gnutls/libtasn1_2.11.bb b/meta/recipes-support/gnutls/libtasn1_2.12.bb
similarity index 71%
rename from meta/recipes-support/gnutls/libtasn1_2.11.bb
rename to meta/recipes-support/gnutls/libtasn1_2.12.bb
index 1a87fc8..aae409e 100644
--- a/meta/recipes-support/gnutls/libtasn1_2.11.bb
+++ b/meta/recipes-support/gnutls/libtasn1_2.12.bb
@@ -10,10 +10,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
 
 PR = "r0"
 
-SRC_URI = "ftp://ftp.gnu.org/gnu/libtasn1/libtasn1-${PV}.tar.gz"
+SRC_URI = "${GNU_MIRROR}/libtasn1/libtasn1-${PV}.tar.gz"
 
-SRC_URI[md5sum] = "ee8076752f2afcbcd12f3dd9bc622748"
-SRC_URI[sha256sum] = "f4d43c77c12ceabf1a72911472fc8c67e43728b328dfb1b83fd519ed5d079afb"
+SRC_URI[md5sum] = "4eba39fb962d6cf5a370267eae8ff52b"
+SRC_URI[sha256sum] = "0e257a8a01c80e464f73262e13c226e04a15165c2ad087a340f53902281a1c5d"
 
 inherit autotools binconfig lib_package
 
-- 
1.7.9.5




^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 3/4] libtasn1: fix build with automake 1.12
  2013-01-27 23:39 [PATCH 0/4] denzil pull request Scott Garman
  2013-01-27 23:39 ` [PATCH 1/4] bison: move remove-gets.patch to BASE_SRC_URI, it's needed for bison-native too if host has (e)glibc-2.16 Scott Garman
  2013-01-27 23:39 ` [PATCH 2/4] libtasn1: Update to 2.12 Scott Garman
@ 2013-01-27 23:39 ` Scott Garman
  2013-01-27 23:39 ` [PATCH 4/4] libtasn1: Upgrade to 2.13 Scott Garman
  2013-01-28 12:45 ` [PATCH 0/4] denzil pull request Richard Purdie
  4 siblings, 0 replies; 6+ messages in thread
From: Scott Garman @ 2013-01-27 23:39 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.9.5




^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 4/4] libtasn1: Upgrade to 2.13
  2013-01-27 23:39 [PATCH 0/4] denzil pull request Scott Garman
                   ` (2 preceding siblings ...)
  2013-01-27 23:39 ` [PATCH 3/4] libtasn1: fix build with automake 1.12 Scott Garman
@ 2013-01-27 23:39 ` Scott Garman
  2013-01-28 12:45 ` [PATCH 0/4] denzil pull request Richard Purdie
  4 siblings, 0 replies; 6+ messages in thread
From: Scott Garman @ 2013-01-27 23:39 UTC (permalink / raw)
  To: openembedded-core

From: Saul Wold <sgw@linux.intel.com>

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../gnutls/{libtasn1_2.12.bb => libtasn1_2.13.bb}  |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-support/gnutls/{libtasn1_2.12.bb => libtasn1_2.13.bb} (80%)

diff --git a/meta/recipes-support/gnutls/libtasn1_2.12.bb b/meta/recipes-support/gnutls/libtasn1_2.13.bb
similarity index 80%
rename from meta/recipes-support/gnutls/libtasn1_2.12.bb
rename to meta/recipes-support/gnutls/libtasn1_2.13.bb
index d0b4191..891c5b6 100644
--- a/meta/recipes-support/gnutls/libtasn1_2.12.bb
+++ b/meta/recipes-support/gnutls/libtasn1_2.13.bb
@@ -8,14 +8,14 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
                     file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c \
                     file://README;endline=8;md5=c3803a3e8ca5ab5eb1e5912faa405351"
 
-PR = "r1"
+PR = "r0"
 
 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"
+SRC_URI[md5sum] = "df27eaddcc46172377e6b907e33ddc83"
+SRC_URI[sha256sum] = "a56e46483d1d42fe44ba58c9758620844042468d7c2d75f6318cdf3222745a91"
 
 inherit autotools binconfig lib_package
 
-- 
1.7.9.5




^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/4] denzil pull request
  2013-01-27 23:39 [PATCH 0/4] denzil pull request Scott Garman
                   ` (3 preceding siblings ...)
  2013-01-27 23:39 ` [PATCH 4/4] libtasn1: Upgrade to 2.13 Scott Garman
@ 2013-01-28 12:45 ` Richard Purdie
  4 siblings, 0 replies; 6+ messages in thread
From: Richard Purdie @ 2013-01-28 12:45 UTC (permalink / raw)
  To: Scott Garman; +Cc: openembedded-core

On Sun, 2013-01-27 at 15:39 -0800, Scott Garman wrote:
> Hello,
> 
> This is a pull request for denzil. It includes a bitbake fix from
> MatthewM (poky-based tree only) and some Fedora 18 build fixes from
> Koen.
> 
> The following changes since commit 0a9e8bf35afd5990c1b586bba5eb68f643458a4b:
> 
>   build-appliance-image: Bump SRCREV (2013-01-04 22:23:34 +0000)
> 
> are available in the git repository at:
> 
>   git://git.openembedded.org/openembedded-core-contrib sgarman/denzil-next
>   http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgarman/denzil-next
> 
> Martin Jansa (1):
>   bison: move remove-gets.patch to BASE_SRC_URI, it's needed for
>     bison-native too if host has (e)glibc-2.16
> 
> Nitin A Kamble (1):
>   libtasn1: fix build with automake 1.12
> 
> Saul Wold (2):
>   libtasn1: Update to 2.12
>   libtasn1: Upgrade to 2.13

Merged to denzil, thanks.

Richard




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-01-28 13:01 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-27 23:39 [PATCH 0/4] denzil pull request Scott Garman
2013-01-27 23:39 ` [PATCH 1/4] bison: move remove-gets.patch to BASE_SRC_URI, it's needed for bison-native too if host has (e)glibc-2.16 Scott Garman
2013-01-27 23:39 ` [PATCH 2/4] libtasn1: Update to 2.12 Scott Garman
2013-01-27 23:39 ` [PATCH 3/4] libtasn1: fix build with automake 1.12 Scott Garman
2013-01-27 23:39 ` [PATCH 4/4] libtasn1: Upgrade to 2.13 Scott Garman
2013-01-28 12:45 ` [PATCH 0/4] denzil pull request Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox