All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] A couple of bug fixes
@ 2012-08-22 21:07 Saul Wold
  2012-08-22 21:07 ` [PATCH 1/2] cups: disable pdftops Saul Wold
  2012-08-22 21:07 ` [PATCH 2/2] external-python-tarball: Blacklist recipe if ipk is not in the PACKAGE_CLASSES list Saul Wold
  0 siblings, 2 replies; 3+ messages in thread
From: Saul Wold @ 2012-08-22 21:07 UTC (permalink / raw)
  To: openembedded-core

working through the list!

Sau!

The following changes since commit e3b0925f4c861393e436deb6b1912f9f1f325d1e:

  libtool: normalize link paths before considering for RPATH (2012-08-22 14:22:51 +0100)

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):
  cups: disable pdftops
  external-python-tarball: Blacklist recipe if ipk is not in the
    PACKAGE_CLASSES list

 meta/recipes-core/meta/external-python-tarball.bb |    5 +++++
 meta/recipes-extended/cups/cups14.inc             |    1 +
 meta/recipes-extended/cups/cups_1.4.6.bb          |    2 +-
 3 files changed, 7 insertions(+), 1 deletions(-)

-- 
1.7.7.6




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

* [PATCH 1/2] cups: disable pdftops
  2012-08-22 21:07 [PATCH 0/2] A couple of bug fixes Saul Wold
@ 2012-08-22 21:07 ` Saul Wold
  2012-08-22 21:07 ` [PATCH 2/2] external-python-tarball: Blacklist recipe if ipk is not in the PACKAGE_CLASSES list Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2012-08-22 21:07 UTC (permalink / raw)
  To: openembedded-core

This ensure a reliable built without host contamination, this
will also disable the usage of ghostscript.

[YOCTO #2966]

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-extended/cups/cups14.inc    |    1 +
 meta/recipes-extended/cups/cups_1.4.6.bb |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-extended/cups/cups14.inc b/meta/recipes-extended/cups/cups14.inc
index 0517007..9fae880 100644
--- a/meta/recipes-extended/cups/cups14.inc
+++ b/meta/recipes-extended/cups/cups14.inc
@@ -21,6 +21,7 @@ EXTRA_OECONF = " \
                --without-perl \
                --without-python \
                --without-java \
+               --with-pdftops=none \
                "
 
 
diff --git a/meta/recipes-extended/cups/cups_1.4.6.bb b/meta/recipes-extended/cups/cups_1.4.6.bb
index 8485180..aadaa07 100644
--- a/meta/recipes-extended/cups/cups_1.4.6.bb
+++ b/meta/recipes-extended/cups/cups_1.4.6.bb
@@ -1,6 +1,6 @@
 require cups14.inc
 
-PR = "r5"
+PR = "r6"
 DEPENDS += "libusb \
        ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
 
-- 
1.7.7.6




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

* [PATCH 2/2] external-python-tarball: Blacklist recipe if ipk is not in the PACKAGE_CLASSES list
  2012-08-22 21:07 [PATCH 0/2] A couple of bug fixes Saul Wold
  2012-08-22 21:07 ` [PATCH 1/2] cups: disable pdftops Saul Wold
@ 2012-08-22 21:07 ` Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2012-08-22 21:07 UTC (permalink / raw)
  To: openembedded-core

This is needed because ipk tools and variables (specically
IPKGCONF_TARGET and IPKGCONF_SDK) are used from the rootfs_ipk.bbclass

I tried to inherit directly but it still fails to expand those.

[YOCTO #2814]

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-core/meta/external-python-tarball.bb |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-core/meta/external-python-tarball.bb b/meta/recipes-core/meta/external-python-tarball.bb
index 6bc837b..e317ba3 100644
--- a/meta/recipes-core/meta/external-python-tarball.bb
+++ b/meta/recipes-core/meta/external-python-tarball.bb
@@ -5,6 +5,8 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
 
 DEPENDS = "opkg-native opkg-utils-native virtual/fakeroot-native sed-native"
 
+PR = "r1"
+
 inherit meta
 
 SDK_DIR = "${WORKDIR}/sdk"
@@ -91,3 +93,6 @@ do_populate_sdk[nostamp] = "1"
 do_populate_sdk[recrdeptask] = "do_package_write"
 addtask populate_sdk before do_build after do_install
 
+inherit blacklist
+
+PNBLACKLIST[external-python-tarball] = "${@base_contains('PACKAGE_CLASSES', 'package_ipk', '', 'This recipe requires \'package_ipk\' support to be enabled in PACKAGE_CLASSES.', d)}"
-- 
1.7.7.6




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

end of thread, other threads:[~2012-08-22 21:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-22 21:07 [PATCH 0/2] A couple of bug fixes Saul Wold
2012-08-22 21:07 ` [PATCH 1/2] cups: disable pdftops Saul Wold
2012-08-22 21:07 ` [PATCH 2/2] external-python-tarball: Blacklist recipe if ipk is not in the PACKAGE_CLASSES list Saul Wold

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.