Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/2] A couple of fixes
@ 2012-02-24 18:59 Saul Wold
  2012-02-24 18:59 ` [PATCH 1/2] gnupg: Update checksum, fix configure and compliation issues Saul Wold
  2012-02-24 18:59 ` [PATCH 2/2] syslinux: Package unpackaged files in -misc Saul Wold
  0 siblings, 2 replies; 9+ messages in thread
From: Saul Wold @ 2012-02-24 18:59 UTC (permalink / raw)
  To: openembedded-core

Richard,

These patches address a couple of issues, the gnupg fixes the GPLv2 version
of that recipe, it was orignally pushed (by me as a mistake, got pulled too 
soon).  This version is correct and builds.

The syslinux change removes about 60 WARNINGS by packaging the remaining files
in syslinux-misc

Sau!

The following changes since commit 22194a04f224864dd687660e351a3a10da1f06fa:

  scripts/hob: Launch the new hob (2012-02-24 18:05:46 +0000)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib sgw/fix
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/fix

Saul Wold (2):
  gnupg: Update checksum, fix configure and compliation issues
  syslinux: Package unpackaged files in -misc

 meta/recipes-devtools/syslinux/syslinux_4.03.bb    |    3 ++-
 .../gnupg/gnupg-1.4.7/configure.patch              |   17 +++++++++++++++++
 meta/recipes-support/gnupg/gnupg_1.4.7.bb          |   17 +++++++++--------
 3 files changed, 28 insertions(+), 9 deletions(-)
 create mode 100644 meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch

-- 
1.7.7.6




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

* [PATCH 1/2] gnupg: Update checksum, fix configure and compliation issues
  2012-02-24 18:59 [PATCH 0/2] A couple of fixes Saul Wold
@ 2012-02-24 18:59 ` Saul Wold
  2012-02-24 19:08   ` Martin Jansa
  2012-02-24 18:59 ` [PATCH 2/2] syslinux: Package unpackaged files in -misc Saul Wold
  1 sibling, 1 reply; 9+ messages in thread
From: Saul Wold @ 2012-02-24 18:59 UTC (permalink / raw)
  To: openembedded-core

This recipe was added, but did not have the correct
checksum information for the LIC_FILES_CHKSUM or the
SRC_URI.  Also disable Documetnation for now due to
older autotools issue.

[YOCTO #1966]

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../gnupg/gnupg-1.4.7/configure.patch              |   17 +++++++++++++++++
 meta/recipes-support/gnupg/gnupg_1.4.7.bb          |   17 +++++++++--------
 2 files changed, 26 insertions(+), 8 deletions(-)
 create mode 100644 meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch

diff --git a/meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch b/meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch
new file mode 100644
index 0000000..e005ac6
--- /dev/null
+++ b/meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch
@@ -0,0 +1,17 @@
+
+Upstream-Status: Inappropriate [configuration]
+
+Signed-off-by: Saul Wold <sgw@linux.intel.com>
+
+Index: gnupg-1.4.7/configure.ac
+===================================================================
+--- gnupg-1.4.7.orig/configure.ac
++++ gnupg-1.4.7/configure.ac
+@@ -827,7 +827,6 @@ else
+   AC_SUBST(USE_NLS)
+   AC_SUBST(USE_INCLUDED_LIBINTL)
+   AC_SUBST(BUILD_INCLUDED_LIBINTL)
+-  AM_PO_SUBDIRS
+ fi
+ 
+ if test "$try_extensions" = yes || test x"$card_support" = xyes ; then
diff --git a/meta/recipes-support/gnupg/gnupg_1.4.7.bb b/meta/recipes-support/gnupg/gnupg_1.4.7.bb
index daea5aa..f033659 100644
--- a/meta/recipes-support/gnupg/gnupg_1.4.7.bb
+++ b/meta/recipes-support/gnupg/gnupg_1.4.7.bb
@@ -5,18 +5,18 @@ SECTION = "console/utils"
 
 LICENSE = "GPLv2"
 
-LIC_FILES_CHKSUM = "file://COPYING;md5="
+LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a"
 
-PR = "r4"
+PR = "r5"
 
 SRC_URI = "ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-${PV}.tar.bz2 \
            file://long-long-thumb.patch \
-           file://mips_gcc4.4.patch"
+           file://configure.patch \
+           file://mips_gcc4.4.patch \
+           file://curl_typeof_fix_backport.patch"
 
-SRC_URI[md5sum] = "dcf7ed712997888d616e029637bfc303"
-SRC_URI[sha256sum] = "a2907f4432d67894e425e48ae85785dd60ecb01658c9682bcd96f5e91043bb38"
-
-S = "${WORKDIR}/gnupg-${PV}"
+SRC_URI[md5sum] = "b06a141cca5cd1a55bbdd25ab833303c"
+SRC_URI[sha256sum] = "69d18b7d193f62ca27ed4febcb4c9044aa0c95305d3258fe902e2fae5fc6468d"
 
 inherit autotools gettext
 
@@ -73,7 +73,8 @@ EXTRA_OECONF = "--disable-ldap \
 		--with-bzip2=${STAGING_LIBDIR}/.. \
 		--disable-selinux-support \
                 --with-readline=${STAGING_LIBDIR}/.. \
-                ac_cv_sys_symbol_underscore=yes"
+                ac_cv_sys_symbol_underscore=no \
+		"
 
 do_install () {
 	autotools_do_install
-- 
1.7.7.6




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

* [PATCH 2/2] syslinux: Package unpackaged files in -misc
  2012-02-24 18:59 [PATCH 0/2] A couple of fixes Saul Wold
  2012-02-24 18:59 ` [PATCH 1/2] gnupg: Update checksum, fix configure and compliation issues Saul Wold
