mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
blacklist.bbclass: Remove
moved into OE-Core Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
parent
72e6ed1469
commit
7c5fb741a4
|
|
@ -1,20 +0,0 @@
|
|||
# anonymous support class from angstrom
|
||||
#
|
||||
# Features:
|
||||
#
|
||||
# * blacklist handling, set ANGSTROM_BLACKLIST_pn-blah = "message"
|
||||
#
|
||||
|
||||
python () {
|
||||
import bb
|
||||
|
||||
blacklist = bb.data.getVar("ANGSTROM_BLACKLIST", d, 1)
|
||||
pkgnm = bb.data.getVar("PN", d, 1)
|
||||
distro = bb.data.getVar("DISTRO", d, 1)
|
||||
|
||||
if blacklist:
|
||||
bb.note("%s DOES NOT support %s because %s" % (distro,pkgnm, blacklist))
|
||||
raise bb.parse.SkipPackage("%s DOES NOT support %s because %s" % (distro,pkgnm, blacklist))
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user