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-support/gnutls | |
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-support/gnutls')
-rw-r--r-- | meta/recipes-support/gnutls/gnutls_3.7.2.bb | 20 | ||||
-rw-r--r-- | meta/recipes-support/gnutls/libtasn1_4.17.0.bb | 4 |
2 files changed, 12 insertions, 12 deletions
diff --git a/meta/recipes-support/gnutls/gnutls_3.7.2.bb b/meta/recipes-support/gnutls/gnutls_3.7.2.bb index 430d1f2d7d..e1a084fac4 100644 --- a/meta/recipes-support/gnutls/gnutls_3.7.2.bb +++ b/meta/recipes-support/gnutls/gnutls_3.7.2.bb | |||
@@ -5,17 +5,17 @@ HOMEPAGE = "https://gnutls.org/" | |||
5 | BUGTRACKER = "https://savannah.gnu.org/support/?group=gnutls" | 5 | BUGTRACKER = "https://savannah.gnu.org/support/?group=gnutls" |
6 | 6 | ||
7 | LICENSE = "GPLv3+ & LGPLv2.1+" | 7 | LICENSE = "GPLv3+ & LGPLv2.1+" |
8 | LICENSE_${PN} = "LGPLv2.1+" | 8 | LICENSE:${PN} = "LGPLv2.1+" |
9 | LICENSE_${PN}-xx = "LGPLv2.1+" | 9 | LICENSE:${PN}-xx = "LGPLv2.1+" |
10 | LICENSE_${PN}-bin = "GPLv3+" | 10 | LICENSE:${PN}-bin = "GPLv3+" |
11 | LICENSE_${PN}-openssl = "GPLv3+" | 11 | LICENSE:${PN}-openssl = "GPLv3+" |
12 | 12 | ||
13 | LIC_FILES_CHKSUM = "file://LICENSE;md5=71391c8e0c1cfe68077e7fce3b586283 \ | 13 | LIC_FILES_CHKSUM = "file://LICENSE;md5=71391c8e0c1cfe68077e7fce3b586283 \ |
14 | file://doc/COPYING;md5=c678957b0c8e964aa6c70fd77641a71e \ | 14 | file://doc/COPYING;md5=c678957b0c8e964aa6c70fd77641a71e \ |
15 | file://doc/COPYING.LESSER;md5=a6f89e2100d9b6cdffcea4f398e37343" | 15 | file://doc/COPYING.LESSER;md5=a6f89e2100d9b6cdffcea4f398e37343" |
16 | 16 | ||
17 | DEPENDS = "nettle gmp virtual/libiconv libunistring" | 17 | DEPENDS = "nettle gmp virtual/libiconv libunistring" |
18 | DEPENDS_append_libc-musl = " argp-standalone" | 18 | DEPENDS:append:libc-musl = " argp-standalone" |
19 | 19 | ||
20 | SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}" | 20 | SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}" |
21 | 21 | ||
@@ -52,9 +52,9 @@ EXTRA_OECONF = " \ | |||
52 | # Otherwise the tools try and use HOSTTOOLS_DIR/bash as a shell. | 52 | # Otherwise the tools try and use HOSTTOOLS_DIR/bash as a shell. |
53 | export POSIX_SHELL="${base_bindir}/sh" | 53 | export POSIX_SHELL="${base_bindir}/sh" |
54 | 54 | ||
55 | LDFLAGS_append_libc-musl = " -largp" | 55 | LDFLAGS:append:libc-musl = " -largp" |
56 | 56 | ||
57 | do_configure_prepend() { | 57 | do_configure:prepend() { |
58 | for dir in . lib; do | 58 | for dir in . lib; do |
59 | rm -f ${dir}/aclocal.m4 ${dir}/m4/libtool.m4 ${dir}/m4/lt*.m4 | 59 | rm -f ${dir}/aclocal.m4 ${dir}/m4/libtool.m4 ${dir}/m4/lt*.m4 |
60 | done | 60 | done |
@@ -62,8 +62,8 @@ do_configure_prepend() { | |||
62 | 62 | ||
63 | PACKAGES =+ "${PN}-openssl ${PN}-xx" | 63 | PACKAGES =+ "${PN}-openssl ${PN}-xx" |
64 | 64 | ||
65 | FILES_${PN}-dev += "${bindir}/gnutls-cli-debug" | 65 | FILES:${PN}-dev += "${bindir}/gnutls-cli-debug" |
66 | FILES_${PN}-openssl = "${libdir}/libgnutls-openssl.so.*" | 66 | FILES:${PN}-openssl = "${libdir}/libgnutls-openssl.so.*" |
67 | FILES_${PN}-xx = "${libdir}/libgnutlsxx.so.*" | 67 | FILES:${PN}-xx = "${libdir}/libgnutlsxx.so.*" |
68 | 68 | ||
69 | BBCLASSEXTEND = "native nativesdk" | 69 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-support/gnutls/libtasn1_4.17.0.bb b/meta/recipes-support/gnutls/libtasn1_4.17.0.bb index 64e798b188..111f5ac13d 100644 --- a/meta/recipes-support/gnutls/libtasn1_4.17.0.bb +++ b/meta/recipes-support/gnutls/libtasn1_4.17.0.bb | |||
@@ -4,8 +4,8 @@ DER/BER data following an ASN.1 schema. " | |||
4 | HOMEPAGE = "http://www.gnu.org/software/libtasn1/" | 4 | HOMEPAGE = "http://www.gnu.org/software/libtasn1/" |
5 | 5 | ||
6 | LICENSE = "GPLv3+ & LGPLv2.1+" | 6 | LICENSE = "GPLv3+ & LGPLv2.1+" |
7 | LICENSE_${PN}-bin = "GPLv3+" | 7 | LICENSE:${PN}-bin = "GPLv3+" |
8 | LICENSE_${PN} = "LGPLv2.1+" | 8 | LICENSE:${PN} = "LGPLv2.1+" |
9 | LIC_FILES_CHKSUM = "file://doc/COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | 9 | LIC_FILES_CHKSUM = "file://doc/COPYING;md5=d32239bcb673463ab874e80d47fae504 \ |
10 | file://doc/COPYING.LESSER;md5=4fbd65380cdd255951079008b364516c \ | 10 | file://doc/COPYING.LESSER;md5=4fbd65380cdd255951079008b364516c \ |
11 | file://COPYING;md5=75ac100ec923f959898182307970c360" | 11 | file://COPYING;md5=75ac100ec923f959898182307970c360" |