@ 2012-02-24 18:59 ` Saul Wold
  2012-02-28 14:04   ` Otavio Salvador
  1 sibling, 1 reply; 9+ messages in thread
From: Saul Wold @ 2012-02-24 18:59 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-devtools/syslinux/syslinux_4.03.bb |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/syslinux/syslinux_4.03.bb b/meta/recipes-devtools/syslinux/syslinux_4.03.bb
index 97bf7ce..862ea8b 100644
--- a/meta/recipes-devtools/syslinux/syslinux_4.03.bb
+++ b/meta/recipes-devtools/syslinux/syslinux_4.03.bb
@@ -46,7 +46,7 @@ do_install() {
 	install -m 644 ${S}/core/ldlinux.bss ${D}${libdir}/syslinux/
 }
 
-PACKAGES =+ "${PN}-extlinux ${PN}-mbr ${PN}-chain ${PN}-pxelinux ${PN}-isolinux"
+PACKAGES =+ "${PN}-extlinux ${PN}-mbr ${PN}-chain ${PN}-pxelinux ${PN}-isolinux ${PN}-misc"
 
 RDEPENDS_${PN} += "mtools"
 
@@ -58,5 +58,6 @@ FILES_${PN}-isolinux = "${libdir}/${PN}/isolinux.bin"
 FILES_${PN}-pxelinux = "${libdir}/${PN}/pxelinux.0"
 FILES_${PN}-dev += "${datadir}/${PN}/com32/lib*${SOLIBS} ${datadir}/${PN}/com32/include ${datadir}/${PN}/com32/com32.ld"
 FILES_${PN}-staticdev += "${datadir}/${PN}/com32/lib*.a"
+FILES_${PN}-misc = "${libdir}/${PN}/* ${bindir}/*"
 
 BBCLASSEXTEND = "native"
-- 
1.7.7.6




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

