Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/2] Gnutls 3.4.1 update
@ 2015-06-01 14:12 Armin Kuster
  2015-06-01 14:13 ` [PATCH 1/2] nettle: update package to 3.1.1 version Armin Kuster
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Armin Kuster @ 2015-06-01 14:12 UTC (permalink / raw)
  To: openembedded-core

The new version of Gnutls removed several depricated API's that some packages use. 

core-image-minimal builds but not sato or oe-core world. I am providing this so those who want can test their apps with these changes.

I am working on neon.

The following changes since commit 40bc715b77f24f40fedebd4e5277c05bd7ff348b:

  tcmode-default: Test gcc 5.1 (2015-05-31 10:02:30 -0700)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib akuster/gnutls-update
  http://git.yoctoproject.org/cgit.cgi//log/?h=akuster/gnutls-update

Armin Kuster (2):
  nettle: update package to 3.1.1 version.
  gnutls: update to 3.4.1

 meta/recipes-support/gnutls/gnutls.inc             |  3 ++-
 .../gnutls/configure.ac-fix-sed-command.patch      | 29 ++++++++++------------
 meta/recipes-support/gnutls/gnutls_3.3.14.bb       |  8 ------
 meta/recipes-support/gnutls/gnutls_3.4.1.bb        |  8 ++++++
 .../nettle/{nettle_2.7.1.bb => nettle_3.1.1.bb}    | 12 ++++-----
 5 files changed, 29 insertions(+), 31 deletions(-)
 delete mode 100644 meta/recipes-support/gnutls/gnutls_3.3.14.bb
 create mode 100644 meta/recipes-support/gnutls/gnutls_3.4.1.bb
 rename meta/recipes-support/nettle/{nettle_2.7.1.bb => nettle_3.1.1.bb} (48%)

-- 
2.3.5



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

* [PATCH 1/2] nettle: update package to 3.1.1 version.
  2015-06-01 14:12 [PATCH 0/2] Gnutls 3.4.1 update Armin Kuster
@ 2015-06-01 14:13 ` Armin Kuster
  2015-06-01 14:13 ` [PATCH 2/2] gnutls: update to 3.4.1 Armin Kuster
  2015-06-02 10:23 ` [PATCH 0/2] Gnutls 3.4.1 update Burton, Ross
  2 siblings, 0 replies; 6+ messages in thread
From: Armin Kuster @ 2015-06-01 14:13 UTC (permalink / raw)
  To: openembedded-core

this requires the gnutls 3.4.1  update or the current gnutils build will break.

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 .../nettle/{nettle_2.7.1.bb => nettle_3.1.1.bb}              | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
 rename meta/recipes-support/nettle/{nettle_2.7.1.bb => nettle_3.1.1.bb} (48%)

diff --git a/meta/recipes-support/nettle/nettle_2.7.1.bb b/meta/recipes-support/nettle/nettle_3.1.1.bb
similarity index 48%
rename from meta/recipes-support/nettle/nettle_2.7.1.bb
rename to meta/recipes-support/nettle/nettle_3.1.1.bb
index f53afcc..ce5e756 100644
--- a/meta/recipes-support/nettle/nettle_2.7.1.bb
+++ b/meta/recipes-support/nettle/nettle_3.1.1.bb
@@ -1,17 +1,17 @@
 SUMMARY = "A low level cryptographic library"
 HOMEPAGE = "http://www.lysator.liu.se/~nisse/nettle/"
 SECTION = "libs"
-LICENSE = "LGPLv2.1 & GPLv2"
-LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
-                    file://serpent-decrypt.c;beginline=53;endline=67;md5=bcfd4745d53ca57f82907089898e390d \
-                    file://serpent-set-key.c;beginline=56;endline=70;md5=bcfd4745d53ca57f82907089898e390d"
+LICENSE = "GPLv2+ & GPLv3 & LGPLv3+"
+LIC_FILES_CHKSUM = "file://COPYINGv2;beginline=1;endline=2;md5=c70d8d3310941dcdfcd1e02800a1f548 \
+                    file://COPYINGv3;beginline=1;endline=2;md5=d1c727712ceba52db52e0ee449cadf43  \
+                    file://COPYING.LESSERv3;beginline=1;endline=2;md5=ff44a06d461487fb65f84ad672a1d1c8"
 
 DEPENDS += "gmp"
 
 SRC_URI = "http://www.lysator.liu.se/~nisse/archive/${BP}.tar.gz"
 
-SRC_URI[md5sum] = "003d5147911317931dd453520eb234a5"
-SRC_URI[sha256sum] = "bc71ebd43435537d767799e414fce88e521b7278d48c860651216e1fc6555b40"
+SRC_URI[md5sum] = "b40fa88dc32f37a182b6b42092ebb144"
+SRC_URI[sha256sum] = "5fd4d25d64d8ddcb85d0d897572af73b05b4d163c6cc49438a5bfbb8ff293d4c"
 
 EXTRA_OECONF = "--disable-openssl"
 
