aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/blacklist.bbclass
blob: e58564c34ed9fd5c2ea58fc15cc353b6d9948072 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# anonymous support class from originally from angstrom
# 
# To use the blacklist, a distribution should include this
# class in the INHERIT_DISTRO
#
# No longer use ANGSTROM_BLACKLIST, instead use a table of
# recipes in PNBLACKLIST
#
# Features:
#
# * To add a package to the blacklist, set:
#   PNBLACKLIST[pn] = "message"
#

python () {
    blacklist = d.getVarFlag('PNBLACKLIST', d.getVar('PN'))

    if blacklist:
        raise bb.parse.SkipPackage("Recipe is blacklisted: %s" % (blacklist))
}