summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/meta/dummy-sdk-package.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/meta/dummy-sdk-package.inc')
-rw-r--r--meta/recipes-core/meta/dummy-sdk-package.inc24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-core/meta/dummy-sdk-package.inc b/meta/recipes-core/meta/dummy-sdk-package.inc
new file mode 100644
index 0000000000..ed83dd77da
--- /dev/null
+++ b/meta/recipes-core/meta/dummy-sdk-package.inc
@@ -0,0 +1,24 @@
1SUMMARY = "Dummy packages which handle excluding packages from the sdk, e.g. ensuring perl is excluded from buildtools"
2LICENSE = "MIT"
3
4inherit allarch
5
6python() {
7 # Put the package somewhere separate to ensure it's never used except
8 # when we want it
9 # (note that we have to do this in anonymous python here to avoid
10 # allarch.bbclass disabling itself)
11 d.setVar('PACKAGE_ARCH', '${DUMMYARCH}')
12}
13
14ALLOW_EMPTY_${PN} = "1"
15
16PR[vardeps] += "DUMMYPROVIDES"
17
18python populate_packages_prepend() {
19 p = d.getVar("PN")
20 d.appendVar("RPROVIDES_%s" % p, "${DUMMYPROVIDES}")
21 #d.appendVar("RCONFLICTS_%s" % p, "${DUMMYPROVIDES}")
22 #d.appendVar("RREPLACES_%s" % p, "${DUMMYPROVIDES}")
23}
24