-- 
2.3.5



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

* [PATCH 2/2] gnutls: update to 3.4.1
  2015-06-01 14:12 [PATCH 0/2] Gnutls 3.4.1 update Armin Kuster
  2015-06-01 14:13 ` [PATCH 1/2] nettle: update package to 3.1.1 version Armin Kuster
@ 2015-06-01 14:13 ` Armin Kuster
  2015-06-02 10:23 ` [PATCH 0/2] Gnutls 3.4.1 update Burton, Ross
  2 siblings, 0 replies; 6+ messages in thread
From: Armin Kuster @ 2015-06-01 14:13 UTC (permalink / raw)
  To: openembedded-core

This version supports the nettle 3.x and higher and requires that version.

this include a security fix:
GNUTLS-SA-2015-2
no CVE assigned to date.

enable openssl compat via PACKAGECONFIG as iputils needs gnutls/openssl.h

for migration info:
http://www.gnutls.org/manual/gnutls.html#Upgrading-from-previous-versions

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 meta/recipes-support/gnutls/gnutls.inc             |  3 ++-
 .../gnutls/configure.ac-fix-sed-command.patch      | 29 ++++++++++------------
 meta/recipes-support/gnutls/gnutls_3.3.14.bb       |  8 ------
 meta/recipes-support/gnutls/gnutls_3.4.1.bb        |  8 ++++++
 4 files changed, 23 insertions(+), 25 deletions(-)
 delete mode 100644 meta/recipes-support/gnutls/gnutls_3.3.14.bb
 create mode 100644 meta/recipes-support/gnutls/gnutls_3.4.1.bb

diff --git a/meta/recipes-support/gnutls/gnutls.inc b/meta/recipes-support/gnutls/gnutls.inc
index e9b138a..6928cb9 100644
--- a/meta/recipes-support/gnutls/gnutls.inc
+++ b/meta/recipes-support/gnutls/gnutls.inc
@@ -34,9 +34,10 @@ do_configure_prepend() {
 	done
 }
 
-PACKAGECONFIG ??= "zlib"
+PACKAGECONFIG ??= "zlib openssl_compat"
 PACKAGECONFIG[tpm] = "--with-tpm, --without-tpm, trousers"
 PACKAGECONFIG[zlib] = "--with-zlib, --without-zlib, zlib"
+PACKAGECONFIG[openssl_compat] = "--enable-openssl-compatibility,,"
 
 PACKAGES =+ "${PN}-openssl ${PN}-xx"
 
diff --git a/meta/recipes-support/gnutls/gnutls/configure.ac-fix-sed-command.patch b/meta/recipes-support/gnutls/gnutls/configure.ac-fix-sed-command.patch
index 44a9934..342143f 100644
--- a/meta/recipes-support/gnutls/gnutls/configure.ac-fix-sed-command.patch
+++ b/meta/recipes-support/gnutls/gnutls/configure.ac-fix-sed-command.patch
@@ -13,19 +13,16 @@ Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
  configure.ac | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-diff --git a/configure.ac b/configure.ac
-index c6818a0..1c4582d 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -466,7 +466,7 @@ if test "$NEED_LIBOPTS_DIR" = "true";then
- 	dnl replace libopts-generated files with distributed backups, if present
- 	missing_baks=
- 	for i in ${srcdir}/src/*-args.c.bak ${srcdir}/src/*-args.h.bak; do
--		nam=`echo $i|sed 's/.bak//g'`
-+		nam=`echo $i|sed 's/\.bak$//'`
- 		if test -f $i;then
- 			cp -f $i $nam
- 		else
--- 
-2.0.1
-
+Index: gnutls-3.4.1/configure.ac
+===================================================================
+--- gnutls-3.4.1.orig/configure.ac
++++ gnutls-3.4.1/configure.ac
+@@ -530,7 +530,7 @@ if test "$enable_tools" != "no" || test
+ 		dnl replace libopts-generated files with distributed backups, if present
+ 		missing_baks=
+ 		for i in ${srcdir}/src/*-args.c.bak ${srcdir}/src/*-args.h.bak; do
+-			nam=`echo $i|sed 's/.bak//g'`
++			nam=`echo $i|sed 's/\.bak$//'`
+ 			if test -f $i;then
+ 				cp -f $i $nam
+ 			else
diff --git a/meta/recipes-support/gnutls/gnutls_3.3.14.bb b/meta/recipes-support/gnutls/gnutls_3.3.14.bb
deleted file mode 100644
index f41d183..0000000
--- a/meta/recipes-support/gnutls/gnutls_3.3.14.bb
+++ /dev/null
@@ -1,8 +0,0 @@
-require gnutls.inc
-
-SRC_URI += "file://correct_rpl_gettimeofday_signature.patch \
-            file://configure.ac-fix-sed-command.patch \
-            file://use-pkg-config-to-locate-zlib.patch \
-           "
-SRC_URI[md5sum] = "7f4465f8c564cf9cb8f5cb38b909f7ca"
-SRC_URI[sha256sum] = "0dfa0030faad8909c1e904105198232d6bc0123cae8cf4933b2bac85ee7cec52"
diff --git a/meta/recipes-support/gnutls/gnutls_3.4.1.bb b/meta/recipes-support/gnutls/gnutls_3.4.1.bb
new file mode 100644
index 0000000..1b64813
--- /dev/null
+++ b/meta/recipes-support/gnutls/gnutls_3.4.1.bb
@@ -0,0 +1,8 @@
+require gnutls.inc
+
+SRC_URI += "file://correct_rpl_gettimeofday_signature.patch  \
+            file://configure.ac-fix-sed-command.patch \
+            file://use-pkg-config-to-locate-zlib.patch \
+          "
+SRC_URI[md5sum] = "2d04f34fa25b45f9dcb9104c0394e12e"
+SRC_URI[sha256sum] = "e9b5f58becf34756464216056cd5abbf04315eda80a374d02699dee83f80b12e"
-- 
2.3.5



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

* Re: [PATCH 0/2] Gnutls 3.4.1 update
  2015-06-01 14:12 [PATCH 0/2] Gnutls 3.4.1 update Armin Kuster
  2015-06-01 14:13 ` [PATCH 1/2] nettle: update package to 3.1.1 version Armin Kuster
  2015-06-01 14:13 ` [PATCH 2/2] gnutls: update to 3.4.1 Armin Kuster
@ 2015-06-02 10:23 ` Burton, Ross
  2015-06-02 16:32   ` akuster808
  2015-06-03 20:10   ` akuster808
  2 siblings, 2 replies; 6+ messages in thread
