summaryrefslogtreecommitdiffstats
path: root/meta/classes/crate-fetch.bbclass
blob: c0ed434a96e55b5f59842d53310af7e4de110b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# crate-fetch class
#
# Registers 'crate' method for Bitbake fetch2.
#
# Adds support for following format in recipe SRC_URI:
# crate://<packagename>/<version>
#

python () {
        import crate
        bb.fetch2.methods.append( crate.Crate() )
}