* Re: [PATCH 1/2] gnupg: Update checksum, fix configure and compliation issues
  2012-02-24 18:59 ` [PATCH 1/2] gnupg: Update checksum, fix configure and compliation issues Saul Wold
@ 2012-02-24 19:08   ` Martin Jansa
  2012-02-24 19:37     ` Saul Wold
  0 siblings, 1 reply; 9+ messages in thread
From: Martin Jansa @ 2012-02-24 19:08 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 3521 bytes --]

On Fri, Feb 24, 2012 at 10:59:20AM -0800, Saul Wold wrote:
> This recipe was added, but did not have the correct
> checksum information for the LIC_FILES_CHKSUM or the
> SRC_URI.  Also disable Documetnation for now due to
> older autotools issue.

BTW: those checksums matches gnupg_1.4.10 which is available in
oe-classic and there is also similar patch (like mpfr from today)
for thumb issues in gnupg/mpi/longlong.h.

Maybe it would be worth updating from there if there isn't reason to
hold on 1.4.7.

Cheers,

> 
> [YOCTO #1966]
> 
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> ---
>  .../gnupg/gnupg-1.4.7/configure.patch              |   17 +++++++++++++++++
>  meta/recipes-support/gnupg/gnupg_1.4.7.bb          |   17 +++++++++--------
>  2 files changed, 26 insertions(+), 8 deletions(-)
>  create mode 100644 meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch
> 
> diff --git a/meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch b/meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch
> new file mode 100644
> index 0000000..e005ac6
> --- /dev/null
> +++ b/meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch
> @@ -0,0 +1,17 @@
> +
> +Upstream-Status: Inappropriate [configuration]
> +
> +Signed-off-by: Saul Wold <sgw@linux.intel.com>
> +
> +Index: gnupg-1.4.7/configure.ac
> +===================================================================
> +--- gnupg-1.4.7.orig/configure.ac
> ++++ gnupg-1.4.7/configure.ac
> +@@ -827,7 +827,6 @@ else
> +   AC_SUBST(USE_NLS)
> +   AC_SUBST(USE_INCLUDED_LIBINTL)
> +   AC_SUBST(BUILD_INCLUDED_LIBINTL)
> +-  AM_PO_SUBDIRS
> + fi
> + 
> + if test "$try_extensions" = yes || test x"$card_support" = xyes ; then
> diff --git a/meta/recipes-support/gnupg/gnupg_1.4.7.bb b/meta/recipes-support/gnupg/gnupg_1.4.7.bb
> index daea5aa..f033659 100644
> --- a/meta/recipes-support/gnupg/gnupg_1.4.7.bb
> +++ b/meta/recipes-support/gnupg/gnupg_1.4.7.bb
> @@ -5,18 +5,18 @@ SECTION = "console/utils"
>  
>  LICENSE = "GPLv2"
>  
> -LIC_FILES_CHKSUM = "file://COPYING;md5="
> +LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a"
>  
> -PR = "r4"
> +PR = "r5"
>  
>  SRC_URI = "ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-${PV}.tar.bz2 \
>             file://long-long-thumb.patch \
> -           file://mips_gcc4.4.patch"
> +           file://configure.patch \
> +           file://mips_gcc4.4.patch \
> +           file://curl_typeof_fix_backport.patch"
>  
> -SRC_URI[md5sum] = "dcf7ed712997888d616e029637bfc303"
> -SRC_URI[sha256sum] = "a2907f4432d67894e425e48ae85785dd60ecb01658c9682bcd96f5e91043bb38"
> -
> -S = "${WORKDIR}/gnupg-${PV}"
> +SRC_URI[md5sum] = "b06a141cca5cd1a55bbdd25ab833303c"
> +SRC_URI[sha256sum] = "69d18b7d193f62ca27ed4febcb4c9044aa0c95305d3258fe902e2fae5fc6468d"
>  
>  inherit autotools gettext
>  
> @@ -73,7 +73,8 @@ EXTRA_OECONF = "--disable-ldap \
>  		--with-bzip2=${STAGING_LIBDIR}/.. \
>  		--disable-selinux-support \
>                  --with-readline=${STAGING_LIBDIR}/.. \
> -                ac_cv_sys_symbol_underscore=yes"
> +                ac_cv_sys_symbol_underscore=no \
> +		"
>  
>  do_install () {
>  	autotools_do_install
> -- 
> 1.7.7.6
> 
> 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCH 1/2] gnupg: Update checksum, fix configure and compliation issues
  2012-02-24 19:08   ` Martin Jansa
