summaryrefslogtreecommitdiff
path: root/upstream-layers/openembedded-core/meta/classes-global/utility-tasks.bbclass
blob: 394cc3158d5dc91037577b6ab78096899f1a5cc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# Copyright OpenEmbedded Contributors
#
# SPDX-License-Identifier: MIT
#

addtask listtasks
do_listtasks[nostamp] = "1"
python do_listtasks() {
    taskdescs = {}
    maxlen = 0
    for t in bb.build.listtasks(d):
        maxlen = max(maxlen, len(t))

        if t.endswith('_setscene'):
            desc = "%s (setscene version)" % (d.getVarFlag(t[:-9], 'doc') or '')
        else:
            desc = d.getVarFlag(t, 'doc') or ''
        taskdescs[t] = desc

    for task, doc in sorted(taskdescs.items()):
        bb.plain("%s  %s" % (task.ljust(maxlen), doc))
}

CLEANFUNCS ?= ""

T:task-clean = "${LOG_DIR}/cleanlogs/${PN}"
addtask clean
do_clean[nostamp] = "1"
python do_clean() {
    """clear the build and temp directories"""
    dir = d.expand("${WORKDIR}")
    bb.note("Removing " + dir)
    oe.path.remove(dir)

    dir = "%s.*" % d.getVar('STAMP')
    bb.note("Removing " + dir)
    oe.path.remove(dir)

    for f in (d.getVar('CLEANFUNCS') or '').split():
        bb.build.exec_func(f, d)
}

addtask checkuri
do_checkuri[nostamp] = "1"
do_checkuri[network] = "1"
python do_checkuri() {
    src_uri = (d.getVar('SRC_URI') or "").split()
    if len(src_uri) == 0:
        return

    try:
        fetcher = bb.fetch2.Fetch(src_uri, d)
        fetcher.checkstatus()
    except bb.fetch2.BBFetchException as e:
        bb.fatal(str(e))
}