Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/7] Non-GPLv3 Changes & a dependency Fix
@ 2011-03-17  9:58 Saul Wold
  2011-03-17  9:58 ` [PATCH 1/7] util-linux: Setup for GPLv2 Recipe Saul Wold
                   ` (7 more replies)
  0 siblings, 8 replies; 13+ messages in thread
From: Saul Wold @ 2011-03-17  9:58 UTC (permalink / raw)
  To: openembedded-core, poky

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

Richard,

This set of changes enables both poky-image-minimal and poky-image-basic
to build non-gplv3 core image. These are bound for bernard

There is also a fix for the gnome-vfs dependency on ACL. This is
a potential build stopper and should be considered for bernard

Sau!


Pull URL: git://git.openembedded.org/openembedded-core-contrib
  Branch: sgw/non-gplv3
  Browse: http://git.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/non-gplv3

Thanks,
    Saul Wold <sgw@linux.intel.com>
---


Saul Wold (7):
  util-linux: Setup for GPLv2 Recipe
  extended tasks: move binutils from basic to lsb
  poky-image-basic: remove POKY_BASE_INSTALL
  poky.conf: add additional Libraries to the LGPLv2 Whitelist
  poky.conf: remove gnome-common from WHITELIST_GPLV3
  gettext: Upgrade GPLv2 version to 0.16.1
  gnome-vfs: add DEPENDS for acl

 meta/conf/distro/poky.conf                         |    4 +-
 .../gettext/gettext-0.14.1/gettext-vpath.patch     |   15 -
 .../gettext/gettext-0.14.1/linklib_from_0.17.patch | 1135 --------------------
 .../disable_java.patch                             |   19 +-
 .../gettext-0.16.1/fix_aclocal_version.patch       |  107 ++
 .../gettext-0.16.1/fix_gnu_source_circular.patch   |  345 ++++++
 .../fixchicken.patch                               |    0
 .../getline.m4.patch                               |    0
 .../gettext-autoconf-lib-link-no-L.patch           |    4 +
 .../gettext-error_print_progname.patch             |    0
 .../gettext/gettext-0.16.1/gettext-vpath.patch     |   17 +
 .../gettext-0.16.1/hardcode_macro_version.patch    |   48 +
 .../gettext/gettext-0.16.1/linklib_from_0.17.patch |  717 ++++++++++++
 .../{gettext_0.14.1.bb => gettext_0.16.1.bb}       |   20 +-
 meta/recipes-core/util-linux/util-linux.inc        |    5 +-
 meta/recipes-core/util-linux/util-linux_2.17.2.bb  |    9 +-
 meta/recipes-core/util-linux/util-linux_gplv2.bb   |   24 +
 meta/recipes-extended/images/poky-image-basic.bb   |    4 +-
 meta/recipes-extended/tasks/task-poky-basic.bb     |    2 -
 meta/recipes-extended/tasks/task-poky-lsb.bb       |    3 +-
 meta/recipes-gnome/gnome/gnome-vfs_2.24.4.bb       |    2 +-
 21 files changed, 1298 insertions(+), 1182 deletions(-)
 delete mode 100644 meta/recipes-core/gettext/gettext-0.14.1/gettext-vpath.patch
 delete mode 100644 meta/recipes-core/gettext/gettext-0.14.1/linklib_from_0.17.patch
 rename meta/recipes-core/gettext/{gettext-0.14.1 => gettext-0.16.1}/disable_java.patch (53%)
 create mode 100644 meta/recipes-core/gettext/gettext-0.16.1/fix_aclocal_version.patch
 create mode 100644 meta/recipes-core/gettext/gettext-0.16.1/fix_gnu_source_circular.patch
 rename meta/recipes-core/gettext/{gettext-0.14.1 => gettext-0.16.1}/fixchicken.patch (100%)
 rename meta/recipes-core/gettext/{gettext-0.14.1 => gettext-0.16.1}/getline.m4.patch (100%)
 rename meta/recipes-core/gettext/{gettext-0.14.1 => gettext-0.16.1}/gettext-autoconf-lib-link-no-L.patch (88%)
 rename meta/recipes-core/gettext/{gettext-0.14.1 => gettext-0.16.1}/gettext-error_print_progname.patch (100%)
 create mode 100644 meta/recipes-core/gettext/gettext-0.16.1/gettext-vpath.patch
 create mode 100644 meta/recipes-core/gettext/gettext-0.16.1/hardcode_macro_version.patch
 create mode 100644 meta/recipes-core/gettext/gettext-0.16.1/linklib_from_0.17.patch
 rename meta/recipes-core/gettext/{gettext_0.14.1.bb => gettext_0.16.1.bb} (74%)
 create mode 100644 meta/recipes-core/util-linux/util-linux_gplv2.bb




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

end of thread, other threads:[~2011-03-21 16:42 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-17  9:58 [PATCH 0/7] Non-GPLv3 Changes & a dependency Fix Saul Wold
2011-03-17  9:58 ` [PATCH 1/7] util-linux: Setup for GPLv2 Recipe Saul Wold
2011-03-17  9:58 ` [PATCH 2/7] extended tasks: move binutils from basic to lsb Saul Wold
2011-03-17  9:58 ` [PATCH 3/7] poky-image-basic: remove POKY_BASE_INSTALL Saul Wold
2011-03-17  9:58 ` [PATCH 5/7] poky.conf: remove gnome-common from WHITELIST_GPLV3 Saul Wold
2011-03-17  9:58 ` [PATCH 4/7] poky.conf: add additional Libraries to the LGPLv2 Whitelist Saul Wold
2011-03-17  9:58 ` [PATCH 6/7] gettext: Upgrade GPLv2 version to 0.16.1 Saul Wold
2011-03-17  9:58 ` [PATCH 7/7] gnome-vfs: add DEPENDS for acl Saul Wold
2011-03-17 17:47 ` [poky] [PATCH 0/7] Non-GPLv3 Changes & a dependency Fix Richard Purdie
2011-03-21  6:24   ` Denys Dmytriyenko
2011-03-21 15:35     ` Kamble, Nitin A
2011-03-21 15:51     ` Richard Purdie
2011-03-21 16:40       ` Mark Hatle

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