@ 2012-02-24 19:37     ` Saul Wold
  2012-02-24 19:58       ` Martin Jansa
  0 siblings, 1 reply; 9+ messages in thread
From: Saul Wold @ 2012-02-24 19:37 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Martin Jansa

On 02/24/2012 11:08 AM, Martin Jansa wrote:
> On Fri, Feb 24, 2012 at 10:59:20AM -0800, Saul Wold wrote:
>> This recipe was added, but did not have the correct
>> checksum information for the LIC_FILES_CHKSUM or the
>> SRC_URI.  Also disable Documetnation for now due to
>> older autotools issue.
>
> BTW: those checksums matches gnupg_1.4.10 which is available in
> oe-classic and there is also similar patch (like mpfr from today)
> for thumb issues in gnupg/mpi/longlong.h.
>
I am kind of suprised and confused by this, how could the 1.4.10 which 
is a GPLv3 license have the same checksum as the 1.4.7 version.  I just 
verified (again) the md5sum of the 1.4.7 version and it's correct.

I also have the long-long-thumb.patch in this version, or is the same as 
the oe-classic version.

Are you suggesting I need something else?

> Maybe it would be worth updating from there if there isn't reason to
> hold on 1.4.7.
>
We need 1.4.7 because it's the last GPLv2 version.


Sau!

> Cheers,
>
>>
>> [YOCTO #1966]
>>
>> Signed-off-by: Saul Wold<sgw@linux.intel.com>
>> ---
>>   .../gnupg/gnupg-1.4.7/configure.patch              |   17 +++++++++++++++++
>>   meta/recipes-support/gnupg/gnupg_1.4.7.bb          |   17 +++++++++--------
>>   2 files changed, 26 insertions(+), 8 deletions(-)
>>   create mode 100644 meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch
>>
>> diff --git a/meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch b/meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch
>> new file mode 100644
>> index 0000000..e005ac6
>> --- /dev/null
>> +++ b/meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch
>> @@ -0,0 +1,17 @@
>> +
>> +Upstream-Status: Inappropriate [configuration]
>> +
>> +Signed-off-by: Saul Wold<sgw@linux.intel.com>
>> +
>> +Index: gnupg-1.4.7/configure.ac
>> +===================================================================
>> +--- gnupg-1.4.7.orig/configure.ac
>> ++++ gnupg-1.4.7/configure.ac
>> +@@ -827,7 +827,6 @@ else
>> +   AC_SUBST(USE_NLS)
>> +   AC_SUBST(USE_INCLUDED_LIBINTL)
>> +   AC_SUBST(BUILD_INCLUDED_LIBINTL)
>> +-  AM_PO_SUBDIRS
>> + fi
>> +
>> + if test "$try_extensions" = yes || test x"$card_support" = xyes ; then
>> diff --git a/meta/recipes-support/gnupg/gnupg_1.4.7.bb b/meta/recipes-support/gnupg/gnupg_1.4.7.bb
>> index daea5aa..f033659 100644
>> --- a/meta/recipes-support/gnupg/gnupg_1.4.7.bb
>> +++ b/meta/recipes-support/gnupg/gnupg_1.4.7.bb
>> @@ -5,18 +5,18 @@ SECTION = "console/utils"
>>
>>   LICENSE = "GPLv2"
>>
>> -LIC_FILES_CHKSUM = "file://COPYING;md5="
>> +LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a"
>>
>> -PR = "r4"
>> +PR = "r5"
>>
>>   SRC_URI = "ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-${PV}.tar.bz2 \
>>              file://long-long-thumb.patch \
>> -           file://mips_gcc4.4.patch"
>> +           file://configure.patch \
>> +           file://mips_gcc4.4.patch \
>> +           file://curl_typeof_fix_backport.patch"
>>
>> -SRC_URI[md5sum] = "dcf7ed712997888d616e029637bfc303"
>> -SRC_URI[sha256sum] = "a2907f4432d67894e425e48ae85785dd60ecb01658c9682bcd96f5e91043bb38"
>> -
>> -S = "${WORKDIR}/gnupg-${PV}"
>> +SRC_URI[md5sum] = "b06a141cca5cd1a55bbdd25ab833303c"
>> +SRC_URI[sha256sum] = "69d18b7d193f62ca27ed4febcb4c9044aa0c95305d3258fe902e2fae5fc6468d"
>>
>>   inherit autotools gettext
>>
>> @@ -73,7 +73,8 @@ EXTRA_OECONF = "--disable-ldap \
>>   		--with-bzip2=${STAGING_LIBDIR}/.. \
>>   		--disable-selinux-support \
>>                   --with-readline=${STAGING_LIBDIR}/.. \
>> -                ac_cv_sys_symbol_underscore=yes"
>> +                ac_cv_sys_symbol_underscore=no \
>> +		"
>>
>>   do_install () {
>>   	autotools_do_install
>> --
>> 1.7.7.6
>>
>>
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core



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

* Re: [PATCH 1/2] gnupg: Update checksum, fix configure and compliation issues
  2012-02-24 19:37     ` Saul Wold
@ 2012-02-24 19:58       ` Martin Jansa
  0 siblings, 0 replies; 9+ messages in thread
From: Martin Jansa @ 2012-02-24 19:58 UTC (permalink / raw)
  To: Saul Wold; +Cc: Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 4964 bytes --]

On Fri, Feb 24, 2012 at 11:37:11AM -0800, Saul Wold wrote:
> On 02/24/2012 11:08 AM, Martin Jansa wrote:
> > On Fri, Feb 24, 2012 at 10:59:20AM -0800, Saul Wold wrote:
> >> This recipe was added, but did not have the correct
> >> checksum information for the LIC_FILES_CHKSUM or the
> >> SRC_URI.  Also disable Documetnation for now due to
> >> older autotools issue.
> >
> > BTW: those checksums matches gnupg_1.4.10 which is available in
> > oe-classic and there is also similar patch (like mpfr from today)
> > for thumb issues in gnupg/mpi/longlong.h.
> >
> I am kind of suprised and confused by this, how could the 1.4.10 which 
> is a GPLv3 license have the same checksum as the 1.4.7 version.  I just 
> verified (again) the md5sum of the 1.4.7 version and it's correct.

I meant that those old (wrong) checksums were from 1.4.10 version, so I
wanted to point it out in case someone wanted to actually upgrade gnupg
recipe and forgot "git mv", but if 1.4.7 is last GPLv2 then someone
probably downgraded recipe from 1.4.10 to 1.4.7 and just forgot to
update checksums.

> I also have the long-long-thumb.patch in this version, or is the same as 
> the oe-classic version.

Ah sorry I haven't looked carefully enough.. yeah it's the same as
oe-classic has.

> Are you suggesting I need something else?

You're fine.. I need coffee or sleep :).

> > Maybe it would be worth updating from there if there isn't reason to
> > hold on 1.4.7.
> >
> We need 1.4.7 because it's the last GPLv2 version.

Cheers,

> >> Signed-off-by: Saul Wold<sgw@linux.intel.com>
> >> ---
> >>   .../gnupg/gnupg-1.4.7/configure.patch              |   17 +++++++++++++++++
> >>   meta/recipes-support/gnupg/gnupg_1.4.7.bb          |   17 +++++++++--------
> >>   2 files changed, 26 insertions(+), 8 deletions(-)
> >>   create mode 100644 meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch
> >>
> >> diff --git a/meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch b/meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch
> >> new file mode 100644
> >> index 0000000..e005ac6
> >> --- /dev/null
> >> +++ b/meta/recipes-support/gnupg/gnupg-1.4.7/configure.patch
> >> @@ -0,0 +1,17 @@
> >> +
> >> +Upstream-Status: Inappropriate [configuration]
> >> +
> >> +Signed-off-by: Saul Wold<sgw@linux.intel.com>
> >> +
> >> +Index: gnupg-1.4.7/configure.ac
> >> +===================================================================
> >> +--- gnupg-1.4.7.orig/configure.ac
> >> ++++ gnupg-1.4.7/configure.ac
> >> +@@ -827,7 +827,6 @@ else
> >> +   AC_SUBST(USE_NLS)
> >> +   AC_SUBST(USE_INCLUDED_LIBINTL)
> >> +   AC_SUBST(BUILD_INCLUDED_LIBINTL)
> >> +-  AM_PO_SUBDIRS
> >> + fi
> >> +
> >> + if test "$try_extensions" = yes || test x"$card_support" = xyes ; then
> >> diff --git a/meta/recipes-support/gnupg/gnupg_1.4.7.bb b/meta/recipes-support/gnupg/gnupg_1.4.7.bb
> >> index daea5aa..f033659 100644
> >> --- a/meta/recipes-support/gnupg/gnupg_1.4.7.bb
> >> +++ b/meta/recipes-support/gnupg/gnupg_1.4.7.bb
> >> @@ -5,18 +5,18 @@ SECTION = "console/utils"
> >>
> >>   LICENSE = "GPLv2"
> >>
> >> -LIC_FILES_CHKSUM = "file://COPYING;md5="
> >> +LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a"
> >>
> >> -PR = "r4"
> >> +PR = "r5"
> >>
> >>   SRC_URI = "ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-${PV}.tar.bz2 \
> >>              file://long-long-thumb.patch \
> >> -           file://mips_gcc4.4.patch"
> >> +           file://configure.patch \
> >> +           file://mips_gcc4.4.patch \
> >> +           file://curl_typeof_fix_backport.patch"
> >>
> >> -SRC_URI[md5sum] = "dcf7ed712997888d616e029637bfc303"
> >> -SRC_URI[sha256sum] = "a2907f4432d67894e425e48ae85785dd60ecb01658c9682bcd96f5e91043bb38"
> >> -
> >> -S = "${WORKDIR}/gnupg-${PV}"
> >> +SRC_URI[md5sum] = "b06a141cca5cd1a55bbdd25ab833303c"
> >> +SRC_URI[sha256sum] = "69d18b7d193f62ca27ed4febcb4c9044aa0c95305d3258fe902e2fae5fc6468d"
> >>
> >>   inherit autotools gettext
> >>
> >> @@ -73,7 +73,8 @@ EXTRA_OECONF = "--disable-ldap \
> >>   		--with-bzip2=${STAGING_LIBDIR}/.. \
> >>   		--disable-selinux-support \
> >>                   --with-readline=${STAGING_LIBDIR}/.. \
> >> -                ac_cv_sys_symbol_underscore=yes"
> >> +                ac_cv_sys_symbol_underscore=no \
> >> +		"
> >>
> >>   do_install () {
> >>   	autotools_do_install
> >> --
> >> 1.7.7.6
> >>
> >>
> >> _______________________________________________
> >> Openembedded-core mailing list
> >> Openembedded-core@lists.openembedded.org
> >> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
> >
> >
> >
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCH 2/2] syslinux: Package unpackaged files in -misc
  2012-02-24 18:59 ` [PATCH 2/2] syslinux: Package unpackaged files in -misc Saul Wold
@ 2012-02-28 14:04   ` Otavio Salvador
  0 siblings, 0 replies; 9+ messages in thread
From: Otavio Salvador @ 2012-02-28 14:04 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Fri, Feb 24, 2012 at 16:59, Saul Wold <sgw@linux.intel.com> wrote:
> Signed-off-by: Saul Wold <sgw@linux.intel.com>

This missed a PR bump and broke autobuilder; can you send a patch
bumping PR please?

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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

* [PATCH 0/2] A couple of fixes
@ 2012-03-15 14:24 Paul Eggleton
  2012-03-19 16:21 ` Saul Wold
  0 siblings, 1 reply; 9+ messages in thread
From: Paul Eggleton @ 2012-03-15 14:24 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit b055075ba5b9ff5250bc66be1cd8b222bdb86161:

  slang: Fix rpath QA warnings (2012-03-15 00:07:43 +0000)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib paule/fixes15
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/fixes15

Paul Eggleton (2):
  util-linux: restore zlib and ncurses dependencies for native
  python-imaging: bring in fixes from meta-oe

 meta/recipes-core/util-linux/util-linux.inc        |    2 +-
 meta/recipes-core/util-linux/util-linux_2.21.bb    |    2 +-
 ...ng-setup.py-force-paths-for-zlib-freetyp.patch} |   36 +++++++++++++++----
 .../python/python-imaging_1.1.7.bb                 |    9 +++--
 4 files changed, 36 insertions(+), 13 deletions(-)
 rename meta/recipes-devtools/python/python-imaging/{path.patch => 0001-python-imaging-setup.py-force-paths-for-zlib-freetyp.patch} (47%)

-- 
1.7.5.4




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

* Re: [PATCH 0/2] A couple of fixes
  2012-03-15 14:24 [PATCH 0/2] A couple of fixes Paul Eggleton
@ 2012-03-19 16:21 ` Saul Wold
  0 siblings, 0 replies; 9+ messages in thread
From: Saul Wold @ 2012-03-19 16:21 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Paul Eggleton

On 03/15/2012 07:24 AM, Paul Eggleton wrote:
> The following changes since commit b055075ba5b9ff5250bc66be1cd8b222bdb86161:
>
>    slang: Fix rpath QA warnings (2012-03-15 00:07:43 +0000)
>
> are available in the git repository at:
>    git://git.openembedded.org/openembedded-core-contrib paule/fixes15
>    http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/fixes15
>
> Paul Eggleton (2):
>    util-linux: restore zlib and ncurses dependencies for native
>    python-imaging: bring in fixes from meta-oe
>
>   meta/recipes-core/util-linux/util-linux.inc        |    2 +-
>   meta/recipes-core/util-linux/util-linux_2.21.bb    |    2 +-
>   ...ng-setup.py-force-paths-for-zlib-freetyp.patch} |   36 +++++++++++++++----
>   .../python/python-imaging_1.1.7.bb                 |    9 +++--
>   4 files changed, 36 insertions(+), 13 deletions(-)
>   rename meta/recipes-devtools/python/python-imaging/{path.patch =>  0001-python-imaging-setup.py-force-paths-for-zlib-freetyp.patch} (47%)
>

Merged into OE-Core

Thanks
	Sau!



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

end of thread, other threads:[~2012-03-19 16:30 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-24 18:59 [PATCH 0/2] A couple of fixes Saul Wold
2012-02-24 18:59 ` [PATCH 1/2] gnupg: Update checksum, fix configure and compliation issues Saul Wold
2012-02-24 19:08   ` Martin Jansa
2012-02-24 19:37     ` Saul Wold
2012-02-24 19:58       ` Martin Jansa
2012-02-24 18:59 ` [PATCH 2/2] syslinux: Package unpackaged files in -misc Saul Wold
2012-02-28 14:04   ` Otavio Salvador
  -- strict thread matches above, loose matches on Subject: below --
2012-03-15 14:24 [PATCH 0/2] A couple of fixes Paul Eggleton
2012-03-19 16:21 ` Saul Wold

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