From: Burton, Ross @ 2015-06-02 10:23 UTC (permalink / raw)
  To: Armin Kuster; +Cc: OE-core

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

Hi Armin,

On 1 June 2015 at 15:12, Armin Kuster <akuster808@gmail.com> wrote:

> core-image-minimal builds but not sato or oe-core world. I am providing
> this so those who want can test their apps with these changes.
>

What's the scale of the breakage when building oe-core world?

Ross

[-- Attachment #2: Type: text/html, Size: 767 bytes --]

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

* Re: [PATCH 0/2] Gnutls 3.4.1 update
  2015-06-02 10:23 ` [PATCH 0/2] Gnutls 3.4.1 update Burton, Ross
@ 2015-06-02 16:32   ` akuster808
  2015-06-03 20:10   ` akuster808
  1 sibling, 0 replies; 6+ messages in thread
From: akuster808 @ 2015-06-02 16:32 UTC (permalink / raw)
  To: Burton, Ross; +Cc: OE-core

Ross,

On 06/02/2015 03:23 AM, Burton, Ross wrote:
> Hi Armin,
>
> On 1 June 2015 at 15:12, Armin Kuster <akuster808@gmail.com
> <mailto:akuster808@gmail.com>> wrote:
>
>     core-image-minimal builds but not sato or oe-core world. I am
>     providing this so those who want can test their apps with these changes.
>
>
> What's the scale of the breakage when building oe-core world?

Not sure, I will need re-run world and I will get back to you.

Sato builds now (neon fix). The neon fix has been push to the same 
contrib branch.

- armin
>
> Ross


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

* Re: [PATCH 0/2] Gnutls 3.4.1 update
  2015-06-02 10:23 ` [PATCH 0/2] Gnutls 3.4.1 update Burton, Ross
  2015-06-02 16:32   ` akuster808
@ 2015-06-03 20:10   ` akuster808
  1 sibling, 0 replies; 6+ messages in thread
From: akuster808 @ 2015-06-03 20:10 UTC (permalink / raw)
  To: Burton, Ross; +Cc: OE-core



On 06/02/2015 03:23 AM, Burton, Ross wrote:
> Hi Armin,
>
> On 1 June 2015 at 15:12, Armin Kuster <akuster808@gmail.com
> <mailto:akuster808@gmail.com>> wrote:
>
>     core-image-minimal builds but not sato or oe-core world. I am
>     providing this so those who want can test their apps with these changes.
>
>
> What's the scale of the breakage when building oe-core world?
>

World builds now.

- armin
> Ross


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

end of thread, other threads:[~2015-06-03 20:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-01 14:12 [PATCH 0/2] Gnutls 3.4.1 update Armin Kuster
2015-06-01 14:13 ` [PATCH 1/2] nettle: update package to 3.1.1 version Armin Kuster
2015-06-01 14:13 ` [PATCH 2/2] gnutls: update to 3.4.1 Armin Kuster
2015-06-02 10:23 ` [PATCH 0/2] Gnutls 3.4.1 update Burton, Ross
2015-06-02 16:32   ` akuster808
2015-06-03 20:10   ` akuster808

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