From: Jussi Kukkonen <jussi.kukkonen@intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 0/6] Bring back LGPLv2 gmp, upgrade gnutls stack
Date: Thu, 27 Aug 2015 16:05:24 +0300 [thread overview]
Message-ID: <cover.1440680489.git.jussi.kukkonen@intel.com> (raw)
This patch set is the result of gnutls/nettle/gmp license discussion
on the mailing list. The end result is that gnutls stack is available
as LGPLv2.1 and also as the newest versions (where nettle and gmp are
LGPLv3 | GPLv2).
In more detail:
* Re-introduce an older LGPLv2 version of gmp
* Fix nettle binary package license
* Upgrade gnutls and nettle (keep LGPLv2 nettle as well)
gmp 4.2.1 was in better shape than I expected but it's still
software that was last updated 9 years ago and is used in a crypto
context... If there are other solutions to this problem I'll be
happy to hear them out.
Most of the commits depend on the ones before them either via version
incompatibilities or via applying on top of each other. I've smoke
tested two combinations of versions:
* everything upgraded to newest
* everything at LGPLv2.1 versions
Cheers,
Jussi
The following changes since commit 778fc612cb584d17da02ecc115c4e6edba995602:
libnotify: update to version 0.7.6 (2015-08-26 07:36:15 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib jku/lgpl-all-the-things
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=jku/lgpl-all-the-things
Jussi Kukkonen (6):
nettle: Fix binary license to LGPLv2.1+
gmp: Bring back version 4.2.1 (LGPL 2.1+)
nettle: Add (LGPLv3) version 3.1.1
nettle: Add ptests
gnutls: Upgrade 3.3.14 -> 3.3.17.1
mirrors.bbclass: Update gnutls mirrors
meta/classes/mirrors.bbclass | 5 +-
.../gmp/gmp-4.2.1/disable-stdc.patch | 39 +++++++++++++++
.../gmp/gmp-4.2.1/gmp_fix_for_automake-1.12.patch | 56 ++++++++++++++++++++++
.../gmp/{gmp => gmp-6.0.0}/amd64.patch | 0
.../append_user_provided_flags.patch | 0
.../gmp/{gmp => gmp-6.0.0}/configure.patch | 0
.../gmp/{gmp => gmp-6.0.0}/gmp-6.0.0-ppc64.patch | 0
.../gmp/{gmp => gmp-6.0.0}/use-includedir.patch | 0
meta/recipes-support/gmp/gmp.inc | 19 +-------
meta/recipes-support/gmp/gmp_4.2.1.bb | 15 ++++++
meta/recipes-support/gmp/gmp_6.0.0.bb | 33 ++++++++++---
.../{gnutls_3.3.14.bb => gnutls_3.3.17.1.bb} | 4 +-
...d-target-to-only-build-tests-not-run-them.patch | 43 +++++++++++++++++
meta/recipes-support/nettle/files/run-ptest | 36 ++++++++++++++
meta/recipes-support/nettle/nettle.inc | 43 +++++++++++++++++
meta/recipes-support/nettle/nettle_2.7.1.bb | 29 ++---------
meta/recipes-support/nettle/nettle_3.1.1.bb | 11 +++++
17 files changed, 276 insertions(+), 57 deletions(-)
create mode 100644 meta/recipes-support/gmp/gmp-4.2.1/disable-stdc.patch
create mode 100644 meta/recipes-support/gmp/gmp-4.2.1/gmp_fix_for_automake-1.12.patch
rename meta/recipes-support/gmp/{gmp => gmp-6.0.0}/amd64.patch (100%)
rename meta/recipes-support/gmp/{gmp => gmp-6.0.0}/append_user_provided_flags.patch (100%)
rename meta/recipes-support/gmp/{gmp => gmp-6.0.0}/configure.patch (100%)
rename meta/recipes-support/gmp/{gmp => gmp-6.0.0}/gmp-6.0.0-ppc64.patch (100%)
rename meta/recipes-support/gmp/{gmp => gmp-6.0.0}/use-includedir.patch (100%)
create mode 100644 meta/recipes-support/gmp/gmp_4.2.1.bb
rename meta/recipes-support/gnutls/{gnutls_3.3.14.bb => gnutls_3.3.17.1.bb} (59%)
create mode 100644 meta/recipes-support/nettle/files/Add-target-to-only-build-tests-not-run-them.patch
create mode 100644 meta/recipes-support/nettle/files/run-ptest
create mode 100644 meta/recipes-support/nettle/nettle.inc
create mode 100644 meta/recipes-support/nettle/nettle_3.1.1.bb
--
2.1.4
next reply other threads:[~2015-08-27 13:04 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-27 13:05 Jussi Kukkonen [this message]
2015-08-27 13:05 ` [PATCH 1/6] nettle: Fix binary license to LGPLv2.1+ Jussi Kukkonen
2015-08-27 13:05 ` [PATCH 2/6] gmp: Bring back version 4.2.1 (LGPL 2.1+) Jussi Kukkonen
2015-08-28 6:03 ` Khem Raj
2015-08-28 7:44 ` Jussi Kukkonen
2015-08-29 6:17 ` Jussi Kukkonen
2015-08-29 8:43 ` Martin Jansa
2015-08-29 10:18 ` Richard Purdie
2015-08-31 13:22 ` Otavio Salvador
2015-08-31 13:53 ` Richard Purdie
2015-08-31 14:01 ` Otavio Salvador
2015-08-31 14:10 ` Alexander Kanavin
2015-08-31 14:38 ` Khem Raj
2015-09-01 11:21 ` Jussi Kukkonen
2015-09-01 14:45 ` Khem Raj
2015-08-31 15:21 ` Martin Jansa
2015-08-31 15:27 ` Khem Raj
2015-09-01 14:55 ` Mark Hatle
2015-09-01 17:10 ` Khem Raj
2015-08-27 13:06 ` [PATCH 3/6] nettle: Add (LGPLv3) version 3.1.1 Jussi Kukkonen
2015-08-27 13:06 ` [PATCH 4/6] nettle: Add ptests Jussi Kukkonen
2015-08-28 12:16 ` Jussi Kukkonen
2015-08-27 13:06 ` [PATCH 5/6] gnutls: Upgrade 3.3.14 -> 3.3.17.1 Jussi Kukkonen
2015-08-27 13:06 ` [PATCH 6/6] mirrors.bbclass: Update gnutls mirrors Jussi Kukkonen
2015-08-27 17:13 ` Christopher Larson
2015-08-31 11:27 ` Richard Purdie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1440680489.git.jussi.kukkonen@intel.com \
--to=jussi.kukkonen@intel.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox