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-devtools/opkg/opkg-keyrings_1.0.bb | |
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-devtools/opkg/opkg-keyrings_1.0.bb')
-rw-r--r-- | meta/recipes-devtools/opkg/opkg-keyrings_1.0.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-devtools/opkg/opkg-keyrings_1.0.bb b/meta/recipes-devtools/opkg/opkg-keyrings_1.0.bb index 07e2402545..84aeb98068 100644 --- a/meta/recipes-devtools/opkg/opkg-keyrings_1.0.bb +++ b/meta/recipes-devtools/opkg/opkg-keyrings_1.0.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384 | |||
5 | # Distro-specific keys can be added to this package in two ways: | 5 | # Distro-specific keys can be added to this package in two ways: |
6 | # | 6 | # |
7 | # 1) In a .bbappend, add .gpg and/or .asc files to SRC_URI and install them to | 7 | # 1) In a .bbappend, add .gpg and/or .asc files to SRC_URI and install them to |
8 | # ${D}${datadir}/opkg/keyrings/ in a do_install_append function. These | 8 | # ${D}${datadir}/opkg/keyrings/ in a do_install:append function. These |
9 | # files should not be named 'key-$name.gpg' to ensure they don't conflict | 9 | # files should not be named 'key-$name.gpg' to ensure they don't conflict |
10 | # with keys exported as per (2). | 10 | # with keys exported as per (2). |
11 | # | 11 | # |
@@ -30,12 +30,12 @@ do_install () { | |||
30 | done | 30 | done |
31 | } | 31 | } |
32 | 32 | ||
33 | FILES_${PN} = "${datadir}/opkg/keyrings" | 33 | FILES:${PN} = "${datadir}/opkg/keyrings" |
34 | 34 | ||
35 | # We need 'opkg-key' to run the postinst script | 35 | # We need 'opkg-key' to run the postinst script |
36 | RDEPENDS_${PN} = "opkg" | 36 | RDEPENDS:${PN} = "opkg" |
37 | 37 | ||
38 | pkg_postinst_ontarget_${PN} () { | 38 | pkg_postinst_ontarget:${PN} () { |
39 | if test -x ${bindir}/opkg-key | 39 | if test -x ${bindir}/opkg-key |
40 | then | 40 | then |
41 | ${bindir}/opkg-key populate | 41 | ${bindir}/opkg-key populate |