[oe-commits] Bruce Ashfield : classes/patch: optionally return non-patch sources

git at git.openembedded.org git at git.openembedded.org
Fri Feb 3 16:52:00 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: 41e92923a0b2fe047ecaa9f9ffb564d6069f784f
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=41e92923a0b2fe047ecaa9f9ffb564d6069f784f

Author: Bruce Ashfield <bruce.ashfield at windriver.com>
Date:   Wed Feb  1 13:55:41 2012 -0500

classes/patch: optionally return non-patch sources

commit:

  patch.bbclass: abstract out logic that determines patches to apply

gives the ability for other clases to emit series files for use outside
of a build system, or even within the build system. There are sometimes
elements on the SRC_URI that while not directly applicable to patching,
can be related to patching the package. For example, the yocto kernel
class would like to know about these other source items on the SRC_URI
to locate out of tree kernel features.

This change keeps the default behaviour of returning patches, but adds the
ability to request that non-patch results be returned.  Additional filtering
within the non-patch category, is left up to the caller of the routine.

Signed-off-by: Bruce Ashfield <bruce.ashfield at windriver.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/patch.bbclass |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/meta/classes/patch.bbclass b/meta/classes/patch.bbclass
index 1ea4bc5..31db9e3 100644
--- a/meta/classes/patch.bbclass
+++ b/meta/classes/patch.bbclass
@@ -7,13 +7,17 @@ PATCHDEPENDENCY = "${PATCHTOOL}-native:do_populate_sysroot"
 
 inherit terminal
 
-def src_patches(d):
+def src_patches(d, all = False ):
 	workdir = d.getVar('WORKDIR', True)
 	fetch = bb.fetch2.Fetch([], d)
 	patches = []
+	sources = []
 	for url in fetch.urls:
 		local = patch_path(url, fetch, workdir)
 		if not local:
+			if all:
+				local = fetch.localpath(url)
+				sources.append(local)
 			continue
 
 		urldata = fetch.ud[url]
@@ -43,6 +47,9 @@ def src_patches(d):
 		localurl = bb.encodeurl(('file', '', local, '', '', patchparm))
 		patches.append(localurl)
 
+	if all:
+		return sources
+
 	return patches
 
 def patch_path(url, fetch, workdir):





More information about the Openembedded-commits mailing list