All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] A couple of ptest.bbclass fixes
@ 2013-10-30 15:41 Paul Eggleton
  2013-10-30 15:41 ` [PATCH 1/2] classes/ptest: do not set EXCLUDE_FROM_WORLD Paul Eggleton
  2013-10-30 15:41 ` [PATCH 2/2] classes/ptest: fix quoting Paul Eggleton
  0 siblings, 2 replies; 3+ messages in thread
From: Paul Eggleton @ 2013-10-30 15:41 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 58ae94f1b06d0e6234413dbf9869bde85f154c85:

  recipes: Remove PR = r0 from all recipes (2013-10-30 14:51:34 +0000)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib paule/ptest
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/ptest

Paul Eggleton (2):
  classes/ptest: do not set EXCLUDE_FROM_WORLD
  classes/ptest: fix quoting

 meta/classes/ptest.bbclass | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

-- 
1.8.1.2



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

* [PATCH 1/2] classes/ptest: do not set EXCLUDE_FROM_WORLD
  2013-10-30 15:41 [PATCH 0/2] A couple of ptest.bbclass fixes Paul Eggleton
@ 2013-10-30 15:41 ` Paul Eggleton
  2013-10-30 15:41 ` [PATCH 2/2] classes/ptest: fix quoting Paul Eggleton
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Eggleton @ 2013-10-30 15:41 UTC (permalink / raw)
  To: openembedded-core

Various normal recipes that we expect to build during a world build now
inherit this class; it cannot therefore set EXCLUDE_FROM_WORLD.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/classes/ptest.bbclass | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/meta/classes/ptest.bbclass b/meta/classes/ptest.bbclass
index d67b4e6..347a681 100644
--- a/meta/classes/ptest.bbclass
+++ b/meta/classes/ptest.bbclass
@@ -1,7 +1,3 @@
-# Ptest packages are built indirectly by a distro_feature,
-# no need for them to be a direct target of 'world'
-EXCLUDE_FROM_WORLD = "1"
-
 SUMMARY_${PN}-ptest ?= "${SUMMARY} - Package test files"
 DESCRIPTION_${PN}-ptest ?= "${DESCRIPTION}  \
 This package contains a test directory ${PTEST_PATH} for package test purposes."
-- 
1.8.1.2



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

* [PATCH 2/2] classes/ptest: fix quoting
  2013-10-30 15:41 [PATCH 0/2] A couple of ptest.bbclass fixes Paul Eggleton
  2013-10-30 15:41 ` [PATCH 1/2] classes/ptest: do not set EXCLUDE_FROM_WORLD Paul Eggleton
@ 2013-10-30 15:41 ` Paul Eggleton
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Eggleton @ 2013-10-30 15:41 UTC (permalink / raw)
  To: openembedded-core

BitBake currently allows using the same quotes outside and inside the
value, but it isn't really right, looks odd and might stop working in
future.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/classes/ptest.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/ptest.bbclass b/meta/classes/ptest.bbclass
index 347a681..508ea9a 100644
--- a/meta/classes/ptest.bbclass
+++ b/meta/classes/ptest.bbclass
@@ -6,7 +6,7 @@ PTEST_PATH ?= "${libdir}/${PN}/ptest"
 FILES_${PN}-ptest = "${PTEST_PATH}"
 SECTION_${PN}-ptest = "devel"
 ALLOW_EMPTY_${PN}-ptest = "1"
-PTEST_ENABLED = "${@base_contains("DISTRO_FEATURES", "ptest", "1", "0", d)}"
+PTEST_ENABLED = "${@base_contains('DISTRO_FEATURES', 'ptest', '1', '0', d)}"
 RDEPENDS_${PN}-ptest_virtclass-native = ""
 RDEPENDS_${PN}-ptest_virtclass-nativesdk = ""
 
-- 
1.8.1.2



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

end of thread, other threads:[~2013-10-30 15:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-30 15:41 [PATCH 0/2] A couple of ptest.bbclass fixes Paul Eggleton
2013-10-30 15:41 ` [PATCH 1/2] classes/ptest: do not set EXCLUDE_FROM_WORLD Paul Eggleton
2013-10-30 15:41 ` [PATCH 2/2] classes/ptest: fix quoting Paul Eggleton

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.