hc
2023-11-07 f45e756958099c35d6afb746df1d40a1c6302cfc
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
#
# crate-fetch class
#
# Registers 'crate' method for Bitbake fetch2.
#
# Adds support for following format in recipe SRC_URI:
# crate://<packagename>/<version>
#
 
def import_crate(d):
    import crate
    if not getattr(crate, 'imported', False):
        bb.fetch2.methods.append(crate.Crate())
        crate.imported = True
 
python crate_import_handler() {
    import_crate(d)
}
 
addhandler crate_import_handler
crate_import_handler[eventmask] = "bb.event.RecipePreFinalise"
 
def crate_get_srcrev(d):
    import_crate(d)
    return bb.fetch2.get_srcrev(d)
 
# Override SRCPV to make sure it imports the fetcher first
SRCPV = "${@crate_get_srcrev(d)}"