diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-28 23:28:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-02 15:44:10 +0100 |
commit | bb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch) | |
tree | 76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-extended/pigz | |
parent | fcc456ee4b8f619134abb4649db53c638074082c (diff) | |
download | poky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz |
Convert to new override syntax
This is the result of automated script conversion:
scripts/contrib/convert-overrides.py <oe-core directory>
converting the metadata to use ":" as the override character instead of "_".
(From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/pigz')
-rw-r--r-- | meta/recipes-extended/pigz/pigz_2.6.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-extended/pigz/pigz_2.6.bb b/meta/recipes-extended/pigz/pigz_2.6.bb index 05be9b733f..3566e18b7e 100644 --- a/meta/recipes-extended/pigz/pigz_2.6.bb +++ b/meta/recipes-extended/pigz/pigz_2.6.bb | |||
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://pigz.c;md5=9ae6dee8ceba9610596ed0ada493d142;beginline | |||
10 | 10 | ||
11 | SRC_URI = "http://zlib.net/${BPN}/fossils/${BP}.tar.gz" | 11 | SRC_URI = "http://zlib.net/${BPN}/fossils/${BP}.tar.gz" |
12 | SRC_URI[sha256sum] = "2eed7b0d7449d1d70903f2a62cd6005d262eb3a8c9e98687bc8cbb5809db2a7d" | 12 | SRC_URI[sha256sum] = "2eed7b0d7449d1d70903f2a62cd6005d262eb3a8c9e98687bc8cbb5809db2a7d" |
13 | PROVIDES_class-native += "gzip-native" | 13 | PROVIDES:class-native += "gzip-native" |
14 | 14 | ||
15 | # Point this at the homepage in case /fossils/ isn't updated | 15 | # Point this at the homepage in case /fossils/ isn't updated |
16 | UPSTREAM_CHECK_URI = "http://zlib.net/${BPN}/" | 16 | UPSTREAM_CHECK_URI = "http://zlib.net/${BPN}/" |
@@ -30,7 +30,7 @@ do_install() { | |||
30 | ln -nsf pigz ${D}${base_bindir}/pigzcat | 30 | ln -nsf pigz ${D}${base_bindir}/pigzcat |
31 | } | 31 | } |
32 | 32 | ||
33 | do_install_append_class-native() { | 33 | do_install:append:class-native() { |
34 | install -d ${D}${bindir} | 34 | install -d ${D}${bindir} |
35 | install ${B}/pigz ${D}${bindir}/gzip | 35 | install ${B}/pigz ${D}${bindir}/gzip |
36 | ln -nsf gzip ${D}${bindir}/gunzip | 36 | ln -nsf gzip ${D}${bindir}/gunzip |
@@ -38,8 +38,8 @@ do_install_append_class-native() { | |||
38 | } | 38 | } |
39 | 39 | ||
40 | ALTERNATIVE_PRIORITY = "110" | 40 | ALTERNATIVE_PRIORITY = "110" |
41 | ALTERNATIVE_${PN} = "gunzip gzip zcat" | 41 | ALTERNATIVE:${PN} = "gunzip gzip zcat" |
42 | ALTERNATIVE_${PN}_class-nativesdk = "" | 42 | ALTERNATIVE:${PN}:class-nativesdk = "" |
43 | ALTERNATIVE_LINK_NAME[gunzip] = "${base_bindir}/gunzip" | 43 | ALTERNATIVE_LINK_NAME[gunzip] = "${base_bindir}/gunzip" |
44 | ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip" | 44 | ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip" |
45 | ALTERNATIVE_LINK_NAME[zcat] = "${base_bindir}/zcat" | 45 | ALTERNATIVE_LINK_NAME[zcat] = "${base_bindir}/zcat" |