summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/blacklist.bbclass22
1 files changed, 11 insertions, 11 deletions
diff --git a/meta/classes/blacklist.bbclass b/meta/classes/blacklist.bbclass
index 7bf4a73a9a..75abd99c29 100644
--- a/meta/classes/blacklist.bbclass
+++ b/meta/classes/blacklist.bbclass
@@ -1,20 +1,20 @@
1# anonymous support class from angstrom 1# anonymous support class from originally from angstrom
2# 2#
3# To use the blacklist, a distribution should include this
4# class in the INHERIT_DISTRO
5#
6# No longer use ANGSTROM_BLACKLIST, instead use a table of
7# recipes in PNBLACKLIST
8#
3# Features: 9# Features:
4# 10#
5# * blacklist handling, set ANGSTROM_BLACKLIST_pn-blah = "message" 11# * To add a package to the blacklist, set:
12# PNBLACKLIST[pn] = "message"
6# 13#
7 14
8python () { 15python () {
9 import bb 16 blacklist = d.getVarFlag('PNBLACKLIST', d.getVar('PN', True), True)
10
11 blacklist = bb.data.getVar("ANGSTROM_BLACKLIST", d, 1)
12 pkgnm = bb.data.getVar("PN", d, 1)
13 distro = bb.data.getVar("DISTRO", d, 1)
14 17
15 if blacklist: 18 if blacklist:
16 bb.note("%s DOES NOT support %s because %s" % (distro,pkgnm, blacklist)) 19 raise bb.parse.SkipPackage("Recipe is blacklisted: %s" % (blacklist))
17 raise bb.parse.SkipPackage("%s DOES NOT support %s because %s" % (distro,pkgnm, blacklist))
18
19} 20}
20