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 | |
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')
183 files changed, 2990 insertions, 2990 deletions
diff --git a/meta/recipes-devtools/apt/apt_2.2.4.bb b/meta/recipes-devtools/apt/apt_2.2.4.bb index f120111410..29fc49fb39 100644 --- a/meta/recipes-devtools/apt/apt_2.2.4.bb +++ b/meta/recipes-devtools/apt/apt_2.2.4.bb | |||
@@ -16,12 +16,12 @@ SRC_URI = "${DEBIAN_MIRROR}/main/a/apt/${BPN}_${PV}.tar.xz \ | |||
16 | file://0001-aptwebserver.cc-Include-array.patch \ | 16 | file://0001-aptwebserver.cc-Include-array.patch \ |
17 | " | 17 | " |
18 | 18 | ||
19 | SRC_URI_append_class-native = " \ | 19 | SRC_URI:append:class-native = " \ |
20 | file://0001-Do-not-init-tables-from-dpkg-configuration.patch \ | 20 | file://0001-Do-not-init-tables-from-dpkg-configuration.patch \ |
21 | file://0001-Revert-always-run-dpkg-configure-a-at-the-end-of-our.patch \ | 21 | file://0001-Revert-always-run-dpkg-configure-a-at-the-end-of-our.patch \ |
22 | " | 22 | " |
23 | 23 | ||
24 | SRC_URI_append_class-nativesdk = " \ | 24 | SRC_URI:append:class-nativesdk = " \ |
25 | file://0001-Do-not-init-tables-from-dpkg-configuration.patch \ | 25 | file://0001-Do-not-init-tables-from-dpkg-configuration.patch \ |
26 | file://0001-Revert-always-run-dpkg-configure-a-at-the-end-of-our.patch \ | 26 | file://0001-Revert-always-run-dpkg-configure-a-at-the-end-of-our.patch \ |
27 | " | 27 | " |
@@ -37,13 +37,13 @@ inherit cmake perlnative bash-completion upstream-version-is-even useradd | |||
37 | 37 | ||
38 | # User is added to allow apt to drop privs, will runtime warn without | 38 | # User is added to allow apt to drop privs, will runtime warn without |
39 | USERADD_PACKAGES = "${PN}" | 39 | USERADD_PACKAGES = "${PN}" |
40 | USERADD_PARAM_${PN} = "--system --home /nonexistent --no-create-home _apt" | 40 | USERADD_PARAM:${PN} = "--system --home /nonexistent --no-create-home _apt" |
41 | 41 | ||
42 | BBCLASSEXTEND = "native nativesdk" | 42 | BBCLASSEXTEND = "native nativesdk" |
43 | 43 | ||
44 | DEPENDS += "db gnutls lz4 zlib bzip2 xz libgcrypt xxhash" | 44 | DEPENDS += "db gnutls lz4 zlib bzip2 xz libgcrypt xxhash" |
45 | 45 | ||
46 | EXTRA_OECMAKE_append = " -DCURRENT_VENDOR=debian -DWITH_DOC=False \ | 46 | EXTRA_OECMAKE:append = " -DCURRENT_VENDOR=debian -DWITH_DOC=False \ |
47 | -DDPKG_DATADIR=${datadir}/dpkg \ | 47 | -DDPKG_DATADIR=${datadir}/dpkg \ |
48 | -DTRIEHASH_EXECUTABLE=${WORKDIR}/triehash \ | 48 | -DTRIEHASH_EXECUTABLE=${WORKDIR}/triehash \ |
49 | -DCMAKE_DISABLE_FIND_PACKAGE_ZSTD=True \ | 49 | -DCMAKE_DISABLE_FIND_PACKAGE_ZSTD=True \ |
@@ -51,14 +51,14 @@ EXTRA_OECMAKE_append = " -DCURRENT_VENDOR=debian -DWITH_DOC=False \ | |||
51 | -DWITH_TESTS=False \ | 51 | -DWITH_TESTS=False \ |
52 | " | 52 | " |
53 | 53 | ||
54 | do_configure_prepend () { | 54 | do_configure:prepend () { |
55 | echo "set( CMAKE_FIND_ROOT_PATH_MODE_INCLUDE BOTH )" >> ${WORKDIR}/toolchain.cmake | 55 | echo "set( CMAKE_FIND_ROOT_PATH_MODE_INCLUDE BOTH )" >> ${WORKDIR}/toolchain.cmake |
56 | 56 | ||
57 | } | 57 | } |
58 | 58 | ||
59 | # Unfortunately apt hardcodes this all over the place | 59 | # Unfortunately apt hardcodes this all over the place |
60 | FILES_${PN} += "${prefix}/lib/dpkg ${prefix}/lib/apt" | 60 | FILES:${PN} += "${prefix}/lib/dpkg ${prefix}/lib/apt" |
61 | RDEPENDS_${PN} += "bash perl dpkg" | 61 | RDEPENDS:${PN} += "bash perl dpkg" |
62 | 62 | ||
63 | customize_apt_conf_sample() { | 63 | customize_apt_conf_sample() { |
64 | cat > ${D}${sysconfdir}/apt/apt.conf.sample << EOF | 64 | cat > ${D}${sysconfdir}/apt/apt.conf.sample << EOF |
@@ -113,23 +113,23 @@ DPkg::Path ""; | |||
113 | EOF | 113 | EOF |
114 | } | 114 | } |
115 | 115 | ||
116 | do_install_append_class-native() { | 116 | do_install:append:class-native() { |
117 | customize_apt_conf_sample | 117 | customize_apt_conf_sample |
118 | } | 118 | } |
119 | 119 | ||
120 | do_install_append_class-nativesdk() { | 120 | do_install:append:class-nativesdk() { |
121 | customize_apt_conf_sample | 121 | customize_apt_conf_sample |
122 | } | 122 | } |
123 | 123 | ||
124 | 124 | ||
125 | do_install_append_class-target() { | 125 | do_install:append:class-target() { |
126 | #Write the correct apt-architecture to apt.conf | 126 | #Write the correct apt-architecture to apt.conf |
127 | APT_CONF=${D}/etc/apt/apt.conf | 127 | APT_CONF=${D}/etc/apt/apt.conf |
128 | echo 'APT::Architecture "${DPKG_ARCH}";' > ${APT_CONF} | 128 | echo 'APT::Architecture "${DPKG_ARCH}";' > ${APT_CONF} |
129 | } | 129 | } |
130 | 130 | ||
131 | # Avoid non-reproducible -src package | 131 | # Avoid non-reproducible -src package |
132 | do_install_append () { | 132 | do_install:append () { |
133 | sed -i -e "s,${B},,g" \ | 133 | sed -i -e "s,${B},,g" \ |
134 | ${B}/apt-pkg/tagfile-keys.cc | 134 | ${B}/apt-pkg/tagfile-keys.cc |
135 | } | 135 | } |
diff --git a/meta/recipes-devtools/autoconf-archive/autoconf-archive_2021.02.19.bb b/meta/recipes-devtools/autoconf-archive/autoconf-archive_2021.02.19.bb index 54079b5f09..2f86b50655 100644 --- a/meta/recipes-devtools/autoconf-archive/autoconf-archive_2021.02.19.bb +++ b/meta/recipes-devtools/autoconf-archive/autoconf-archive_2021.02.19.bb | |||
@@ -12,6 +12,6 @@ inherit autotools allarch texinfo | |||
12 | 12 | ||
13 | PACKAGES = "${PN} ${PN}-doc" | 13 | PACKAGES = "${PN} ${PN}-doc" |
14 | 14 | ||
15 | FILES_${PN} += "${datadir}/aclocal" | 15 | FILES:${PN} += "${datadir}/aclocal" |
16 | 16 | ||
17 | BBCLASSEXTEND = "native nativesdk" | 17 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/autoconf/autoconf_2.71.bb b/meta/recipes-devtools/autoconf/autoconf_2.71.bb index 8526067201..324e6f8de5 100644 --- a/meta/recipes-devtools/autoconf/autoconf_2.71.bb +++ b/meta/recipes-devtools/autoconf/autoconf_2.71.bb | |||
@@ -6,7 +6,7 @@ LICENSE = "GPLv3+" | |||
6 | HOMEPAGE = "http://www.gnu.org/software/autoconf/" | 6 | HOMEPAGE = "http://www.gnu.org/software/autoconf/" |
7 | SECTION = "devel" | 7 | SECTION = "devel" |
8 | DEPENDS = "m4-native autoconf-native automake-native gnu-config-native help2man-native" | 8 | DEPENDS = "m4-native autoconf-native automake-native gnu-config-native help2man-native" |
9 | DEPENDS_remove_class-native = "autoconf-native automake-native help2man-native" | 9 | DEPENDS:remove:class-native = "autoconf-native automake-native help2man-native" |
10 | 10 | ||
11 | LIC_FILES_CHKSUM = "file://COPYING;md5=cc3f3a7596cb558bbd9eb7fbaa3ef16c \ | 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=cc3f3a7596cb558bbd9eb7fbaa3ef16c \ |
12 | file://COPYINGv3;md5=1ebbd3e34237af26da5dc08a4e440464" | 12 | file://COPYINGv3;md5=1ebbd3e34237af26da5dc08a4e440464" |
@@ -19,11 +19,11 @@ SRC_URI = "${GNU_MIRROR}/autoconf/${BP}.tar.gz \ | |||
19 | file://autotest-automake-result-format.patch \ | 19 | file://autotest-automake-result-format.patch \ |
20 | file://man-host-perl.patch \ | 20 | file://man-host-perl.patch \ |
21 | " | 21 | " |
22 | SRC_URI_append_class-native = " file://no-man.patch" | 22 | SRC_URI:append:class-native = " file://no-man.patch" |
23 | 23 | ||
24 | SRC_URI[sha256sum] = "431075ad0bf529ef13cb41e9042c542381103e80015686222b8a9d4abef42a1c" | 24 | SRC_URI[sha256sum] = "431075ad0bf529ef13cb41e9042c542381103e80015686222b8a9d4abef42a1c" |
25 | 25 | ||
26 | RDEPENDS_${PN} = "m4 gnu-config \ | 26 | RDEPENDS:${PN} = "m4 gnu-config \ |
27 | perl \ | 27 | perl \ |
28 | perl-module-bytes \ | 28 | perl-module-bytes \ |
29 | perl-module-carp \ | 29 | perl-module-carp \ |
@@ -51,13 +51,13 @@ RDEPENDS_${PN} = "m4 gnu-config \ | |||
51 | perl-module-thread-queue \ | 51 | perl-module-thread-queue \ |
52 | perl-module-threads \ | 52 | perl-module-threads \ |
53 | " | 53 | " |
54 | RDEPENDS_${PN}_class-native = "m4-native gnu-config-native hostperl-runtime-native" | 54 | RDEPENDS:${PN}:class-native = "m4-native gnu-config-native hostperl-runtime-native" |
55 | 55 | ||
56 | inherit autotools texinfo | 56 | inherit autotools texinfo |
57 | 57 | ||
58 | PERL = "${USRBINPATH}/perl" | 58 | PERL = "${USRBINPATH}/perl" |
59 | PERL_class-native = "/usr/bin/env perl" | 59 | PERL:class-native = "/usr/bin/env perl" |
60 | PERL_class-nativesdk = "/usr/bin/env perl" | 60 | PERL:class-nativesdk = "/usr/bin/env perl" |
61 | 61 | ||
62 | CACHED_CONFIGUREVARS += "ac_cv_path_PERL='${PERL}'" | 62 | CACHED_CONFIGUREVARS += "ac_cv_path_PERL='${PERL}'" |
63 | 63 | ||
@@ -70,11 +70,11 @@ update_gnu_config() { | |||
70 | } | 70 | } |
71 | do_configure[prefuncs] += "update_gnu_config" | 71 | do_configure[prefuncs] += "update_gnu_config" |
72 | 72 | ||
73 | do_configure_class-native() { | 73 | do_configure:class-native() { |
74 | oe_runconf | 74 | oe_runconf |
75 | } | 75 | } |
76 | 76 | ||
77 | do_install_append() { | 77 | do_install:append() { |
78 | rm -rf ${D}${datadir}/emacs | 78 | rm -rf ${D}${datadir}/emacs |
79 | } | 79 | } |
80 | 80 | ||
diff --git a/meta/recipes-devtools/automake/automake.inc b/meta/recipes-devtools/automake/automake.inc index 87cedc9838..ceca16ab6a 100644 --- a/meta/recipes-devtools/automake/automake.inc +++ b/meta/recipes-devtools/automake/automake.inc | |||
@@ -18,4 +18,4 @@ do_configure() { | |||
18 | 18 | ||
19 | export AUTOMAKE = "${@bb.utils.which('automake', d.getVar('PATH'))}" | 19 | export AUTOMAKE = "${@bb.utils.which('automake', d.getVar('PATH'))}" |
20 | 20 | ||
21 | FILES_${PN} += "${datadir}/automake* ${datadir}/aclocal*" | 21 | FILES:${PN} += "${datadir}/automake* ${datadir}/aclocal*" |
diff --git a/meta/recipes-devtools/automake/automake_1.16.3.bb b/meta/recipes-devtools/automake/automake_1.16.3.bb index 7dc59d9fe7..1882eedcda 100644 --- a/meta/recipes-devtools/automake/automake_1.16.3.bb +++ b/meta/recipes-devtools/automake/automake_1.16.3.bb | |||
@@ -1,11 +1,11 @@ | |||
1 | require automake.inc | 1 | require automake.inc |
2 | LICENSE = "GPLv2" | 2 | LICENSE = "GPLv2" |
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" |
4 | DEPENDS_class-native = "autoconf-native" | 4 | DEPENDS:class-native = "autoconf-native" |
5 | 5 | ||
6 | NAMEVER = "${@oe.utils.trim_version("${PV}", 2)}" | 6 | NAMEVER = "${@oe.utils.trim_version("${PV}", 2)}" |
7 | 7 | ||
8 | RDEPENDS_${PN} += "\ | 8 | RDEPENDS:${PN} += "\ |
9 | autoconf \ | 9 | autoconf \ |
10 | perl \ | 10 | perl \ |
11 | perl-module-bytes \ | 11 | perl-module-bytes \ |
@@ -16,7 +16,7 @@ RDEPENDS_${PN} += "\ | |||
16 | perl-module-threads \ | 16 | perl-module-threads \ |
17 | perl-module-vars " | 17 | perl-module-vars " |
18 | 18 | ||
19 | RDEPENDS_${PN}_class-native = "autoconf-native hostperl-runtime-native" | 19 | RDEPENDS:${PN}:class-native = "autoconf-native hostperl-runtime-native" |
20 | 20 | ||
21 | SRC_URI += "file://python-libdir.patch \ | 21 | SRC_URI += "file://python-libdir.patch \ |
22 | file://buildtest.patch \ | 22 | file://buildtest.patch \ |
@@ -29,12 +29,12 @@ SRC_URI += "file://python-libdir.patch \ | |||
29 | SRC_URI[sha256sum] = "ce010788b51f64511a1e9bb2a1ec626037c6d0e7ede32c1c103611b9d3cba65f" | 29 | SRC_URI[sha256sum] = "ce010788b51f64511a1e9bb2a1ec626037c6d0e7ede32c1c103611b9d3cba65f" |
30 | 30 | ||
31 | PERL = "${USRBINPATH}/perl" | 31 | PERL = "${USRBINPATH}/perl" |
32 | PERL_class-native = "${USRBINPATH}/env perl" | 32 | PERL:class-native = "${USRBINPATH}/env perl" |
33 | PERL_class-nativesdk = "${USRBINPATH}/env perl" | 33 | PERL:class-nativesdk = "${USRBINPATH}/env perl" |
34 | 34 | ||
35 | CACHED_CONFIGUREVARS += "ac_cv_path_PERL='${PERL}'" | 35 | CACHED_CONFIGUREVARS += "ac_cv_path_PERL='${PERL}'" |
36 | 36 | ||
37 | do_install_append () { | 37 | do_install:append () { |
38 | install -d ${D}${datadir} | 38 | install -d ${D}${datadir} |
39 | } | 39 | } |
40 | 40 | ||
diff --git a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc index e98f31f9c3..f44f46602d 100644 --- a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc +++ b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc | |||
@@ -13,7 +13,7 @@ EXTRA_OECONF += "--with-sysroot=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VEND | |||
13 | # e.g. we switch between different machines with different tunes. | 13 | # e.g. we switch between different machines with different tunes. |
14 | EXTRA_OECONF[vardepsexclude] = "TUNE_PKGARCH" | 14 | EXTRA_OECONF[vardepsexclude] = "TUNE_PKGARCH" |
15 | 15 | ||
16 | LDGOLD_sdkmingw32 = "" | 16 | LDGOLD:sdkmingw32 = "" |
17 | 17 | ||
18 | do_install () { | 18 | do_install () { |
19 | autotools_do_install | 19 | autotools_do_install |
diff --git a/meta/recipes-devtools/binutils/binutils-crosssdk_2.37.bb b/meta/recipes-devtools/binutils/binutils-crosssdk_2.37.bb index 37f4d6d2e9..5bd036fd46 100644 --- a/meta/recipes-devtools/binutils/binutils-crosssdk_2.37.bb +++ b/meta/recipes-devtools/binutils/binutils-crosssdk_2.37.bb | |||
@@ -8,6 +8,6 @@ PROVIDES = "virtual/${TARGET_PREFIX}binutils-crosssdk" | |||
8 | 8 | ||
9 | SRC_URI += "file://0001-binutils-crosssdk-Generate-relocatable-SDKs.patch" | 9 | SRC_URI += "file://0001-binutils-crosssdk-Generate-relocatable-SDKs.patch" |
10 | 10 | ||
11 | do_configure_prepend () { | 11 | do_configure:prepend () { |
12 | sed -i 's#/usr/local/lib /lib /usr/lib#${SDKPATHNATIVE}/lib ${SDKPATHNATIVE}/usr/lib /usr/local/lib /lib /usr/lib#' ${S}/ld/configure.tgt | 12 | sed -i 's#/usr/local/lib /lib /usr/lib#${SDKPATHNATIVE}/lib ${SDKPATHNATIVE}/usr/lib /usr/local/lib /lib /usr/lib#' ${S}/ld/configure.tgt |
13 | } | 13 | } |
diff --git a/meta/recipes-devtools/binutils/binutils.inc b/meta/recipes-devtools/binutils/binutils.inc index e15a12b93e..7d5149fa16 100644 --- a/meta/recipes-devtools/binutils/binutils.inc +++ b/meta/recipes-devtools/binutils/binutils.inc | |||
@@ -15,7 +15,7 @@ DEPENDS = "flex-native bison-native zlib-native gnu-config-native autoconf-nativ | |||
15 | 15 | ||
16 | inherit autotools gettext multilib_header texinfo | 16 | inherit autotools gettext multilib_header texinfo |
17 | 17 | ||
18 | FILES_${PN} = " \ | 18 | FILES:${PN} = " \ |
19 | ${bindir}/${TARGET_PREFIX}* \ | 19 | ${bindir}/${TARGET_PREFIX}* \ |
20 | ${libdir}/lib*.so.* \ | 20 | ${libdir}/lib*.so.* \ |
21 | ${libdir}/bfd-plugins/lib*.so \ | 21 | ${libdir}/bfd-plugins/lib*.so \ |
@@ -23,9 +23,9 @@ FILES_${PN} = " \ | |||
23 | ${prefix}/${TARGET_SYS}/bin/* \ | 23 | ${prefix}/${TARGET_SYS}/bin/* \ |
24 | ${bindir}/embedspu" | 24 | ${bindir}/embedspu" |
25 | 25 | ||
26 | RPROVIDES_${PN} += "${PN}-symlinks" | 26 | RPROVIDES:${PN} += "${PN}-symlinks" |
27 | 27 | ||
28 | FILES_${PN}-dev = " \ | 28 | FILES:${PN}-dev = " \ |
29 | ${includedir} \ | 29 | ${includedir} \ |
30 | ${libdir}/*.la \ | 30 | ${libdir}/*.la \ |
31 | ${libdir}/libbfd.so \ | 31 | ${libdir}/libbfd.so \ |
@@ -37,9 +37,9 @@ FILES_${PN}-dev = " \ | |||
37 | # list and reuse it. | 37 | # list and reuse it. |
38 | 38 | ||
39 | LDGOLD_ALTS ?= "ld.gold dwp" | 39 | LDGOLD_ALTS ?= "ld.gold dwp" |
40 | LDGOLD_ALTS_riscv64 = "" | 40 | LDGOLD_ALTS:riscv64 = "" |
41 | LDGOLD_ALTS_riscv32 = "" | 41 | LDGOLD_ALTS:riscv32 = "" |
42 | LDGOLD_ALTS_libc-glibc_mipsarch = "" | 42 | LDGOLD_ALTS:libc-glibc:mipsarch = "" |
43 | 43 | ||
44 | USE_ALTERNATIVES_FOR = " \ | 44 | USE_ALTERNATIVES_FOR = " \ |
45 | addr2line \ | 45 | addr2line \ |
@@ -61,7 +61,7 @@ USE_ALTERNATIVES_FOR = " \ | |||
61 | strip \ | 61 | strip \ |
62 | " | 62 | " |
63 | 63 | ||
64 | python do_package_prepend() { | 64 | python do_package:prepend() { |
65 | make_alts = d.getVar("USE_ALTERNATIVES_FOR") or "" | 65 | make_alts = d.getVar("USE_ALTERNATIVES_FOR") or "" |
66 | prefix = d.getVar("TARGET_PREFIX") | 66 | prefix = d.getVar("TARGET_PREFIX") |
67 | bindir = d.getVar("bindir") | 67 | bindir = d.getVar("bindir") |
@@ -86,12 +86,12 @@ EXTRA_OECONF = "--program-prefix=${TARGET_PREFIX} \ | |||
86 | ${@bb.utils.contains('DISTRO_FEATURES', 'multiarch', '--enable-64-bit-bfd', '', d)}" | 86 | ${@bb.utils.contains('DISTRO_FEATURES', 'multiarch', '--enable-64-bit-bfd', '', d)}" |
87 | 87 | ||
88 | EXTRA_TARGETS = "" | 88 | EXTRA_TARGETS = "" |
89 | EXTRA_TARGETS_x86-64 = " --enable-targets=x86_64-pe,x86_64-pep " | 89 | EXTRA_TARGETS:x86-64 = " --enable-targets=x86_64-pe,x86_64-pep " |
90 | EXTRA_TARGETS_class-native = "" | 90 | EXTRA_TARGETS:class-native = "" |
91 | 91 | ||
92 | LDGOLD_class-native = "" | 92 | LDGOLD:class-native = "" |
93 | LDGOLD_class-crosssdk = "" | 93 | LDGOLD:class-crosssdk = "" |
94 | LDGOLD_libc-glibc_mipsarch = "" | 94 | LDGOLD:libc-glibc:mipsarch = "" |
95 | LDGOLD ?= "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', '--enable-gold=default --enable-threads', '--enable-gold --enable-ld=default --enable-threads', d)}" | 95 | LDGOLD ?= "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', '--enable-gold=default --enable-threads', '--enable-gold --enable-ld=default --enable-threads', d)}" |
96 | 96 | ||
97 | 97 | ||
@@ -176,7 +176,7 @@ inherit update-alternatives | |||
176 | 176 | ||
177 | ALTERNATIVE_PRIORITY = "100" | 177 | ALTERNATIVE_PRIORITY = "100" |
178 | 178 | ||
179 | ALTERNATIVE_${PN}_class-target = "${USE_ALTERNATIVES_FOR}" | 179 | ALTERNATIVE:${PN}:class-target = "${USE_ALTERNATIVES_FOR}" |
180 | 180 | ||
181 | python () { | 181 | python () { |
182 | if bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', True, False, d) and bb.utils.contains_any('TARGET_ARCH', 'riscv32 riscv64', True, False, d): | 182 | if bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', True, False, d) and bb.utils.contains_any('TARGET_ARCH', 'riscv32 riscv64', True, False, d): |
diff --git a/meta/recipes-devtools/binutils/binutils_2.37.bb b/meta/recipes-devtools/binutils/binutils_2.37.bb index ee9617de1d..ff9377049b 100644 --- a/meta/recipes-devtools/binutils/binutils_2.37.bb +++ b/meta/recipes-devtools/binutils/binutils_2.37.bb | |||
@@ -10,11 +10,11 @@ EXTRA_OECONF += "--with-sysroot=/ \ | |||
10 | --with-system-zlib \ | 10 | --with-system-zlib \ |
11 | " | 11 | " |
12 | 12 | ||
13 | EXTRA_OEMAKE_append_libc-musl = "\ | 13 | EXTRA_OEMAKE:append:libc-musl = "\ |
14 | gt_cv_func_gnugettext1_libc=yes \ | 14 | gt_cv_func_gnugettext1_libc=yes \ |
15 | gt_cv_func_gnugettext2_libc=yes \ | 15 | gt_cv_func_gnugettext2_libc=yes \ |
16 | " | 16 | " |
17 | EXTRA_OECONF_class-native = "--enable-targets=all \ | 17 | EXTRA_OECONF:class-native = "--enable-targets=all \ |
18 | --enable-64-bit-bfd \ | 18 | --enable-64-bit-bfd \ |
19 | --enable-install-libiberty \ | 19 | --enable-install-libiberty \ |
20 | --enable-install-libbfd \ | 20 | --enable-install-libbfd \ |
@@ -29,10 +29,10 @@ PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'debuginfod', d)}" | |||
29 | PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod, elfutils" | 29 | PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod, elfutils" |
30 | # gcc9.0 end up mis-compiling libbfd.so with O2 which then crashes on target | 30 | # gcc9.0 end up mis-compiling libbfd.so with O2 which then crashes on target |
31 | # So remove -O2 and use -Os as workaround | 31 | # So remove -O2 and use -Os as workaround |
32 | SELECTED_OPTIMIZATION_remove_mipsarch = "-O2" | 32 | SELECTED_OPTIMIZATION:remove:mipsarch = "-O2" |
33 | SELECTED_OPTIMIZATION_append_mipsarch = " -Os" | 33 | SELECTED_OPTIMIZATION:append:mipsarch = " -Os" |
34 | 34 | ||
35 | do_install_class-native () { | 35 | do_install:class-native () { |
36 | autotools_do_install | 36 | autotools_do_install |
37 | 37 | ||
38 | # Install the libiberty header | 38 | # Install the libiberty header |
@@ -55,19 +55,19 @@ do_install_class-native () { | |||
55 | } | 55 | } |
56 | 56 | ||
57 | # libctf races with libbfd | 57 | # libctf races with libbfd |
58 | PARALLEL_MAKEINST_class-target = "" | 58 | PARALLEL_MAKEINST:class-target = "" |
59 | PARALLEL_MAKEINST_class-nativesdk = "" | 59 | PARALLEL_MAKEINST:class-nativesdk = "" |
60 | 60 | ||
61 | # Split out libbfd-*.so and libopcodes-*.so so including perf doesn't include | 61 | # Split out libbfd-*.so and libopcodes-*.so so including perf doesn't include |
62 | # extra stuff | 62 | # extra stuff |
63 | PACKAGE_BEFORE_PN += "libbfd libopcodes" | 63 | PACKAGE_BEFORE_PN += "libbfd libopcodes" |
64 | FILES_libbfd = "${libdir}/libbfd-*.so.* ${libdir}/libbfd-*.so" | 64 | FILES:libbfd = "${libdir}/libbfd-*.so.* ${libdir}/libbfd-*.so" |
65 | FILES_libopcodes = "${libdir}/libopcodes-*.so.* ${libdir}/libopcodes-*.so" | 65 | FILES:libopcodes = "${libdir}/libopcodes-*.so.* ${libdir}/libopcodes-*.so" |
66 | 66 | ||
67 | SRC_URI_append_class-nativesdk = " file://0003-binutils-nativesdk-Search-for-alternative-ld.so.conf.patch " | 67 | SRC_URI:append:class-nativesdk = " file://0003-binutils-nativesdk-Search-for-alternative-ld.so.conf.patch " |
68 | 68 | ||
69 | USE_ALTERNATIVES_FOR_class-nativesdk = "" | 69 | USE_ALTERNATIVES_FOR:class-nativesdk = "" |
70 | FILES_${PN}_append_class-nativesdk = " ${bindir}" | 70 | FILES:${PN}:append:class-nativesdk = " ${bindir}" |
71 | 71 | ||
72 | BBCLASSEXTEND = "native nativesdk" | 72 | BBCLASSEXTEND = "native nativesdk" |
73 | 73 | ||
diff --git a/meta/recipes-devtools/bison/bison_3.7.6.bb b/meta/recipes-devtools/bison/bison_3.7.6.bb index a8d57f2742..c85ae04976 100644 --- a/meta/recipes-devtools/bison/bison_3.7.6.bb +++ b/meta/recipes-devtools/bison/bison_3.7.6.bb | |||
@@ -21,7 +21,7 @@ inherit autotools gettext texinfo | |||
21 | CACHED_CONFIGUREVARS = "ac_cv_path_M4=m4" | 21 | CACHED_CONFIGUREVARS = "ac_cv_path_M4=m4" |
22 | 22 | ||
23 | PACKAGECONFIG ??= "readline ${@ 'textstyle' if d.getVar('USE_NLS') == 'yes' else ''}" | 23 | PACKAGECONFIG ??= "readline ${@ 'textstyle' if d.getVar('USE_NLS') == 'yes' else ''}" |
24 | PACKAGECONFIG_class-native ??= "" | 24 | PACKAGECONFIG:class-native ??= "" |
25 | 25 | ||
26 | # Make readline and textstyle optional. There are recipie for these, but leave them | 26 | # Make readline and textstyle optional. There are recipie for these, but leave them |
27 | # disabled for the native recipe. This prevents host contamination of the native tool. | 27 | # disabled for the native recipe. This prevents host contamination of the native tool. |
@@ -38,15 +38,15 @@ CACHED_CONFIGUREVARS += "${@bb.utils.contains('PACKAGECONFIG', 'readline', '', ' | |||
38 | # The automatic m4 path detection gets confused, so force the right value | 38 | # The automatic m4 path detection gets confused, so force the right value |
39 | acpaths = "-I ./m4" | 39 | acpaths = "-I ./m4" |
40 | 40 | ||
41 | do_compile_prepend() { | 41 | do_compile:prepend() { |
42 | for i in mfcalc calc++ rpcalc; do mkdir -p ${B}/examples/$i; done | 42 | for i in mfcalc calc++ rpcalc; do mkdir -p ${B}/examples/$i; done |
43 | } | 43 | } |
44 | 44 | ||
45 | do_install_append_class-native() { | 45 | do_install:append:class-native() { |
46 | create_wrapper ${D}/${bindir}/bison \ | 46 | create_wrapper ${D}/${bindir}/bison \ |
47 | BISON_PKGDATADIR=${STAGING_DATADIR_NATIVE}/bison | 47 | BISON_PKGDATADIR=${STAGING_DATADIR_NATIVE}/bison |
48 | } | 48 | } |
49 | do_install_append_class-nativesdk() { | 49 | do_install:append:class-nativesdk() { |
50 | create_wrapper ${D}/${bindir}/bison \ | 50 | create_wrapper ${D}/${bindir}/bison \ |
51 | BISON_PKGDATADIR=${datadir}/bison | 51 | BISON_PKGDATADIR=${datadir}/bison |
52 | } | 52 | } |
diff --git a/meta/recipes-devtools/bootchart2/bootchart2_0.14.9.bb b/meta/recipes-devtools/bootchart2/bootchart2_0.14.9.bb index f6a77b4606..b1d359ec38 100644 --- a/meta/recipes-devtools/bootchart2/bootchart2_0.14.9.bb +++ b/meta/recipes-devtools/bootchart2/bootchart2_0.14.9.bb | |||
@@ -101,14 +101,14 @@ SRCREV = "868a2afab9da34f32c007d773b77253c93104636" | |||
101 | 101 | ||
102 | inherit systemd update-rc.d python3native update-alternatives | 102 | inherit systemd update-rc.d python3native update-alternatives |
103 | 103 | ||
104 | ALTERNATIVE_${PN} = "bootchartd" | 104 | ALTERNATIVE:${PN} = "bootchartd" |
105 | ALTERNATIVE_LINK_NAME[bootchartd] = "${base_sbindir}/bootchartd" | 105 | ALTERNATIVE_LINK_NAME[bootchartd] = "${base_sbindir}/bootchartd" |
106 | ALTERNATIVE_PRIORITY = "100" | 106 | ALTERNATIVE_PRIORITY = "100" |
107 | 107 | ||
108 | # The only reason to build bootchart2-native is for a native pybootchartgui. | 108 | # The only reason to build bootchart2-native is for a native pybootchartgui. |
109 | BBCLASSEXTEND = "native" | 109 | BBCLASSEXTEND = "native" |
110 | 110 | ||
111 | SYSTEMD_SERVICE_${PN} = "bootchart2.service bootchart2-done.service bootchart2-done.timer" | 111 | SYSTEMD_SERVICE:${PN} = "bootchart2.service bootchart2-done.service bootchart2-done.timer" |
112 | 112 | ||
113 | UPDATERCPN = "bootchartd-stop-initscript" | 113 | UPDATERCPN = "bootchartd-stop-initscript" |
114 | INITSCRIPT_NAME = "bootchartd_stop.sh" | 114 | INITSCRIPT_NAME = "bootchartd_stop.sh" |
@@ -116,7 +116,7 @@ INITSCRIPT_PARAMS = "start 99 2 3 4 5 ." | |||
116 | 116 | ||
117 | EXTRA_OEMAKE = 'BASE_SBINDIR="${base_sbindir}"' | 117 | EXTRA_OEMAKE = 'BASE_SBINDIR="${base_sbindir}"' |
118 | 118 | ||
119 | do_compile_prepend () { | 119 | do_compile:prepend () { |
120 | export PY_LIBDIR="${libdir}/${PYTHON_DIR}" | 120 | export PY_LIBDIR="${libdir}/${PYTHON_DIR}" |
121 | export BINDIR="${bindir}" | 121 | export BINDIR="${bindir}" |
122 | export LIBDIR="${base_libdir}" | 122 | export LIBDIR="${base_libdir}" |
@@ -145,19 +145,19 @@ do_install () { | |||
145 | } | 145 | } |
146 | 146 | ||
147 | PACKAGES =+ "pybootchartgui" | 147 | PACKAGES =+ "pybootchartgui" |
148 | FILES_pybootchartgui += "${PYTHON_SITEPACKAGES_DIR}/pybootchartgui ${bindir}/pybootchartgui" | 148 | FILES:pybootchartgui += "${PYTHON_SITEPACKAGES_DIR}/pybootchartgui ${bindir}/pybootchartgui" |
149 | RDEPENDS_pybootchartgui = "python3-pycairo python3-compression python3-image python3-shell python3-compression python3-codecs" | 149 | RDEPENDS:pybootchartgui = "python3-pycairo python3-compression python3-image python3-shell python3-compression python3-codecs" |
150 | RDEPENDS_${PN}_class-target += "${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'sysvinit-pidof', 'procps', d)}" | 150 | RDEPENDS:${PN}:class-target += "${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'sysvinit-pidof', 'procps', d)}" |
151 | RDEPENDS_${PN}_class-target += "lsb-release" | 151 | RDEPENDS:${PN}:class-target += "lsb-release" |
152 | DEPENDS_append_class-native = " python3-pycairo-native" | 152 | DEPENDS:append:class-native = " python3-pycairo-native" |
153 | 153 | ||
154 | PACKAGES =+ "bootchartd-stop-initscript" | 154 | PACKAGES =+ "bootchartd-stop-initscript" |
155 | FILES_bootchartd-stop-initscript += "${sysconfdir}/init.d ${sysconfdir}/rc*.d" | 155 | FILES:bootchartd-stop-initscript += "${sysconfdir}/init.d ${sysconfdir}/rc*.d" |
156 | RDEPENDS_bootchartd-stop-initscript = "${PN}" | 156 | RDEPENDS:bootchartd-stop-initscript = "${PN}" |
157 | 157 | ||
158 | FILES_${PN} += "${base_libdir}/bootchart/bootchart-collector" | 158 | FILES:${PN} += "${base_libdir}/bootchart/bootchart-collector" |
159 | FILES_${PN} += "${base_libdir}/bootchart/tmpfs" | 159 | FILES:${PN} += "${base_libdir}/bootchart/tmpfs" |
160 | FILES_${PN} += "${libdir}" | 160 | FILES:${PN} += "${libdir}" |
161 | FILES_${PN}-doc += "${datadir}/docs" | 161 | FILES:${PN}-doc += "${datadir}/docs" |
162 | 162 | ||
163 | RCONFLICTS_${PN} = "bootchart" | 163 | RCONFLICTS:${PN} = "bootchart" |
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.13.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.13.bb index fa33cad7b9..5f8621faf1 100644 --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.13.bb +++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.13.bb | |||
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = " \ | |||
14 | " | 14 | " |
15 | SECTION = "base" | 15 | SECTION = "base" |
16 | DEPENDS = "lzo util-linux zlib" | 16 | DEPENDS = "lzo util-linux zlib" |
17 | DEPENDS_append_class-target = " udev" | 17 | DEPENDS:append:class-target = " udev" |
18 | 18 | ||
19 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git \ | 19 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git \ |
20 | file://0001-Add-a-possibility-to-specify-where-python-modules-ar.patch \ | 20 | file://0001-Add-a-possibility-to-specify-where-python-modules-ar.patch \ |
@@ -49,25 +49,25 @@ inherit ${@bb.utils.contains('PACKAGECONFIG', 'python', 'distutils3-base', '', d | |||
49 | CLEANBROKEN = "1" | 49 | CLEANBROKEN = "1" |
50 | 50 | ||
51 | EXTRA_OECONF = "--enable-largefile" | 51 | EXTRA_OECONF = "--enable-largefile" |
52 | EXTRA_OECONF_append_libc-musl = " --disable-backtrace " | 52 | EXTRA_OECONF:append:libc-musl = " --disable-backtrace " |
53 | EXTRA_PYTHON_CFLAGS = "${DEBUG_PREFIX_MAP}" | 53 | EXTRA_PYTHON_CFLAGS = "${DEBUG_PREFIX_MAP}" |
54 | EXTRA_PYTHON_CFLAGS_class-native = "" | 54 | EXTRA_PYTHON_CFLAGS:class-native = "" |
55 | EXTRA_PYTHON_LDFLAGS = "${LDFLAGS}" | 55 | EXTRA_PYTHON_LDFLAGS = "${LDFLAGS}" |
56 | EXTRA_OEMAKE = "V=1 'EXTRA_PYTHON_CFLAGS=${EXTRA_PYTHON_CFLAGS}' 'EXTRA_PYTHON_LDFLAGS=${EXTRA_PYTHON_LDFLAGS}'" | 56 | EXTRA_OEMAKE = "V=1 'EXTRA_PYTHON_CFLAGS=${EXTRA_PYTHON_CFLAGS}' 'EXTRA_PYTHON_LDFLAGS=${EXTRA_PYTHON_LDFLAGS}'" |
57 | 57 | ||
58 | do_configure_prepend() { | 58 | do_configure:prepend() { |
59 | # Upstream doesn't ship this and autoreconf won't install it as automake isn't used. | 59 | # Upstream doesn't ship this and autoreconf won't install it as automake isn't used. |
60 | mkdir -p ${S}/config | 60 | mkdir -p ${S}/config |
61 | cp -f $(automake --print-libdir)/install-sh ${S}/config/ | 61 | cp -f $(automake --print-libdir)/install-sh ${S}/config/ |
62 | } | 62 | } |
63 | 63 | ||
64 | 64 | ||
65 | do_install_append() { | 65 | do_install:append() { |
66 | if [ "${@bb.utils.filter('PACKAGECONFIG', 'python', d)}" ]; then | 66 | if [ "${@bb.utils.filter('PACKAGECONFIG', 'python', d)}" ]; then |
67 | oe_runmake 'DESTDIR=${D}' 'PYTHON_SITEPACKAGES_DIR=${PYTHON_SITEPACKAGES_DIR}' install_python | 67 | oe_runmake 'DESTDIR=${D}' 'PYTHON_SITEPACKAGES_DIR=${PYTHON_SITEPACKAGES_DIR}' install_python |
68 | fi | 68 | fi |
69 | } | 69 | } |
70 | 70 | ||
71 | RDEPENDS_${PN} = "libgcc" | 71 | RDEPENDS:${PN} = "libgcc" |
72 | 72 | ||
73 | BBCLASSEXTEND = "native nativesdk" | 73 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/chrpath/chrpath_0.16.bb b/meta/recipes-devtools/chrpath/chrpath_0.16.bb index f12366b4e8..de734e841a 100644 --- a/meta/recipes-devtools/chrpath/chrpath_0.16.bb +++ b/meta/recipes-devtools/chrpath/chrpath_0.16.bb | |||
@@ -16,9 +16,9 @@ inherit autotools | |||
16 | 16 | ||
17 | # We don't have a staged chrpath-native for ensuring our binary is | 17 | # We don't have a staged chrpath-native for ensuring our binary is |
18 | # relocatable, so use the one we've just built | 18 | # relocatable, so use the one we've just built |
19 | CHRPATH_BIN_class-native = "${B}/chrpath" | 19 | CHRPATH_BIN:class-native = "${B}/chrpath" |
20 | 20 | ||
21 | PROVIDES_append_class-native = " chrpath-replacement-native" | 21 | PROVIDES:append:class-native = " chrpath-replacement-native" |
22 | NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}" | 22 | NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}" |
23 | 23 | ||
24 | BBCLASSEXTEND = "native nativesdk" | 24 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/cmake/cmake_3.21.0.bb b/meta/recipes-devtools/cmake/cmake_3.21.0.bb index 64c92b89f2..36c6357dd8 100644 --- a/meta/recipes-devtools/cmake/cmake_3.21.0.bb +++ b/meta/recipes-devtools/cmake/cmake_3.21.0.bb | |||
@@ -4,7 +4,7 @@ inherit cmake bash-completion | |||
4 | 4 | ||
5 | DEPENDS += "curl expat zlib libarchive xz ncurses bzip2" | 5 | DEPENDS += "curl expat zlib libarchive xz ncurses bzip2" |
6 | 6 | ||
7 | SRC_URI_append_class-nativesdk = " \ | 7 | SRC_URI:append:class-nativesdk = " \ |
8 | file://OEToolchainConfig.cmake \ | 8 | file://OEToolchainConfig.cmake \ |
9 | file://environment.d-cmake.sh \ | 9 | file://environment.d-cmake.sh \ |
10 | file://0001-CMakeDetermineSystem-use-oe-environment-vars-to-load.patch \ | 10 | file://0001-CMakeDetermineSystem-use-oe-environment-vars-to-load.patch \ |
@@ -36,7 +36,7 @@ EXTRA_OECMAKE=" \ | |||
36 | -DKWSYS_LFS_WORKS=1 \ | 36 | -DKWSYS_LFS_WORKS=1 \ |
37 | " | 37 | " |
38 | 38 | ||
39 | do_install_append_class-nativesdk() { | 39 | do_install:append:class-nativesdk() { |
40 | mkdir -p ${D}${datadir}/cmake | 40 | mkdir -p ${D}${datadir}/cmake |
41 | install -m 644 ${WORKDIR}/OEToolchainConfig.cmake ${D}${datadir}/cmake/ | 41 | install -m 644 ${WORKDIR}/OEToolchainConfig.cmake ${D}${datadir}/cmake/ |
42 | 42 | ||
@@ -44,10 +44,10 @@ do_install_append_class-nativesdk() { | |||
44 | install -m 644 ${WORKDIR}/environment.d-cmake.sh ${D}${SDKPATHNATIVE}/environment-setup.d/cmake.sh | 44 | install -m 644 ${WORKDIR}/environment.d-cmake.sh ${D}${SDKPATHNATIVE}/environment-setup.d/cmake.sh |
45 | } | 45 | } |
46 | 46 | ||
47 | FILES_${PN}_append_class-nativesdk = " ${SDKPATHNATIVE}" | 47 | FILES:${PN}:append:class-nativesdk = " ${SDKPATHNATIVE}" |
48 | 48 | ||
49 | FILES_${PN} += "${datadir}/cmake-${CMAKE_MAJOR_VERSION} ${datadir}/cmake ${datadir}/aclocal ${datadir}/emacs ${datadir}/vim" | 49 | FILES:${PN} += "${datadir}/cmake-${CMAKE_MAJOR_VERSION} ${datadir}/cmake ${datadir}/aclocal ${datadir}/emacs ${datadir}/vim" |
50 | FILES_${PN}-doc += "${docdir}/cmake-${CMAKE_MAJOR_VERSION}" | 50 | FILES:${PN}-doc += "${docdir}/cmake-${CMAKE_MAJOR_VERSION}" |
51 | FILES_${PN}-dev = "" | 51 | FILES:${PN}-dev = "" |
52 | 52 | ||
53 | BBCLASSEXTEND = "nativesdk" | 53 | BBCLASSEXTEND = "nativesdk" |
diff --git a/meta/recipes-devtools/createrepo-c/createrepo-c_0.17.4.bb b/meta/recipes-devtools/createrepo-c/createrepo-c_0.17.4.bb index 206c27c04f..6313afc108 100644 --- a/meta/recipes-devtools/createrepo-c/createrepo-c_0.17.4.bb +++ b/meta/recipes-devtools/createrepo-c/createrepo-c_0.17.4.bb | |||
@@ -13,7 +13,7 @@ SRCREV = "cb74969736bdea86465e85feeceb895ff7a42610" | |||
13 | S = "${WORKDIR}/git" | 13 | S = "${WORKDIR}/git" |
14 | 14 | ||
15 | DEPENDS = "expat curl glib-2.0 libxml2 openssl bzip2 zlib file sqlite3 xz rpm" | 15 | DEPENDS = "expat curl glib-2.0 libxml2 openssl bzip2 zlib file sqlite3 xz rpm" |
16 | DEPENDS_append_class-native = " file-replacement-native" | 16 | DEPENDS:append:class-native = " file-replacement-native" |
17 | 17 | ||
18 | inherit cmake pkgconfig bash-completion distutils3-base | 18 | inherit cmake pkgconfig bash-completion distutils3-base |
19 | 19 | ||
@@ -22,7 +22,7 @@ EXTRA_OECMAKE = " -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} -DPYTHON_DESIR | |||
22 | BBCLASSEXTEND = "native nativesdk" | 22 | BBCLASSEXTEND = "native nativesdk" |
23 | 23 | ||
24 | # Direct createrepo to read rpm configuration from our sysroot, not the one it was compiled in | 24 | # Direct createrepo to read rpm configuration from our sysroot, not the one it was compiled in |
25 | do_install_append_class-native() { | 25 | do_install:append:class-native() { |
26 | create_wrapper ${D}/${bindir}/createrepo_c \ | 26 | create_wrapper ${D}/${bindir}/createrepo_c \ |
27 | RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm \ | 27 | RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm \ |
28 | MAGIC=${STAGING_DIR_NATIVE}${datadir_native}/misc/magic.mgc | 28 | MAGIC=${STAGING_DIR_NATIVE}${datadir_native}/misc/magic.mgc |
@@ -30,7 +30,7 @@ do_install_append_class-native() { | |||
30 | MAGIC=${STAGING_DIR_NATIVE}${datadir_native}/misc/magic.mgc | 30 | MAGIC=${STAGING_DIR_NATIVE}${datadir_native}/misc/magic.mgc |
31 | } | 31 | } |
32 | 32 | ||
33 | do_install_append_class-nativesdk() { | 33 | do_install:append:class-nativesdk() { |
34 | create_wrapper ${D}/${bindir}/createrepo_c \ | 34 | create_wrapper ${D}/${bindir}/createrepo_c \ |
35 | RPM_CONFIGDIR=${SDKPATHNATIVE}${libdir_nativesdk}/rpm \ | 35 | RPM_CONFIGDIR=${SDKPATHNATIVE}${libdir_nativesdk}/rpm \ |
36 | MAGIC=${SDKPATHNATIVE}${datadir}/misc/magic.mgc | 36 | MAGIC=${SDKPATHNATIVE}${datadir}/misc/magic.mgc |
diff --git a/meta/recipes-devtools/dejagnu/dejagnu_1.6.3.bb b/meta/recipes-devtools/dejagnu/dejagnu_1.6.3.bb index ce35b806ba..bcc56e5500 100644 --- a/meta/recipes-devtools/dejagnu/dejagnu_1.6.3.bb +++ b/meta/recipes-devtools/dejagnu/dejagnu_1.6.3.bb | |||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | |||
7 | SECTION = "devel" | 7 | SECTION = "devel" |
8 | 8 | ||
9 | DEPENDS += "expect-native" | 9 | DEPENDS += "expect-native" |
10 | RDEPENDS_${PN} = "expect" | 10 | RDEPENDS:${PN} = "expect" |
11 | 11 | ||
12 | inherit autotools | 12 | inherit autotools |
13 | 13 | ||
diff --git a/meta/recipes-devtools/desktop-file-utils/desktop-file-utils_0.26.bb b/meta/recipes-devtools/desktop-file-utils/desktop-file-utils_0.26.bb index 3487666b92..da9a38335c 100644 --- a/meta/recipes-devtools/desktop-file-utils/desktop-file-utils_0.26.bb +++ b/meta/recipes-devtools/desktop-file-utils/desktop-file-utils_0.26.bb | |||
@@ -19,7 +19,7 @@ EXTRA_OECONF += "ac_cv_prog_EMACS=no" | |||
19 | 19 | ||
20 | BBCLASSEXTEND = "native nativesdk" | 20 | BBCLASSEXTEND = "native nativesdk" |
21 | 21 | ||
22 | do_install_append() { | 22 | do_install:append() { |
23 | rm -rf ${D}${datadir}/emacs | 23 | rm -rf ${D}${datadir}/emacs |
24 | } | 24 | } |
25 | 25 | ||
diff --git a/meta/recipes-devtools/devel-config/distcc-config.bb b/meta/recipes-devtools/devel-config/distcc-config.bb index db9e8bbcc9..698fd3585a 100644 --- a/meta/recipes-devtools/devel-config/distcc-config.bb +++ b/meta/recipes-devtools/devel-config/distcc-config.bb | |||
@@ -20,4 +20,4 @@ do_install() { | |||
20 | install -m 0755 distcc.sh ${D}${sysconfdir}/profile.d/ | 20 | install -m 0755 distcc.sh ${D}${sysconfdir}/profile.d/ |
21 | } | 21 | } |
22 | 22 | ||
23 | RDEPENDS_${PN} = "distcc" | 23 | RDEPENDS:${PN} = "distcc" |
diff --git a/meta/recipes-devtools/devel-config/nfs-export-root.bb b/meta/recipes-devtools/devel-config/nfs-export-root.bb index 56375a47b7..0aaec36b41 100644 --- a/meta/recipes-devtools/devel-config/nfs-export-root.bb +++ b/meta/recipes-devtools/devel-config/nfs-export-root.bb | |||
@@ -14,4 +14,4 @@ do_install() { | |||
14 | install -m 0644 exports ${D}${sysconfdir}/ | 14 | install -m 0644 exports ${D}${sysconfdir}/ |
15 | } | 15 | } |
16 | 16 | ||
17 | RDEPENDS_${PN} = "packagegroup-core-nfs-server" | 17 | RDEPENDS:${PN} = "packagegroup-core-nfs-server" |
diff --git a/meta/recipes-devtools/distcc/distcc_3.4.bb b/meta/recipes-devtools/distcc/distcc_3.4.bb index 3bab6d53eb..d4fc0356e6 100644 --- a/meta/recipes-devtools/distcc/distcc_3.4.bb +++ b/meta/recipes-devtools/distcc/distcc_3.4.bb | |||
@@ -13,7 +13,7 @@ PACKAGECONFIG[gtk] = "--with-gtk,--without-gtk --without-gnome,gtk+" | |||
13 | # use system popt by default | 13 | # use system popt by default |
14 | PACKAGECONFIG[popt] = "--without-included-popt,--with-included-popt,popt" | 14 | PACKAGECONFIG[popt] = "--without-included-popt,--with-included-popt,popt" |
15 | 15 | ||
16 | RRECOMMENDS_${PN}-server = "avahi-daemon" | 16 | RRECOMMENDS:${PN}-server = "avahi-daemon" |
17 | 17 | ||
18 | SRC_URI = "git://github.com/distcc/distcc.git \ | 18 | SRC_URI = "git://github.com/distcc/distcc.git \ |
19 | file://default \ | 19 | file://default \ |
@@ -33,7 +33,7 @@ EXTRA_OECONF += "--disable-Werror PYTHON='' --disable-pump-mode" | |||
33 | PACKAGE_BEFORE_PN = "${PN}-distmon-gnome ${PN}-server" | 33 | PACKAGE_BEFORE_PN = "${PN}-distmon-gnome ${PN}-server" |
34 | 34 | ||
35 | USERADD_PACKAGES = "${PN}-server" | 35 | USERADD_PACKAGES = "${PN}-server" |
36 | USERADD_PARAM_${PN}-server = "--system \ | 36 | USERADD_PARAM:${PN}-server = "--system \ |
37 | --home /dev/null \ | 37 | --home /dev/null \ |
38 | --no-create-home \ | 38 | --no-create-home \ |
39 | --gid nogroup \ | 39 | --gid nogroup \ |
@@ -43,7 +43,7 @@ UPDATERCPN = "${PN}-server" | |||
43 | INITSCRIPT_NAME = "distcc" | 43 | INITSCRIPT_NAME = "distcc" |
44 | 44 | ||
45 | SYSTEMD_PACKAGES = "${PN}-server" | 45 | SYSTEMD_PACKAGES = "${PN}-server" |
46 | SYSTEMD_SERVICE_${PN}-server = "distcc.service" | 46 | SYSTEMD_SERVICE:${PN}-server = "distcc.service" |
47 | 47 | ||
48 | do_install() { | 48 | do_install() { |
49 | # Improve reproducibility: compress w/o timestamps | 49 | # Improve reproducibility: compress w/o timestamps |
@@ -57,10 +57,10 @@ do_install() { | |||
57 | sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_unitdir}/system/distcc.service | 57 | sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_unitdir}/system/distcc.service |
58 | } | 58 | } |
59 | 59 | ||
60 | FILES_${PN}-server = "${sysconfdir} \ | 60 | FILES:${PN}-server = "${sysconfdir} \ |
61 | ${bindir}/distccd \ | 61 | ${bindir}/distccd \ |
62 | ${sbindir}" | 62 | ${sbindir}" |
63 | FILES_${PN}-distmon-gnome = "${bindir}/distccmon-gnome \ | 63 | FILES:${PN}-distmon-gnome = "${bindir}/distccmon-gnome \ |
64 | ${datadir}/applications \ | 64 | ${datadir}/applications \ |
65 | ${datadir}/pixmaps" | 65 | ${datadir}/pixmaps" |
66 | 66 | ||
diff --git a/meta/recipes-devtools/dnf/dnf_4.8.0.bb b/meta/recipes-devtools/dnf/dnf_4.8.0.bb index 44c4405939..f51d74797d 100644 --- a/meta/recipes-devtools/dnf/dnf_4.8.0.bb +++ b/meta/recipes-devtools/dnf/dnf_4.8.0.bb | |||
@@ -32,7 +32,7 @@ EXTRA_OECMAKE = " -DWITH_MAN=0 -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} - | |||
32 | 32 | ||
33 | BBCLASSEXTEND = "native nativesdk" | 33 | BBCLASSEXTEND = "native nativesdk" |
34 | 34 | ||
35 | RDEPENDS_${PN} += " \ | 35 | RDEPENDS:${PN} += " \ |
36 | python3-core \ | 36 | python3-core \ |
37 | python3-codecs \ | 37 | python3-codecs \ |
38 | python3-netclient \ | 38 | python3-netclient \ |
@@ -55,32 +55,32 @@ RDEPENDS_${PN} += " \ | |||
55 | python3-gpg \ | 55 | python3-gpg \ |
56 | " | 56 | " |
57 | 57 | ||
58 | RDEPENDS_${PN}_class-native = "" | 58 | RDEPENDS:${PN}:class-native = "" |
59 | 59 | ||
60 | RRECOMMENDS_${PN}_class-target += "gnupg" | 60 | RRECOMMENDS:${PN}:class-target += "gnupg" |
61 | 61 | ||
62 | # Create a symlink called 'dnf' as 'make install' does not do it, but | 62 | # Create a symlink called 'dnf' as 'make install' does not do it, but |
63 | # .spec file in dnf source tree does (and then Fedora and dnf documentation | 63 | # .spec file in dnf source tree does (and then Fedora and dnf documentation |
64 | # says that dnf binary is plain 'dnf'). | 64 | # says that dnf binary is plain 'dnf'). |
65 | do_install_append() { | 65 | do_install:append() { |
66 | lnr ${D}/${bindir}/dnf-3 ${D}/${bindir}/dnf | 66 | lnr ${D}/${bindir}/dnf-3 ${D}/${bindir}/dnf |
67 | lnr ${D}/${bindir}/dnf-automatic-3 ${D}/${bindir}/dnf-automatic | 67 | lnr ${D}/${bindir}/dnf-automatic-3 ${D}/${bindir}/dnf-automatic |
68 | } | 68 | } |
69 | 69 | ||
70 | # Direct dnf-native to read rpm configuration from our sysroot, not the one it was compiled in | 70 | # Direct dnf-native to read rpm configuration from our sysroot, not the one it was compiled in |
71 | do_install_append_class-native() { | 71 | do_install:append:class-native() { |
72 | create_wrapper ${D}/${bindir}/dnf \ | 72 | create_wrapper ${D}/${bindir}/dnf \ |
73 | RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm \ | 73 | RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm \ |
74 | RPM_NO_CHROOT_FOR_SCRIPTS=1 | 74 | RPM_NO_CHROOT_FOR_SCRIPTS=1 |
75 | } | 75 | } |
76 | 76 | ||
77 | do_install_append_class-nativesdk() { | 77 | do_install:append:class-nativesdk() { |
78 | create_wrapper ${D}/${bindir}/dnf \ | 78 | create_wrapper ${D}/${bindir}/dnf \ |
79 | RPM_CONFIGDIR=${SDKPATHNATIVE}${libdir_nativesdk}/rpm \ | 79 | RPM_CONFIGDIR=${SDKPATHNATIVE}${libdir_nativesdk}/rpm \ |
80 | RPM_NO_CHROOT_FOR_SCRIPTS=1 | 80 | RPM_NO_CHROOT_FOR_SCRIPTS=1 |
81 | } | 81 | } |
82 | 82 | ||
83 | SYSTEMD_SERVICE_${PN} = "dnf-makecache.service dnf-makecache.timer \ | 83 | SYSTEMD_SERVICE:${PN} = "dnf-makecache.service dnf-makecache.timer \ |
84 | dnf-automatic.service dnf-automatic.timer \ | 84 | dnf-automatic.service dnf-automatic.timer \ |
85 | dnf-automatic-download.service dnf-automatic-download.timer \ | 85 | dnf-automatic-download.service dnf-automatic-download.timer \ |
86 | dnf-automatic-install.service dnf-automatic-install.timer \ | 86 | dnf-automatic-install.service dnf-automatic-install.timer \ |
diff --git a/meta/recipes-devtools/docbook-xml/docbook-xml-dtd4_4.5.bb b/meta/recipes-devtools/docbook-xml/docbook-xml-dtd4_4.5.bb index 6452c8d99f..2bec1442af 100644 --- a/meta/recipes-devtools/docbook-xml/docbook-xml-dtd4_4.5.bb +++ b/meta/recipes-devtools/docbook-xml/docbook-xml-dtd4_4.5.bb | |||
@@ -49,4 +49,4 @@ do_install () { | |||
49 | XMLCATALOGS = "${sysconfdir}/xml/docbook-xml.xml" | 49 | XMLCATALOGS = "${sysconfdir}/xml/docbook-xml.xml" |
50 | inherit xmlcatalog | 50 | inherit xmlcatalog |
51 | 51 | ||
52 | FILES_${PN} = "${datadir}/* ${sysconfdir}/xml/docbook-xml.xml" | 52 | FILES:${PN} = "${datadir}/* ${sysconfdir}/xml/docbook-xml.xml" |
diff --git a/meta/recipes-devtools/docbook-xml/docbook-xsl-stylesheets_1.79.1.bb b/meta/recipes-devtools/docbook-xml/docbook-xsl-stylesheets_1.79.1.bb index c5d3a24808..beda0abe95 100644 --- a/meta/recipes-devtools/docbook-xml/docbook-xsl-stylesheets_1.79.1.bb +++ b/meta/recipes-devtools/docbook-xml/docbook-xsl-stylesheets_1.79.1.bb | |||
@@ -42,9 +42,9 @@ do_install () { | |||
42 | install -v -m644 README RELEASE-NOTES* NEWS* ${D}${docdir}/${BPN} | 42 | install -v -m644 README RELEASE-NOTES* NEWS* ${D}${docdir}/${BPN} |
43 | } | 43 | } |
44 | 44 | ||
45 | RDEPENDS_${PN} += "perl" | 45 | RDEPENDS:${PN} += "perl" |
46 | FILES_${PN} = "${datadir}/xml/* ${sysconfdir}/xml/docbook-xsl.xml" | 46 | FILES:${PN} = "${datadir}/xml/* ${sysconfdir}/xml/docbook-xsl.xml" |
47 | FILES_${PN}-doc = "${datadir}/doc/*" | 47 | FILES:${PN}-doc = "${datadir}/doc/*" |
48 | 48 | ||
49 | XMLCATALOGS = "${datadir}/xml/docbook/xsl-stylesheets-${PV}/catalog.xml" | 49 | XMLCATALOGS = "${datadir}/xml/docbook/xsl-stylesheets-${PV}/catalog.xml" |
50 | 50 | ||
diff --git a/meta/recipes-devtools/dosfstools/dosfstools_4.2.bb b/meta/recipes-devtools/dosfstools/dosfstools_4.2.bb index 7476c043c9..bdebfc190a 100644 --- a/meta/recipes-devtools/dosfstools/dosfstools_4.2.bb +++ b/meta/recipes-devtools/dosfstools/dosfstools_4.2.bb | |||
@@ -24,5 +24,5 @@ CFLAGS += "-D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" | |||
24 | BBCLASSEXTEND = "native nativesdk" | 24 | BBCLASSEXTEND = "native nativesdk" |
25 | 25 | ||
26 | ALTERNATIVE_PRIORITY = "100" | 26 | ALTERNATIVE_PRIORITY = "100" |
27 | ALTERNATIVE_${PN} = "mkfs.vfat" | 27 | ALTERNATIVE:${PN} = "mkfs.vfat" |
28 | ALTERNATIVE_LINK_NAME[mkfs.vfat] = "${sbindir}/mkfs.vfat" | 28 | ALTERNATIVE_LINK_NAME[mkfs.vfat] = "${sbindir}/mkfs.vfat" |
diff --git a/meta/recipes-devtools/dpkg/dpkg.inc b/meta/recipes-devtools/dpkg/dpkg.inc index 7acfb4161d..b6807b004f 100644 --- a/meta/recipes-devtools/dpkg/dpkg.inc +++ b/meta/recipes-devtools/dpkg/dpkg.inc | |||
@@ -5,18 +5,18 @@ DESCRIPTION = "The primary interface for the dpkg suite is the dselect program. | |||
5 | SECTION = "base" | 5 | SECTION = "base" |
6 | 6 | ||
7 | DEPENDS = "zlib bzip2 perl ncurses" | 7 | DEPENDS = "zlib bzip2 perl ncurses" |
8 | DEPENDS_class-native = "bzip2-replacement-native zlib-native virtual/update-alternatives-native gettext-native perl-native" | 8 | DEPENDS:class-native = "bzip2-replacement-native zlib-native virtual/update-alternatives-native gettext-native perl-native" |
9 | RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} perl" | 9 | RDEPENDS:${PN} = "${VIRTUAL-RUNTIME_update-alternatives} perl" |
10 | RDEPENDS_${PN}_class-native = "" | 10 | RDEPENDS:${PN}:class-native = "" |
11 | 11 | ||
12 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))" | 12 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))" |
13 | 13 | ||
14 | inherit autotools gettext perlnative pkgconfig perl-version update-alternatives | 14 | inherit autotools gettext perlnative pkgconfig perl-version update-alternatives |
15 | 15 | ||
16 | PERL_class-native = "${STAGING_BINDIR_NATIVE}/perl-native/perl" | 16 | PERL:class-native = "${STAGING_BINDIR_NATIVE}/perl-native/perl" |
17 | 17 | ||
18 | export PERL_LIBDIR = "${libdir}/perl/${@get_perl_version(d)}" | 18 | export PERL_LIBDIR = "${libdir}/perl/${@get_perl_version(d)}" |
19 | PERL_LIBDIR_class-native = "${libdir}/perl-native/perl/${@get_perl_version(d)}" | 19 | PERL_LIBDIR:class-native = "${libdir}/perl-native/perl/${@get_perl_version(d)}" |
20 | 20 | ||
21 | EXTRA_OECONF = "\ | 21 | EXTRA_OECONF = "\ |
22 | --disable-dselect \ | 22 | --disable-dselect \ |
@@ -27,8 +27,8 @@ EXTRA_OECONF = "\ | |||
27 | TAR=tar \ | 27 | TAR=tar \ |
28 | " | 28 | " |
29 | 29 | ||
30 | EXTRA_OECONF_append_class-target = " --disable-update-alternatives DEB_HOST_ARCH=${DPKG_ARCH}" | 30 | EXTRA_OECONF:append:class-target = " --disable-update-alternatives DEB_HOST_ARCH=${DPKG_ARCH}" |
31 | EXTRA_OECONF_append_class-nativesdk = " --disable-update-alternatives DEB_HOST_ARCH=${DPKG_ARCH}" | 31 | EXTRA_OECONF:append:class-nativesdk = " --disable-update-alternatives DEB_HOST_ARCH=${DPKG_ARCH}" |
32 | 32 | ||
33 | PACKAGECONFIG = "liblzma" | 33 | PACKAGECONFIG = "liblzma" |
34 | PACKAGECONFIG[liblzma] = "--with-liblzma,--without-liblzma, xz" | 34 | PACKAGECONFIG[liblzma] = "--with-liblzma,--without-liblzma, xz" |
@@ -37,7 +37,7 @@ PACKAGECONFIG[liblzma] = "--with-liblzma,--without-liblzma, xz" | |||
37 | #autotools.bbclass default AUTOTOOLS_AUXDIR is ${S}, we need to under ${S}/build-aux | 37 | #autotools.bbclass default AUTOTOOLS_AUXDIR is ${S}, we need to under ${S}/build-aux |
38 | AUTOTOOLS_AUXDIR = "${S}/build-aux" | 38 | AUTOTOOLS_AUXDIR = "${S}/build-aux" |
39 | 39 | ||
40 | do_configure_prepend () { | 40 | do_configure:prepend () { |
41 | mkdir -p ${AUTOTOOLS_AUXDIR} | 41 | mkdir -p ${AUTOTOOLS_AUXDIR} |
42 | # autotools_do_configure updates po/Makefile.in.in, we also need | 42 | # autotools_do_configure updates po/Makefile.in.in, we also need |
43 | # update dselect/po and scripts/po | 43 | # update dselect/po and scripts/po |
@@ -45,7 +45,7 @@ do_configure_prepend () { | |||
45 | cp -f ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in ${S}/scripts/po/ | 45 | cp -f ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in ${S}/scripts/po/ |
46 | } | 46 | } |
47 | 47 | ||
48 | do_install_append () { | 48 | do_install:append () { |
49 | if [ "${PN}" = "dpkg-native" ]; then | 49 | if [ "${PN}" = "dpkg-native" ]; then |
50 | # update-alternatives doesn't have an offline mode | 50 | # update-alternatives doesn't have an offline mode |
51 | rm ${D}${bindir}/update-alternatives | 51 | rm ${D}${bindir}/update-alternatives |
@@ -56,19 +56,19 @@ do_install_append () { | |||
56 | } | 56 | } |
57 | 57 | ||
58 | PROV = "virtual/update-alternatives" | 58 | PROV = "virtual/update-alternatives" |
59 | PROV_class-native = "" | 59 | PROV:class-native = "" |
60 | PROV_class-nativesdk = "" | 60 | PROV:class-nativesdk = "" |
61 | 61 | ||
62 | PROVIDES += "${PROV}" | 62 | PROVIDES += "${PROV}" |
63 | 63 | ||
64 | PACKAGES =+ "update-alternatives-dpkg" | 64 | PACKAGES =+ "update-alternatives-dpkg" |
65 | FILES_update-alternatives-dpkg = "${bindir}/update-alternatives ${localstatedir}/lib/dpkg/alternatives ${sysconfdir}/alternatives" | 65 | FILES:update-alternatives-dpkg = "${bindir}/update-alternatives ${localstatedir}/lib/dpkg/alternatives ${sysconfdir}/alternatives" |
66 | RPROVIDES_update-alternatives-dpkg += "update-alternatives" | 66 | RPROVIDES:update-alternatives-dpkg += "update-alternatives" |
67 | 67 | ||
68 | PACKAGES += "${PN}-perl" | 68 | PACKAGES += "${PN}-perl" |
69 | FILES_${PN}-perl = "${libdir}/perl/${@get_perl_version(d)}" | 69 | FILES:${PN}-perl = "${libdir}/perl/${@get_perl_version(d)}" |
70 | 70 | ||
71 | RDEPENDS_${PN}-perl += "perl-module-carp perl-module-constant \ | 71 | RDEPENDS:${PN}-perl += "perl-module-carp perl-module-constant \ |
72 | perl-module-cwd perl-module-digest \ | 72 | perl-module-cwd perl-module-digest \ |
73 | perl-module-digest-md5 perl-module-errno \ | 73 | perl-module-digest-md5 perl-module-errno \ |
74 | perl-module-exporter perl-module-fcntl \ | 74 | perl-module-exporter perl-module-fcntl \ |
@@ -92,13 +92,13 @@ RDEPENDS_${PN}-perl += "perl-module-carp perl-module-constant \ | |||
92 | # the bitbake version. | 92 | # the bitbake version. |
93 | # | 93 | # |
94 | PACKAGES =+ "${PN}-start-stop" | 94 | PACKAGES =+ "${PN}-start-stop" |
95 | FILES_${PN}-start-stop = "${sbindir}/start-stop-daemon.${BPN}" | 95 | FILES:${PN}-start-stop = "${sbindir}/start-stop-daemon.${BPN}" |
96 | ALTERNATIVE_${PN}-start-stop = "start-stop-daemon" | 96 | ALTERNATIVE:${PN}-start-stop = "start-stop-daemon" |
97 | ALTERNATIVE_LINK_NAME[start-stop-daemon] = "${sbindir}/start-stop-daemon" | 97 | ALTERNATIVE_LINK_NAME[start-stop-daemon] = "${sbindir}/start-stop-daemon" |
98 | ALTERNATIVE_PRIORITY = "100" | 98 | ALTERNATIVE_PRIORITY = "100" |
99 | 99 | ||
100 | EXTRA_RDPENDS = "ldconfig" | 100 | EXTRA_RDPENDS = "ldconfig" |
101 | EXTRA_RDPENDS_libc-musl = "" | 101 | EXTRA_RDPENDS:libc-musl = "" |
102 | RDEPENDS_${PN} += "${PN}-start-stop ${EXTRA_RDPENDS}" | 102 | RDEPENDS:${PN} += "${PN}-start-stop ${EXTRA_RDPENDS}" |
103 | 103 | ||
104 | BBCLASSEXTEND = "native nativesdk" | 104 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/dpkg/dpkg_1.20.9.bb b/meta/recipes-devtools/dpkg/dpkg_1.20.9.bb index 18ca0e310b..34b6bfe0a8 100644 --- a/meta/recipes-devtools/dpkg/dpkg_1.20.9.bb +++ b/meta/recipes-devtools/dpkg/dpkg_1.20.9.bb | |||
@@ -18,7 +18,7 @@ SRC_URI = "git://salsa.debian.org/dpkg-team/dpkg.git;protocol=https;branch=1.20. | |||
18 | file://0014-arch-Add-support-for-ARCv2-CPU.patch \ | 18 | file://0014-arch-Add-support-for-ARCv2-CPU.patch \ |
19 | " | 19 | " |
20 | 20 | ||
21 | SRC_URI_append_class-native = " file://0001-build.c-ignore-return-of-1-from-tar-cf.patch" | 21 | SRC_URI:append:class-native = " file://0001-build.c-ignore-return-of-1-from-tar-cf.patch" |
22 | 22 | ||
23 | SRCREV = "2177b782b16e77e97c9643961a5ae3c639bcc4a3" | 23 | SRCREV = "2177b782b16e77e97c9643961a5ae3c639bcc4a3" |
24 | 24 | ||
diff --git a/meta/recipes-devtools/dwarfsrcfiles/dwarfsrcfiles.bb b/meta/recipes-devtools/dwarfsrcfiles/dwarfsrcfiles.bb index 56b52d6a47..1a05a1a387 100644 --- a/meta/recipes-devtools/dwarfsrcfiles/dwarfsrcfiles.bb +++ b/meta/recipes-devtools/dwarfsrcfiles/dwarfsrcfiles.bb | |||
@@ -6,13 +6,13 @@ LIC_FILES_CHKSUM = "file://../dwarfsrcfiles.c;md5=31483894e453a77acbb67847565f1b | |||
6 | SRC_URI = "file://dwarfsrcfiles.c" | 6 | SRC_URI = "file://dwarfsrcfiles.c" |
7 | BBCLASSEXTEND = "native" | 7 | BBCLASSEXTEND = "native" |
8 | DEPENDS = "elfutils" | 8 | DEPENDS = "elfutils" |
9 | DEPENDS_append_libc-musl = " argp-standalone" | 9 | DEPENDS:append:libc-musl = " argp-standalone" |
10 | 10 | ||
11 | do_compile () { | 11 | do_compile () { |
12 | ${CC} ${CFLAGS} ${LDFLAGS} -o dwarfsrcfiles ../dwarfsrcfiles.c -lelf -ldw | 12 | ${CC} ${CFLAGS} ${LDFLAGS} -o dwarfsrcfiles ../dwarfsrcfiles.c -lelf -ldw |
13 | } | 13 | } |
14 | 14 | ||
15 | do_compile_libc-musl () { | 15 | do_compile:libc-musl () { |
16 | ${CC} ${CFLAGS} ${LDFLAGS} -o dwarfsrcfiles ../dwarfsrcfiles.c -lelf -ldw -largp | 16 | ${CC} ${CFLAGS} ${LDFLAGS} -o dwarfsrcfiles ../dwarfsrcfiles.c -lelf -ldw -largp |
17 | } | 17 | } |
18 | 18 | ||
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs.inc b/meta/recipes-devtools/e2fsprogs/e2fsprogs.inc index 2f113c5e8d..c80b93c802 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs.inc +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs.inc | |||
@@ -4,11 +4,11 @@ fixing, configuring , and debugging ext2 filesystems." | |||
4 | HOMEPAGE = "http://e2fsprogs.sourceforge.net/" | 4 | HOMEPAGE = "http://e2fsprogs.sourceforge.net/" |
5 | 5 | ||
6 | LICENSE = "GPLv2 & LGPLv2 & BSD & MIT" | 6 | LICENSE = "GPLv2 & LGPLv2 & BSD & MIT" |
7 | LICENSE_e2fsprogs-dumpe2fs = "GPLv2" | 7 | LICENSE:e2fsprogs-dumpe2fs = "GPLv2" |
8 | LICENSE_e2fsprogs-e2fsck = "GPLv2" | 8 | LICENSE:e2fsprogs-e2fsck = "GPLv2" |
9 | LICENSE_e2fsprogs-mke2fs = "GPLv2" | 9 | LICENSE:e2fsprogs-mke2fs = "GPLv2" |
10 | LICENSE_e2fsprogs-tune2fs = "GPLv2" | 10 | LICENSE:e2fsprogs-tune2fs = "GPLv2" |
11 | LICENSE_e2fsprogs-badblocks = "GPLv2" | 11 | LICENSE:e2fsprogs-badblocks = "GPLv2" |
12 | LIC_FILES_CHKSUM = "file://NOTICE;md5=d50be0580c0b0a7fbc7a4830bbe6c12b \ | 12 | LIC_FILES_CHKSUM = "file://NOTICE;md5=d50be0580c0b0a7fbc7a4830bbe6c12b \ |
13 | file://lib/ext2fs/ext2fs.h;beginline=1;endline=9;md5=596a8dedcb4e731c6b21c7a46fba6bef \ | 13 | file://lib/ext2fs/ext2fs.h;beginline=1;endline=9;md5=596a8dedcb4e731c6b21c7a46fba6bef \ |
14 | file://lib/e2p/e2p.h;beginline=1;endline=7;md5=8a74ade8f9d65095d70ef2d4bf48e36a \ | 14 | file://lib/e2p/e2p.h;beginline=1;endline=7;md5=8a74ade8f9d65095d70ef2d4bf48e36a \ |
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.46.2.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.46.2.bb index fc022f37de..d68d131e0a 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.46.2.bb +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.46.2.bb | |||
@@ -8,7 +8,7 @@ SRC_URI += "file://remove.ldconfig.call.patch \ | |||
8 | file://0001-lib-ext2fs-unix_io.c-revert-parts-of-libext2fs-fix-p.patch \ | 8 | file://0001-lib-ext2fs-unix_io.c-revert-parts-of-libext2fs-fix-p.patch \ |
9 | " | 9 | " |
10 | 10 | ||
11 | SRC_URI_append_class-native = " file://e2fsprogs-fix-missing-check-for-permission-denied.patch \ | 11 | SRC_URI:append:class-native = " file://e2fsprogs-fix-missing-check-for-permission-denied.patch \ |
12 | file://quiet-debugfs.patch \ | 12 | file://quiet-debugfs.patch \ |
13 | " | 13 | " |
14 | 14 | ||
@@ -21,14 +21,14 @@ EXTRA_OECONF += "--libdir=${base_libdir} --sbindir=${base_sbindir} \ | |||
21 | --disable-libblkid --enable-verbose-makecmds \ | 21 | --disable-libblkid --enable-verbose-makecmds \ |
22 | --with-crond-dir=no" | 22 | --with-crond-dir=no" |
23 | 23 | ||
24 | EXTRA_OECONF_darwin = "--libdir=${base_libdir} --sbindir=${base_sbindir} --enable-bsd-shlibs" | 24 | EXTRA_OECONF:darwin = "--libdir=${base_libdir} --sbindir=${base_sbindir} --enable-bsd-shlibs" |
25 | 25 | ||
26 | PACKAGECONFIG ??= "" | 26 | PACKAGECONFIG ??= "" |
27 | PACKAGECONFIG[fuse] = '--enable-fuse2fs,--disable-fuse2fs,fuse' | 27 | PACKAGECONFIG[fuse] = '--enable-fuse2fs,--disable-fuse2fs,fuse' |
28 | 28 | ||
29 | # make locale rules sometimes fire, sometimes don't as git doesn't preserve | 29 | # make locale rules sometimes fire, sometimes don't as git doesn't preserve |
30 | # file mktime. Touch the files introducing non-determinism to the build | 30 | # file mktime. Touch the files introducing non-determinism to the build |
31 | do_compile_prepend (){ | 31 | do_compile:prepend (){ |
32 | find ${S}/po -type f -name "*.po" -exec touch {} + | 32 | find ${S}/po -type f -name "*.po" -exec touch {} + |
33 | } | 33 | } |
34 | 34 | ||
@@ -68,57 +68,57 @@ e2fsprogs_conf_fixup () { | |||
68 | done | 68 | done |
69 | } | 69 | } |
70 | 70 | ||
71 | do_install_append_class-native() { | 71 | do_install:append:class-native() { |
72 | e2fsprogs_conf_fixup | 72 | e2fsprogs_conf_fixup |
73 | } | 73 | } |
74 | 74 | ||
75 | do_install_append_class-nativesdk() { | 75 | do_install:append:class-nativesdk() { |
76 | e2fsprogs_conf_fixup | 76 | e2fsprogs_conf_fixup |
77 | } | 77 | } |
78 | 78 | ||
79 | do_install_append_class-target() { | 79 | do_install:append:class-target() { |
80 | mv ${D}${base_sbindir}/mke2fs ${D}${base_sbindir}/mke2fs.e2fsprogs | 80 | mv ${D}${base_sbindir}/mke2fs ${D}${base_sbindir}/mke2fs.e2fsprogs |
81 | mv ${D}${base_sbindir}/mkfs.ext2 ${D}${base_sbindir}/mkfs.ext2.e2fsprogs | 81 | mv ${D}${base_sbindir}/mkfs.ext2 ${D}${base_sbindir}/mkfs.ext2.e2fsprogs |
82 | mv ${D}${base_sbindir}/tune2fs ${D}${base_sbindir}/tune2fs.e2fsprogs | 82 | mv ${D}${base_sbindir}/tune2fs ${D}${base_sbindir}/tune2fs.e2fsprogs |
83 | } | 83 | } |
84 | 84 | ||
85 | RDEPENDS_e2fsprogs = "e2fsprogs-badblocks e2fsprogs-dumpe2fs" | 85 | RDEPENDS:e2fsprogs = "e2fsprogs-badblocks e2fsprogs-dumpe2fs" |
86 | RRECOMMENDS_e2fsprogs = "e2fsprogs-mke2fs e2fsprogs-e2fsck" | 86 | RRECOMMENDS:e2fsprogs = "e2fsprogs-mke2fs e2fsprogs-e2fsck" |
87 | 87 | ||
88 | PACKAGES =+ "e2fsprogs-badblocks e2fsprogs-dumpe2fs e2fsprogs-e2fsck e2fsprogs-e2scrub e2fsprogs-mke2fs e2fsprogs-resize2fs e2fsprogs-tune2fs" | 88 | PACKAGES =+ "e2fsprogs-badblocks e2fsprogs-dumpe2fs e2fsprogs-e2fsck e2fsprogs-e2scrub e2fsprogs-mke2fs e2fsprogs-resize2fs e2fsprogs-tune2fs" |
89 | PACKAGES =+ "libcomerr libss libe2p libext2fs" | 89 | PACKAGES =+ "libcomerr libss libe2p libext2fs" |
90 | 90 | ||
91 | FILES_e2fsprogs-dumpe2fs = "${base_sbindir}/dumpe2fs" | 91 | FILES:e2fsprogs-dumpe2fs = "${base_sbindir}/dumpe2fs" |
92 | FILES_e2fsprogs-resize2fs = "${base_sbindir}/resize2fs*" | 92 | FILES:e2fsprogs-resize2fs = "${base_sbindir}/resize2fs*" |
93 | FILES_e2fsprogs-e2fsck = "${base_sbindir}/e2fsck ${base_sbindir}/fsck.ext*" | 93 | FILES:e2fsprogs-e2fsck = "${base_sbindir}/e2fsck ${base_sbindir}/fsck.ext*" |
94 | FILES_e2fsprogs-e2scrub = "${base_sbindir}/e2scrub*" | 94 | FILES:e2fsprogs-e2scrub = "${base_sbindir}/e2scrub*" |
95 | FILES_e2fsprogs-mke2fs = "${base_sbindir}/mke2fs.e2fsprogs ${base_sbindir}/mkfs.ext* ${sysconfdir}/mke2fs.conf" | 95 | FILES:e2fsprogs-mke2fs = "${base_sbindir}/mke2fs.e2fsprogs ${base_sbindir}/mkfs.ext* ${sysconfdir}/mke2fs.conf" |
96 | FILES_e2fsprogs-tune2fs = "${base_sbindir}/tune2fs.e2fsprogs ${base_sbindir}/e2label" | 96 | FILES:e2fsprogs-tune2fs = "${base_sbindir}/tune2fs.e2fsprogs ${base_sbindir}/e2label" |
97 | FILES_e2fsprogs-badblocks = "${base_sbindir}/badblocks" | 97 | FILES:e2fsprogs-badblocks = "${base_sbindir}/badblocks" |
98 | FILES_libcomerr = "${base_libdir}/libcom_err.so.*" | 98 | FILES:libcomerr = "${base_libdir}/libcom_err.so.*" |
99 | FILES_libss = "${base_libdir}/libss.so.*" | 99 | FILES:libss = "${base_libdir}/libss.so.*" |
100 | FILES_libe2p = "${base_libdir}/libe2p.so.*" | 100 | FILES:libe2p = "${base_libdir}/libe2p.so.*" |
101 | FILES_libext2fs = "${libdir}/e2initrd_helper ${base_libdir}/libext2fs.so.*" | 101 | FILES:libext2fs = "${libdir}/e2initrd_helper ${base_libdir}/libext2fs.so.*" |
102 | FILES_${PN}-dev += "${datadir}/*/*.awk ${datadir}/*/*.sed ${base_libdir}/*.so ${bindir}/compile_et ${bindir}/mk_cmds" | 102 | FILES:${PN}-dev += "${datadir}/*/*.awk ${datadir}/*/*.sed ${base_libdir}/*.so ${bindir}/compile_et ${bindir}/mk_cmds" |
103 | 103 | ||
104 | ALTERNATIVE_${PN} = "chattr" | 104 | ALTERNATIVE:${PN} = "chattr" |
105 | ALTERNATIVE_PRIORITY = "100" | 105 | ALTERNATIVE_PRIORITY = "100" |
106 | ALTERNATIVE_LINK_NAME[chattr] = "${base_bindir}/chattr" | 106 | ALTERNATIVE_LINK_NAME[chattr] = "${base_bindir}/chattr" |
107 | ALTERNATIVE_TARGET[chattr] = "${base_bindir}/chattr.e2fsprogs" | 107 | ALTERNATIVE_TARGET[chattr] = "${base_bindir}/chattr.e2fsprogs" |
108 | 108 | ||
109 | ALTERNATIVE_${PN}-doc = "fsck.8" | 109 | ALTERNATIVE:${PN}-doc = "fsck.8" |
110 | ALTERNATIVE_LINK_NAME[fsck.8] = "${mandir}/man8/fsck.8" | 110 | ALTERNATIVE_LINK_NAME[fsck.8] = "${mandir}/man8/fsck.8" |
111 | 111 | ||
112 | ALTERNATIVE_${PN}-mke2fs = "mke2fs mkfs.ext2" | 112 | ALTERNATIVE:${PN}-mke2fs = "mke2fs mkfs.ext2" |
113 | ALTERNATIVE_LINK_NAME[mke2fs] = "${base_sbindir}/mke2fs" | 113 | ALTERNATIVE_LINK_NAME[mke2fs] = "${base_sbindir}/mke2fs" |
114 | ALTERNATIVE_LINK_NAME[mkfs.ext2] = "${base_sbindir}/mkfs.ext2" | 114 | ALTERNATIVE_LINK_NAME[mkfs.ext2] = "${base_sbindir}/mkfs.ext2" |
115 | 115 | ||
116 | ALTERNATIVE_${PN}-tune2fs = "tune2fs" | 116 | ALTERNATIVE:${PN}-tune2fs = "tune2fs" |
117 | ALTERNATIVE_LINK_NAME[tune2fs] = "${base_sbindir}/tune2fs" | 117 | ALTERNATIVE_LINK_NAME[tune2fs] = "${base_sbindir}/tune2fs" |
118 | 118 | ||
119 | RDEPENDS_e2fsprogs-e2scrub = "bash" | 119 | RDEPENDS:e2fsprogs-e2scrub = "bash" |
120 | RDEPENDS_${PN}-ptest += "coreutils procps bash bzip2 diffutils perl sed" | 120 | RDEPENDS:${PN}-ptest += "coreutils procps bash bzip2 diffutils perl sed" |
121 | RDEPENDS_${PN}-ptest += "e2fsprogs-badblocks e2fsprogs-dumpe2fs e2fsprogs-e2fsck e2fsprogs-mke2fs e2fsprogs-resize2fs e2fsprogs-tune2fs" | 121 | RDEPENDS:${PN}-ptest += "e2fsprogs-badblocks e2fsprogs-dumpe2fs e2fsprogs-e2fsck e2fsprogs-mke2fs e2fsprogs-resize2fs e2fsprogs-tune2fs" |
122 | 122 | ||
123 | do_compile_ptest() { | 123 | do_compile_ptest() { |
124 | oe_runmake -C ${B}/tests | 124 | oe_runmake -C ${B}/tests |
diff --git a/meta/recipes-devtools/elfutils/elfutils_0.185.bb b/meta/recipes-devtools/elfutils/elfutils_0.185.bb index b1ffbc18bf..3e06e7b200 100644 --- a/meta/recipes-devtools/elfutils/elfutils_0.185.bb +++ b/meta/recipes-devtools/elfutils/elfutils_0.185.bb | |||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | |||
7 | file://debuginfod/debuginfod-client.c;endline=27;md5=f8e9d171c401c493ec45a0b2992ea2ed \ | 7 | file://debuginfod/debuginfod-client.c;endline=27;md5=f8e9d171c401c493ec45a0b2992ea2ed \ |
8 | " | 8 | " |
9 | DEPENDS = "zlib virtual/libintl" | 9 | DEPENDS = "zlib virtual/libintl" |
10 | DEPENDS_append_libc-musl = " argp-standalone fts musl-obstack " | 10 | DEPENDS:append:libc-musl = " argp-standalone fts musl-obstack " |
11 | # The Debian patches below are from: | 11 | # The Debian patches below are from: |
12 | # http://ftp.de.debian.org/debian/pool/main/e/elfutils/elfutils_0.176-1.debian.tar.xz | 12 | # http://ftp.de.debian.org/debian/pool/main/e/elfutils/elfutils_0.176-1.debian.tar.xz |
13 | SRC_URI = "https://sourceware.org/elfutils/ftp/${PV}/${BP}.tar.bz2 \ | 13 | SRC_URI = "https://sourceware.org/elfutils/ftp/${PV}/${BP}.tar.bz2 \ |
@@ -23,7 +23,7 @@ SRC_URI = "https://sourceware.org/elfutils/ftp/${PV}/${BP}.tar.bz2 \ | |||
23 | file://0001-tests-Makefile.am-compile-test_nlist-with-standard-C.patch \ | 23 | file://0001-tests-Makefile.am-compile-test_nlist-with-standard-C.patch \ |
24 | file://0001-debuginfod-debuginfod-client.c-correct-string-format.patch \ | 24 | file://0001-debuginfod-debuginfod-client.c-correct-string-format.patch \ |
25 | " | 25 | " |
26 | SRC_URI_append_libc-musl = " \ | 26 | SRC_URI:append:libc-musl = " \ |
27 | file://0002-musl-libs.patch \ | 27 | file://0002-musl-libs.patch \ |
28 | file://0003-musl-utils.patch \ | 28 | file://0003-musl-utils.patch \ |
29 | file://0004-Fix-error-on-musl.patch \ | 29 | file://0004-Fix-error-on-musl.patch \ |
@@ -36,7 +36,7 @@ inherit autotools gettext ptest pkgconfig | |||
36 | EXTRA_OECONF = "--program-prefix=eu-" | 36 | EXTRA_OECONF = "--program-prefix=eu-" |
37 | 37 | ||
38 | DEPENDS_BZIP2 = "bzip2-replacement-native" | 38 | DEPENDS_BZIP2 = "bzip2-replacement-native" |
39 | DEPENDS_BZIP2_class-target = "bzip2" | 39 | DEPENDS_BZIP2:class-target = "bzip2" |
40 | 40 | ||
41 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'debuginfod', 'debuginfod libdebuginfod', '', d)}" | 41 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'debuginfod', 'debuginfod libdebuginfod', '', d)}" |
42 | PACKAGECONFIG[bzip2] = "--with-bzlib,--without-bzlib,${DEPENDS_BZIP2}" | 42 | PACKAGECONFIG[bzip2] = "--with-bzlib,--without-bzlib,${DEPENDS_BZIP2}" |
@@ -44,11 +44,11 @@ PACKAGECONFIG[xz] = "--with-lzma,--without-lzma,xz" | |||
44 | PACKAGECONFIG[libdebuginfod] = "--enable-libdebuginfod,--disable-libdebuginfod,curl" | 44 | PACKAGECONFIG[libdebuginfod] = "--enable-libdebuginfod,--disable-libdebuginfod,curl" |
45 | PACKAGECONFIG[debuginfod] = "--enable-debuginfod,--disable-debuginfod,libarchive sqlite3 libmicrohttpd" | 45 | PACKAGECONFIG[debuginfod] = "--enable-debuginfod,--disable-debuginfod,libarchive sqlite3 libmicrohttpd" |
46 | 46 | ||
47 | RDEPENDS_${PN}-ptest += "libasm libelf bash make coreutils ${PN}-binutils iproute2-ss bsdtar" | 47 | RDEPENDS:${PN}-ptest += "libasm libelf bash make coreutils ${PN}-binutils iproute2-ss bsdtar" |
48 | 48 | ||
49 | EXTRA_OECONF_append_class-target = " --disable-tests-rpath" | 49 | EXTRA_OECONF:append:class-target = " --disable-tests-rpath" |
50 | 50 | ||
51 | RDEPENDS_${PN}-ptest_append_libc-glibc = " glibc-utils" | 51 | RDEPENDS:${PN}-ptest:append:libc-glibc = " glibc-utils" |
52 | 52 | ||
53 | do_compile_ptest() { | 53 | do_compile_ptest() { |
54 | cd ${B}/tests | 54 | cd ${B}/tests |
@@ -92,8 +92,8 @@ do_install_ptest() { | |||
92 | fi | 92 | fi |
93 | } | 93 | } |
94 | 94 | ||
95 | EXTRA_OEMAKE_class-native = "" | 95 | EXTRA_OEMAKE:class-native = "" |
96 | EXTRA_OEMAKE_class-nativesdk = "" | 96 | EXTRA_OEMAKE:class-nativesdk = "" |
97 | 97 | ||
98 | BBCLASSEXTEND = "native nativesdk" | 98 | BBCLASSEXTEND = "native nativesdk" |
99 | 99 | ||
@@ -105,14 +105,14 @@ PACKAGES =+ "${PN}-binutils libelf libasm libdw libdebuginfod" | |||
105 | # "The license is now GPLv2/LGPLv3+ for the libraries and GPLv3+ for stand-alone | 105 | # "The license is now GPLv2/LGPLv3+ for the libraries and GPLv3+ for stand-alone |
106 | # programs. There is now also a formal CONTRIBUTING document describing how to | 106 | # programs. There is now also a formal CONTRIBUTING document describing how to |
107 | # submit patches." | 107 | # submit patches." |
108 | LICENSE_${PN}-binutils = "GPLv3+" | 108 | LICENSE:${PN}-binutils = "GPLv3+" |
109 | LICENSE_${PN} = "GPLv3+" | 109 | LICENSE:${PN} = "GPLv3+" |
110 | LICENSE_libelf = "GPLv2 | LGPLv3+" | 110 | LICENSE:libelf = "GPLv2 | LGPLv3+" |
111 | LICENSE_libasm = "GPLv2 | LGPLv3+" | 111 | LICENSE:libasm = "GPLv2 | LGPLv3+" |
112 | LICENSE_libdw = "GPLv2 | LGPLv3+" | 112 | LICENSE:libdw = "GPLv2 | LGPLv3+" |
113 | LICENSE_libdebuginfod = "GPLv2+ | LGPLv3+" | 113 | LICENSE:libdebuginfod = "GPLv2+ | LGPLv3+" |
114 | 114 | ||
115 | FILES_${PN}-binutils = "\ | 115 | FILES:${PN}-binutils = "\ |
116 | ${bindir}/eu-addr2line \ | 116 | ${bindir}/eu-addr2line \ |
117 | ${bindir}/eu-ld \ | 117 | ${bindir}/eu-ld \ |
118 | ${bindir}/eu-nm \ | 118 | ${bindir}/eu-nm \ |
@@ -120,19 +120,19 @@ FILES_${PN}-binutils = "\ | |||
120 | ${bindir}/eu-size \ | 120 | ${bindir}/eu-size \ |
121 | ${bindir}/eu-strip" | 121 | ${bindir}/eu-strip" |
122 | 122 | ||
123 | FILES_libelf = "${libdir}/libelf-${PV}.so ${libdir}/libelf.so.*" | 123 | FILES:libelf = "${libdir}/libelf-${PV}.so ${libdir}/libelf.so.*" |
124 | FILES_libasm = "${libdir}/libasm-${PV}.so ${libdir}/libasm.so.*" | 124 | FILES:libasm = "${libdir}/libasm-${PV}.so ${libdir}/libasm.so.*" |
125 | FILES_libdw = "${libdir}/libdw-${PV}.so ${libdir}/libdw.so.* ${libdir}/elfutils/lib*" | 125 | FILES:libdw = "${libdir}/libdw-${PV}.so ${libdir}/libdw.so.* ${libdir}/elfutils/lib*" |
126 | FILES_libdebuginfod = "${libdir}/libdebuginfod-${PV}.so ${libdir}/libdebuginfod.so.*" | 126 | FILES:libdebuginfod = "${libdir}/libdebuginfod-${PV}.so ${libdir}/libdebuginfod.so.*" |
127 | # Some packages have the version preceeding the .so instead properly | 127 | # Some packages have the version preceeding the .so instead properly |
128 | # versioned .so.<version>, so we need to reorder and repackage. | 128 | # versioned .so.<version>, so we need to reorder and repackage. |
129 | #FILES_${PN} += "${libdir}/*-${PV}.so ${base_libdir}/*-${PV}.so" | 129 | #FILES_${PN} += "${libdir}/*-${PV}.so ${base_libdir}/*-${PV}.so" |
130 | #FILES_SOLIBSDEV = "${libdir}/libasm.so ${libdir}/libdw.so ${libdir}/libelf.so" | 130 | #FILES_SOLIBSDEV = "${libdir}/libasm.so ${libdir}/libdw.so ${libdir}/libelf.so" |
131 | 131 | ||
132 | # The package contains symlinks that trip up insane | 132 | # The package contains symlinks that trip up insane |
133 | INSANE_SKIP_${MLPREFIX}libdw = "dev-so" | 133 | INSANE_SKIP:${MLPREFIX}libdw = "dev-so" |
134 | # The nlist binary in the tests uses explicitly minimal compiler flags | 134 | # The nlist binary in the tests uses explicitly minimal compiler flags |
135 | INSANE_SKIP_${PN}-ptest += "ldflags" | 135 | INSANE_SKIP:${PN}-ptest += "ldflags" |
136 | 136 | ||
137 | # avoid stripping some generated binaries otherwise some of the tests such as test-nlist, | 137 | # avoid stripping some generated binaries otherwise some of the tests such as test-nlist, |
138 | # run-strip-reloc.sh, run-strip-strmerge.sh and so on will fail | 138 | # run-strip-reloc.sh, run-strip-strmerge.sh and so on will fail |
@@ -161,4 +161,4 @@ INHIBIT_PACKAGE_STRIP_FILES = "\ | |||
161 | ${PKGD}${PTEST_PATH}/backends/libebl_x86_64.so \ | 161 | ${PKGD}${PTEST_PATH}/backends/libebl_x86_64.so \ |
162 | " | 162 | " |
163 | 163 | ||
164 | PRIVATE_LIBS_${PN}-ptest = "libdw.so.1 libelf.so.1 libasm.so.1 libdebuginfod.so.1" | 164 | PRIVATE_LIBS:${PN}-ptest = "libdw.so.1 libelf.so.1 libasm.so.1 libdebuginfod.so.1" |
diff --git a/meta/recipes-devtools/expect/expect_5.45.4.bb b/meta/recipes-devtools/expect/expect_5.45.4.bb index 39ae6151f6..e27b0d9d71 100644 --- a/meta/recipes-devtools/expect/expect_5.45.4.bb +++ b/meta/recipes-devtools/expect/expect_5.45.4.bb | |||
@@ -14,7 +14,7 @@ SECTION = "devel" | |||
14 | LIC_FILES_CHKSUM = "file://license.terms;md5=fbf2de7e9102505b1439db06fc36ce5c" | 14 | LIC_FILES_CHKSUM = "file://license.terms;md5=fbf2de7e9102505b1439db06fc36ce5c" |
15 | 15 | ||
16 | DEPENDS += "tcl" | 16 | DEPENDS += "tcl" |
17 | RDEPENDS_${PN} = "tcl" | 17 | RDEPENDS:${PN} = "tcl" |
18 | 18 | ||
19 | inherit autotools update-alternatives | 19 | inherit autotools update-alternatives |
20 | 20 | ||
@@ -35,7 +35,7 @@ UPSTREAM_CHECK_REGEX = "/Expect/(?P<pver>(\d+[\.\-_]*)+)/" | |||
35 | 35 | ||
36 | S = "${WORKDIR}/${BPN}${PV}" | 36 | S = "${WORKDIR}/${BPN}${PV}" |
37 | 37 | ||
38 | do_install_append() { | 38 | do_install:append() { |
39 | install -d ${D}${libdir} | 39 | install -d ${D}${libdir} |
40 | install -m 0755 ${D}${libdir}/expect${PV}/libexpect*.so ${D}${libdir}/ | 40 | install -m 0755 ${D}${libdir}/expect${PV}/libexpect*.so ${D}${libdir}/ |
41 | install -m 0755 ${S}/fixline1 ${D}${libdir}/expect${PV}/ | 41 | install -m 0755 ${S}/fixline1 ${D}${libdir}/expect${PV}/ |
@@ -47,7 +47,7 @@ do_install_append() { | |||
47 | # Apparently the public Tcl headers are only in /usr/include/tcl8.6 | 47 | # Apparently the public Tcl headers are only in /usr/include/tcl8.6 |
48 | # when building for the target and nativesdk. | 48 | # when building for the target and nativesdk. |
49 | TCL_INCLUDE_PATH = "--with-tclinclude=${STAGING_INCDIR}/tcl8.6" | 49 | TCL_INCLUDE_PATH = "--with-tclinclude=${STAGING_INCDIR}/tcl8.6" |
50 | TCL_INCLUDE_PATH_class-native = "" | 50 | TCL_INCLUDE_PATH:class-native = "" |
51 | 51 | ||
52 | EXTRA_OECONF += "--with-tcl=${STAGING_LIBDIR} \ | 52 | EXTRA_OECONF += "--with-tcl=${STAGING_LIBDIR} \ |
53 | --enable-shared \ | 53 | --enable-shared \ |
@@ -57,12 +57,12 @@ EXTRA_OECONF += "--with-tcl=${STAGING_LIBDIR} \ | |||
57 | " | 57 | " |
58 | EXTRA_OEMAKE_install = " 'SCRIPTS=' " | 58 | EXTRA_OEMAKE_install = " 'SCRIPTS=' " |
59 | 59 | ||
60 | ALTERNATIVE_${PN} = "mkpasswd" | 60 | ALTERNATIVE:${PN} = "mkpasswd" |
61 | ALTERNATIVE_LINK_NAME[mkpasswd] = "${bindir}/mkpasswd" | 61 | ALTERNATIVE_LINK_NAME[mkpasswd] = "${bindir}/mkpasswd" |
62 | # Use lower priority than busybox's mkpasswd (created when built with CONFIG_CRYPTPW) | 62 | # Use lower priority than busybox's mkpasswd (created when built with CONFIG_CRYPTPW) |
63 | ALTERNATIVE_PRIORITY[mkpasswd] = "40" | 63 | ALTERNATIVE_PRIORITY[mkpasswd] = "40" |
64 | 64 | ||
65 | FILES_${PN}-dev = "${libdir_native}/expect${PV}/libexpect*.so \ | 65 | FILES:${PN}-dev = "${libdir_native}/expect${PV}/libexpect*.so \ |
66 | ${includedir}/expect.h \ | 66 | ${includedir}/expect.h \ |
67 | ${includedir}/expect_tcl.h \ | 67 | ${includedir}/expect_tcl.h \ |
68 | ${includedir}/expect_comm.h \ | 68 | ${includedir}/expect_comm.h \ |
@@ -70,7 +70,7 @@ FILES_${PN}-dev = "${libdir_native}/expect${PV}/libexpect*.so \ | |||
70 | ${includedir}/*.h \ | 70 | ${includedir}/*.h \ |
71 | " | 71 | " |
72 | 72 | ||
73 | FILES_${PN} += "${libdir}/libexpect${PV}.so \ | 73 | FILES:${PN} += "${libdir}/libexpect${PV}.so \ |
74 | ${libdir}/expect${PV}/* \ | 74 | ${libdir}/expect${PV}/* \ |
75 | " | 75 | " |
76 | 76 | ||
diff --git a/meta/recipes-devtools/file/file_5.40.bb b/meta/recipes-devtools/file/file_5.40.bb index ec79839bd2..32b61f4f39 100644 --- a/meta/recipes-devtools/file/file_5.40.bb +++ b/meta/recipes-devtools/file/file_5.40.bb | |||
@@ -9,7 +9,7 @@ LICENSE = "BSD-2-Clause" | |||
9 | LIC_FILES_CHKSUM = "file://COPYING;beginline=2;md5=0251eaec1188b20d9a72c502ecfdda1b" | 9 | LIC_FILES_CHKSUM = "file://COPYING;beginline=2;md5=0251eaec1188b20d9a72c502ecfdda1b" |
10 | 10 | ||
11 | DEPENDS = "file-replacement-native" | 11 | DEPENDS = "file-replacement-native" |
12 | DEPENDS_class-native = "bzip2-replacement-native" | 12 | DEPENDS:class-native = "bzip2-replacement-native" |
13 | 13 | ||
14 | SRC_URI = "git://github.com/file/file.git" | 14 | SRC_URI = "git://github.com/file/file.git" |
15 | 15 | ||
@@ -25,30 +25,30 @@ PACKAGECONFIG[zlib] = "--enable-zlib, --disable-zlib, zlib" | |||
25 | 25 | ||
26 | EXTRA_OECONF += "--disable-libseccomp" | 26 | EXTRA_OECONF += "--disable-libseccomp" |
27 | 27 | ||
28 | ALTERNATIVE_${PN} = "file" | 28 | ALTERNATIVE:${PN} = "file" |
29 | ALTERNATIVE_LINK_NAME[file] = "${bindir}/file" | 29 | ALTERNATIVE_LINK_NAME[file] = "${bindir}/file" |
30 | 30 | ||
31 | EXTRA_OEMAKE_append_class-target = " -e FILE_COMPILE=${STAGING_BINDIR_NATIVE}/file-native/file" | 31 | EXTRA_OEMAKE:append:class-target = " -e FILE_COMPILE=${STAGING_BINDIR_NATIVE}/file-native/file" |
32 | EXTRA_OEMAKE_append_class-nativesdk = " -e FILE_COMPILE=${STAGING_BINDIR_NATIVE}/file-native/file" | 32 | EXTRA_OEMAKE:append:class-nativesdk = " -e FILE_COMPILE=${STAGING_BINDIR_NATIVE}/file-native/file" |
33 | 33 | ||
34 | FILES_${PN} += "${datadir}/misc/*.mgc" | 34 | FILES:${PN} += "${datadir}/misc/*.mgc" |
35 | 35 | ||
36 | do_compile_append_class-native() { | 36 | do_compile:append:class-native() { |
37 | oe_runmake check | 37 | oe_runmake check |
38 | } | 38 | } |
39 | 39 | ||
40 | do_install_append_class-native() { | 40 | do_install:append:class-native() { |
41 | create_cmdline_wrapper ${D}/${bindir}/file \ | 41 | create_cmdline_wrapper ${D}/${bindir}/file \ |
42 | --magic-file ${datadir}/misc/magic.mgc | 42 | --magic-file ${datadir}/misc/magic.mgc |
43 | } | 43 | } |
44 | 44 | ||
45 | do_install_append_class-nativesdk() { | 45 | do_install:append:class-nativesdk() { |
46 | create_cmdline_wrapper ${D}/${bindir}/file \ | 46 | create_cmdline_wrapper ${D}/${bindir}/file \ |
47 | --magic-file ${datadir}/misc/magic.mgc | 47 | --magic-file ${datadir}/misc/magic.mgc |
48 | } | 48 | } |
49 | 49 | ||
50 | BBCLASSEXTEND = "native nativesdk" | 50 | BBCLASSEXTEND = "native nativesdk" |
51 | PROVIDES_append_class-native = " file-replacement-native" | 51 | PROVIDES:append:class-native = " file-replacement-native" |
52 | # Don't use NATIVE_PACKAGE_PATH_SUFFIX as that hides libmagic from anyone who | 52 | # Don't use NATIVE_PACKAGE_PATH_SUFFIX as that hides libmagic from anyone who |
53 | # depends on file-replacement-native. | 53 | # depends on file-replacement-native. |
54 | bindir_append_class-native = "/file-native" | 54 | bindir:append:class-native = "/file-native" |
diff --git a/meta/recipes-devtools/flex/flex_2.6.4.bb b/meta/recipes-devtools/flex/flex_2.6.4.bb index 54e7e01729..56f5b742e2 100644 --- a/meta/recipes-devtools/flex/flex_2.6.4.bb +++ b/meta/recipes-devtools/flex/flex_2.6.4.bb | |||
@@ -4,7 +4,7 @@ lexical patterns in text." | |||
4 | HOMEPAGE = "http://sourceforge.net/projects/flex/" | 4 | HOMEPAGE = "http://sourceforge.net/projects/flex/" |
5 | SECTION = "devel" | 5 | SECTION = "devel" |
6 | LICENSE = "BSD-3-Clause & LGPL-2.0+" | 6 | LICENSE = "BSD-3-Clause & LGPL-2.0+" |
7 | LICENSE_${PN}-libfl = "BSD-3-Clause" | 7 | LICENSE:${PN}-libfl = "BSD-3-Clause" |
8 | 8 | ||
9 | DEPENDS = "${@bb.utils.contains('PTEST_ENABLED', '1', 'bison-native flex-native', '', d)}" | 9 | DEPENDS = "${@bb.utils.contains('PTEST_ENABLED', '1', 'bison-native flex-native', '', d)}" |
10 | BBCLASSEXTEND = "native nativesdk" | 10 | BBCLASSEXTEND = "native nativesdk" |
@@ -31,26 +31,26 @@ UPSTREAM_CHECK_REGEX = "flex-(?P<pver>\d+(\.\d+)+)\.tar" | |||
31 | inherit autotools gettext texinfo ptest | 31 | inherit autotools gettext texinfo ptest |
32 | 32 | ||
33 | M4 = "${bindir}/m4" | 33 | M4 = "${bindir}/m4" |
34 | M4_class-native = "${STAGING_BINDIR_NATIVE}/m4" | 34 | M4:class-native = "${STAGING_BINDIR_NATIVE}/m4" |
35 | EXTRA_OECONF += "ac_cv_path_M4=${M4} ac_cv_func_reallocarray=no" | 35 | EXTRA_OECONF += "ac_cv_path_M4=${M4} ac_cv_func_reallocarray=no" |
36 | EXTRA_OEMAKE += "m4=${STAGING_BINDIR_NATIVE}/m4" | 36 | EXTRA_OEMAKE += "m4=${STAGING_BINDIR_NATIVE}/m4" |
37 | 37 | ||
38 | EXTRA_OEMAKE += "${@bb.utils.contains('PTEST_ENABLED', '1', 'FLEX=${STAGING_BINDIR_NATIVE}/flex', '', d)}" | 38 | EXTRA_OEMAKE += "${@bb.utils.contains('PTEST_ENABLED', '1', 'FLEX=${STAGING_BINDIR_NATIVE}/flex', '', d)}" |
39 | 39 | ||
40 | do_install_append_class-native() { | 40 | do_install:append:class-native() { |
41 | create_wrapper ${D}/${bindir}/flex M4=${M4} | 41 | create_wrapper ${D}/${bindir}/flex M4=${M4} |
42 | } | 42 | } |
43 | 43 | ||
44 | do_install_append_class-nativesdk() { | 44 | do_install:append:class-nativesdk() { |
45 | create_wrapper ${D}/${bindir}/flex M4=${M4} | 45 | create_wrapper ${D}/${bindir}/flex M4=${M4} |
46 | } | 46 | } |
47 | 47 | ||
48 | PACKAGES =+ "${PN}-libfl" | 48 | PACKAGES =+ "${PN}-libfl" |
49 | 49 | ||
50 | FILES_${PN}-libfl = "${libdir}/libfl.so.* ${libdir}/libfl_pic.so.*" | 50 | FILES:${PN}-libfl = "${libdir}/libfl.so.* ${libdir}/libfl_pic.so.*" |
51 | 51 | ||
52 | RDEPENDS_${PN} += "m4" | 52 | RDEPENDS:${PN} += "m4" |
53 | RDEPENDS_${PN}-ptest += "bash gawk make" | 53 | RDEPENDS:${PN}-ptest += "bash gawk make" |
54 | 54 | ||
55 | do_compile_ptest() { | 55 | do_compile_ptest() { |
56 | oe_runmake -C ${B}/tests -f ${B}/tests/Makefile top_builddir=${B} INCLUDES=-I${S}/src buildtests | 56 | oe_runmake -C ${B}/tests -f ${B}/tests/Makefile top_builddir=${B} INCLUDES=-I${S}/src buildtests |
diff --git a/meta/recipes-devtools/gcc/gcc-11.1.inc b/meta/recipes-devtools/gcc/gcc-11.1.inc index c21242af58..f1dec85a06 100644 --- a/meta/recipes-devtools/gcc/gcc-11.1.inc +++ b/meta/recipes-devtools/gcc/gcc-11.1.inc | |||
@@ -87,7 +87,7 @@ FORTRAN = "" | |||
87 | JAVA = "" | 87 | JAVA = "" |
88 | 88 | ||
89 | SSP ?= "--disable-libssp" | 89 | SSP ?= "--disable-libssp" |
90 | SSP_mingw32 = "--enable-libssp" | 90 | SSP:mingw32 = "--enable-libssp" |
91 | 91 | ||
92 | EXTRA_OECONF_BASE = "\ | 92 | EXTRA_OECONF_BASE = "\ |
93 | ${SSP} \ | 93 | ${SSP} \ |
diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes-devtools/gcc/gcc-common.inc index 629fa26dfe..74190644e6 100644 --- a/meta/recipes-devtools/gcc/gcc-common.inc +++ b/meta/recipes-devtools/gcc/gcc-common.inc | |||
@@ -12,7 +12,7 @@ inherit autotools gettext texinfo | |||
12 | 12 | ||
13 | BPN = "gcc" | 13 | BPN = "gcc" |
14 | COMPILERDEP = "virtual/${MLPREFIX}${TARGET_PREFIX}gcc:do_gcc_stash_builddir" | 14 | COMPILERDEP = "virtual/${MLPREFIX}${TARGET_PREFIX}gcc:do_gcc_stash_builddir" |
15 | COMPILERDEP_class-nativesdk = "virtual/${TARGET_PREFIX}gcc-crosssdk:do_gcc_stash_builddir" | 15 | COMPILERDEP:class-nativesdk = "virtual/${TARGET_PREFIX}gcc-crosssdk:do_gcc_stash_builddir" |
16 | 16 | ||
17 | python extract_stashed_builddir () { | 17 | python extract_stashed_builddir () { |
18 | src = d.expand("${COMPONENTS_DIR}/${BUILD_ARCH}/gcc-stashed-builddir-${TARGET_SYS}") | 18 | src = d.expand("${COMPONENTS_DIR}/${BUILD_ARCH}/gcc-stashed-builddir-${TARGET_SYS}") |
@@ -83,7 +83,7 @@ def get_tune_parameters(tune, d): | |||
83 | 83 | ||
84 | get_tune_parameters[vardepsexclude] = "AVAILTUNES TUNE_CCARGS OVERRIDES TUNE_FEATURES BASE_LIB BASELIB TUNE_ARCH ABIEXTENSION TARGET_FPU TUNE_PKGARCH PACKAGE_EXTRA_ARCHS" | 84 | get_tune_parameters[vardepsexclude] = "AVAILTUNES TUNE_CCARGS OVERRIDES TUNE_FEATURES BASE_LIB BASELIB TUNE_ARCH ABIEXTENSION TARGET_FPU TUNE_PKGARCH PACKAGE_EXTRA_ARCHS" |
85 | 85 | ||
86 | DEBIANNAME_${MLPREFIX}libgcc = "libgcc1" | 86 | DEBIANNAME:${MLPREFIX}libgcc = "libgcc1" |
87 | 87 | ||
88 | MIRRORS =+ "\ | 88 | MIRRORS =+ "\ |
89 | ${GNU_MIRROR}/gcc ftp://gcc.gnu.org/pub/gcc/releases/ \n \ | 89 | ${GNU_MIRROR}/gcc ftp://gcc.gnu.org/pub/gcc/releases/ \n \ |
diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc index dc7f458b25..e9bc8e466c 100644 --- a/meta/recipes-devtools/gcc/gcc-configure-common.inc +++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc | |||
@@ -45,27 +45,27 @@ EXTRA_OECONF = "\ | |||
45 | 45 | ||
46 | # glibc version is a minimum controlling whether features are enabled. | 46 | # glibc version is a minimum controlling whether features are enabled. |
47 | # Doesn't need to track glibc exactly | 47 | # Doesn't need to track glibc exactly |
48 | EXTRA_OECONF_append_libc-glibc = " --with-glibc-version=2.28 " | 48 | EXTRA_OECONF:append:libc-glibc = " --with-glibc-version=2.28 " |
49 | 49 | ||
50 | # Set this here since GCC configure won't auto-detect and enable | 50 | # Set this here since GCC configure won't auto-detect and enable |
51 | # initfini-arry when cross compiling. | 51 | # initfini-arry when cross compiling. |
52 | EXTRA_OECONF_append = " --enable-initfini-array" | 52 | EXTRA_OECONF:append = " --enable-initfini-array" |
53 | 53 | ||
54 | export gcc_cv_collect2_libs = 'none required' | 54 | export gcc_cv_collect2_libs = 'none required' |
55 | # We need to set gcc_cv_collect2_libs else there is cross-compilation badness | 55 | # We need to set gcc_cv_collect2_libs else there is cross-compilation badness |
56 | # in the config.log files (which might not get generated until do_compile | 56 | # in the config.log files (which might not get generated until do_compile |
57 | # hence being missed by the insane do_configure check). | 57 | # hence being missed by the insane do_configure check). |
58 | 58 | ||
59 | EXTRA_OECONF_append_linux = " --enable-__cxa_atexit" | 59 | EXTRA_OECONF:append_linux = " --enable-__cxa_atexit" |
60 | 60 | ||
61 | EXTRA_OECONF_append_mips64 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" | 61 | EXTRA_OECONF:append:mips64 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" |
62 | EXTRA_OECONF_append_mips64el = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" | 62 | EXTRA_OECONF:append:mips64el = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" |
63 | EXTRA_OECONF_append_mips64n32 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" | 63 | EXTRA_OECONF:append:mips64n32 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" |
64 | EXTRA_OECONF_append_mips64eln32 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" | 64 | EXTRA_OECONF:append:mips64eln32 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" |
65 | EXTRA_OECONF_append_mipsisa32r6el = " --with-abi=32 --with-arch=mips32r6" | 65 | EXTRA_OECONF:append:mipsisa32r6el = " --with-abi=32 --with-arch=mips32r6" |
66 | EXTRA_OECONF_append_mipsisa32r6 = " --with-abi=32 --with-arch=mips32r6" | 66 | EXTRA_OECONF:append:mipsisa32r6 = " --with-abi=32 --with-arch=mips32r6" |
67 | EXTRA_OECONF_append_mipsisa64r6el = " --with-abi=64 --with-arch-64=mips64r6" | 67 | EXTRA_OECONF:append:mipsisa64r6el = " --with-abi=64 --with-arch-64=mips64r6" |
68 | EXTRA_OECONF_append_mipsisa64r6 = " --with-abi=64 --with-arch-64=mips64r6" | 68 | EXTRA_OECONF:append:mipsisa64r6 = " --with-abi=64 --with-arch-64=mips64r6" |
69 | 69 | ||
70 | EXTRA_OECONF_GCC_FLOAT ??= "" | 70 | EXTRA_OECONF_GCC_FLOAT ??= "" |
71 | CPPFLAGS = "" | 71 | CPPFLAGS = "" |
@@ -74,7 +74,7 @@ SYSTEMHEADERS = "${target_includedir}" | |||
74 | SYSTEMLIBS = "${target_base_libdir}/" | 74 | SYSTEMLIBS = "${target_base_libdir}/" |
75 | SYSTEMLIBS1 = "${target_libdir}/" | 75 | SYSTEMLIBS1 = "${target_libdir}/" |
76 | 76 | ||
77 | do_configure_prepend () { | 77 | do_configure:prepend () { |
78 | # teach gcc to find correct target includedir when checking libc ssp support | 78 | # teach gcc to find correct target includedir when checking libc ssp support |
79 | mkdir -p ${B}/gcc | 79 | mkdir -p ${B}/gcc |
80 | echo "NATIVE_SYSTEM_HEADER_DIR = ${SYSTEMHEADERS}" > ${B}/gcc/t-oe | 80 | echo "NATIVE_SYSTEM_HEADER_DIR = ${SYSTEMHEADERS}" > ${B}/gcc/t-oe |
diff --git a/meta/recipes-devtools/gcc/gcc-cross-canadian.inc b/meta/recipes-devtools/gcc/gcc-cross-canadian.inc index 1872faee1b..92fb1f38ba 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-canadian.inc +++ b/meta/recipes-devtools/gcc/gcc-cross-canadian.inc | |||
@@ -65,7 +65,7 @@ do_compile () { | |||
65 | 65 | ||
66 | PACKAGES = "${PN}-dbg ${PN} ${PN}-doc" | 66 | PACKAGES = "${PN}-dbg ${PN} ${PN}-doc" |
67 | 67 | ||
68 | FILES_${PN} = "\ | 68 | FILES:${PN} = "\ |
69 | ${exec_prefix}/bin/* \ | 69 | ${exec_prefix}/bin/* \ |
70 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/* \ | 70 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/* \ |
71 | ${gcclibdir}/${TARGET_SYS}/${BINV}/*.o \ | 71 | ${gcclibdir}/${TARGET_SYS}/${BINV}/*.o \ |
@@ -81,9 +81,9 @@ FILES_${PN} = "\ | |||
81 | ${prefix}/${TARGET_SYS}/lib/* \ | 81 | ${prefix}/${TARGET_SYS}/lib/* \ |
82 | ${prefix}/${TARGET_SYS}${target_includedir}/* \ | 82 | ${prefix}/${TARGET_SYS}${target_includedir}/* \ |
83 | " | 83 | " |
84 | INSANE_SKIP_${PN} += "dev-so" | 84 | INSANE_SKIP:${PN} += "dev-so" |
85 | 85 | ||
86 | FILES_${PN}-doc = "\ | 86 | FILES:${PN}-doc = "\ |
87 | ${infodir} \ | 87 | ${infodir} \ |
88 | ${mandir} \ | 88 | ${mandir} \ |
89 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include/README \ | 89 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include/README \ |
@@ -173,16 +173,16 @@ do_install () { | |||
173 | 173 | ||
174 | ELFUTILS = "nativesdk-elfutils" | 174 | ELFUTILS = "nativesdk-elfutils" |
175 | DEPENDS += "nativesdk-gmp nativesdk-mpfr nativesdk-libmpc ${ELFUTILS} nativesdk-zlib" | 175 | DEPENDS += "nativesdk-gmp nativesdk-mpfr nativesdk-libmpc ${ELFUTILS} nativesdk-zlib" |
176 | RDEPENDS_${PN} += "nativesdk-mpfr nativesdk-libmpc ${ELFUTILS}" | 176 | RDEPENDS:${PN} += "nativesdk-mpfr nativesdk-libmpc ${ELFUTILS}" |
177 | 177 | ||
178 | SYSTEMHEADERS = "${target_includedir}/" | 178 | SYSTEMHEADERS = "${target_includedir}/" |
179 | SYSTEMLIBS = "${target_base_libdir}/" | 179 | SYSTEMLIBS = "${target_base_libdir}/" |
180 | SYSTEMLIBS1 = "${target_libdir}/" | 180 | SYSTEMLIBS1 = "${target_libdir}/" |
181 | 181 | ||
182 | EXTRA_OECONF += "--enable-poison-system-directories" | 182 | EXTRA_OECONF += "--enable-poison-system-directories" |
183 | EXTRA_OECONF_remove_elf = "--with-sysroot=/not/exist" | 183 | EXTRA_OECONF:remove_elf = "--with-sysroot=/not/exist" |
184 | EXTRA_OECONF_remove_eabi = "--with-sysroot=/not/exist" | 184 | EXTRA_OECONF:remove_eabi = "--with-sysroot=/not/exist" |
185 | EXTRA_OECONF_append_elf = " --without-headers --with-newlib" | 185 | EXTRA_OECONF:append_elf = " --without-headers --with-newlib" |
186 | EXTRA_OECONF_append_eabi = " --without-headers --with-newlib" | 186 | EXTRA_OECONF:append_eabi = " --without-headers --with-newlib" |
187 | # gcc 4.7 needs -isystem | 187 | # gcc 4.7 needs -isystem |
188 | export ARCH_FLAGS_FOR_TARGET = "--sysroot=${STAGING_DIR_TARGET} -isystem=${target_includedir}" | 188 | export ARCH_FLAGS_FOR_TARGET = "--sysroot=${STAGING_DIR_TARGET} -isystem=${target_includedir}" |
diff --git a/meta/recipes-devtools/gcc/gcc-cross.inc b/meta/recipes-devtools/gcc/gcc-cross.inc index dca4036ab5..3ffa1f0c46 100644 --- a/meta/recipes-devtools/gcc/gcc-cross.inc +++ b/meta/recipes-devtools/gcc/gcc-cross.inc | |||
@@ -22,7 +22,7 @@ require gcc-configure-common.inc | |||
22 | LINKER_HASH_STYLE ?= "sysv" | 22 | LINKER_HASH_STYLE ?= "sysv" |
23 | 23 | ||
24 | EXTRA_OECONF += "--enable-poison-system-directories=error" | 24 | EXTRA_OECONF += "--enable-poison-system-directories=error" |
25 | EXTRA_OECONF_append_sh4 = " \ | 25 | EXTRA_OECONF:append:sh4 = " \ |
26 | --with-multilib-list= \ | 26 | --with-multilib-list= \ |
27 | --enable-incomplete-targets \ | 27 | --enable-incomplete-targets \ |
28 | " | 28 | " |
@@ -31,9 +31,9 @@ EXTRA_OECONF += "\ | |||
31 | --with-system-zlib \ | 31 | --with-system-zlib \ |
32 | " | 32 | " |
33 | 33 | ||
34 | EXTRA_OECONF_append_libc-baremetal = " --without-headers" | 34 | EXTRA_OECONF:append:libc-baremetal = " --without-headers" |
35 | EXTRA_OECONF_remove_libc-baremetal = "--enable-threads=posix" | 35 | EXTRA_OECONF:remove:libc-baremetal = "--enable-threads=posix" |
36 | EXTRA_OECONF_remove_libc-newlib = "--enable-threads=posix" | 36 | EXTRA_OECONF:remove:libc-newlib = "--enable-threads=posix" |
37 | 37 | ||
38 | EXTRA_OECONF_PATHS = "\ | 38 | EXTRA_OECONF_PATHS = "\ |
39 | --with-gxx-include-dir=/not/exist${target_includedir}/c++/${BINV} \ | 39 | --with-gxx-include-dir=/not/exist${target_includedir}/c++/${BINV} \ |
@@ -44,7 +44,7 @@ EXTRA_OECONF_PATHS = "\ | |||
44 | ARCH_FLAGS_FOR_TARGET += "-isystem${STAGING_DIR_TARGET}${target_includedir}" | 44 | ARCH_FLAGS_FOR_TARGET += "-isystem${STAGING_DIR_TARGET}${target_includedir}" |
45 | 45 | ||
46 | 46 | ||
47 | do_configure_prepend () { | 47 | do_configure:prepend () { |
48 | install -d ${RECIPE_SYSROOT}${target_includedir} | 48 | install -d ${RECIPE_SYSROOT}${target_includedir} |
49 | touch ${RECIPE_SYSROOT}${target_includedir}/limits.h | 49 | touch ${RECIPE_SYSROOT}${target_includedir}/limits.h |
50 | } | 50 | } |
diff --git a/meta/recipes-devtools/gcc/gcc-multilib-config.inc b/meta/recipes-devtools/gcc/gcc-multilib-config.inc index 31b8619be3..e90580d1cd 100644 --- a/meta/recipes-devtools/gcc/gcc-multilib-config.inc +++ b/meta/recipes-devtools/gcc/gcc-multilib-config.inc | |||
@@ -170,7 +170,7 @@ python gcc_multilib_setup() { | |||
170 | header_config_files = gcc_header_config_files[target_arch] | 170 | header_config_files = gcc_header_config_files[target_arch] |
171 | 171 | ||
172 | ml_list = ['DEFAULTTUNE_MULTILIB_ORIGINAL' if mlprefix else 'DEFAULTTUNE'] | 172 | ml_list = ['DEFAULTTUNE_MULTILIB_ORIGINAL' if mlprefix else 'DEFAULTTUNE'] |
173 | mltunes = [('DEFAULTTUNE_virtclass-multilib-%s' % ml) for ml in multilibs] | 173 | mltunes = [('DEFAULTTUNE:virtclass-multilib-%s' % ml) for ml in multilibs] |
174 | if mlprefix: | 174 | if mlprefix: |
175 | mlindex = 0 | 175 | mlindex = 0 |
176 | for ml in multilibs: | 176 | for ml in multilibs: |
diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc index 59d9a24686..9e39d49d14 100644 --- a/meta/recipes-devtools/gcc/gcc-runtime.inc +++ b/meta/recipes-devtools/gcc/gcc-runtime.inc | |||
@@ -6,7 +6,7 @@ SUMMARY = "Runtime libraries from GCC" | |||
6 | # All gcc-runtime packages are now covered by the runtime exception. | 6 | # All gcc-runtime packages are now covered by the runtime exception. |
7 | LICENSE = "GPL-3.0-with-GCC-exception" | 7 | LICENSE = "GPL-3.0-with-GCC-exception" |
8 | 8 | ||
9 | CXXFLAGS_remove = "-fvisibility-inlines-hidden" | 9 | CXXFLAGS:remove = "-fvisibility-inlines-hidden" |
10 | 10 | ||
11 | EXTRA_OECONF_PATHS = "\ | 11 | EXTRA_OECONF_PATHS = "\ |
12 | --with-gxx-include-dir=${includedir}/c++/${BINV} \ | 12 | --with-gxx-include-dir=${includedir}/c++/${BINV} \ |
@@ -14,37 +14,37 @@ EXTRA_OECONF_PATHS = "\ | |||
14 | --with-build-sysroot=${STAGING_DIR_TARGET} \ | 14 | --with-build-sysroot=${STAGING_DIR_TARGET} \ |
15 | " | 15 | " |
16 | 16 | ||
17 | EXTRA_OECONF_append_linuxstdbase = " --enable-clocale=gnu" | 17 | EXTRA_OECONF:append:linuxstdbase = " --enable-clocale=gnu" |
18 | EXTRA_OECONF_append = " --cache-file=${B}/config.cache" | 18 | EXTRA_OECONF:append = " --cache-file=${B}/config.cache" |
19 | EXTRA_OECONF_append_libc-newlib = " --with-newlib" | 19 | EXTRA_OECONF:append:libc-newlib = " --with-newlib" |
20 | 20 | ||
21 | # Disable ifuncs for libatomic on arm conflicts -march/-mcpu | 21 | # Disable ifuncs for libatomic on arm conflicts -march/-mcpu |
22 | EXTRA_OECONF_append_arm = " libat_cv_have_ifunc=no " | 22 | EXTRA_OECONF:append:arm = " libat_cv_have_ifunc=no " |
23 | EXTRA_OECONF_append_armeb = " libat_cv_have_ifunc=no " | 23 | EXTRA_OECONF:append:armeb = " libat_cv_have_ifunc=no " |
24 | 24 | ||
25 | DISABLE_STATIC_class-nativesdk ?= "" | 25 | DISABLE_STATIC:class-nativesdk ?= "" |
26 | 26 | ||
27 | # Newlib does not support symbol versioning on libsdtcc++ | 27 | # Newlib does not support symbol versioning on libsdtcc++ |
28 | SYMVERS_CONF_libc-newlib = "" | 28 | SYMVERS_CONF:libc-newlib = "" |
29 | 29 | ||
30 | # Building with thumb enabled on armv6t fails | 30 | # Building with thumb enabled on armv6t fails |
31 | ARM_INSTRUCTION_SET_armv6 = "arm" | 31 | ARM_INSTRUCTION_SET:armv6 = "arm" |
32 | 32 | ||
33 | RUNTIMELIBITM = "libitm" | 33 | RUNTIMELIBITM = "libitm" |
34 | RUNTIMELIBITM_arc = "" | 34 | RUNTIMELIBITM:arc = "" |
35 | RUNTIMELIBITM_mipsarch = "" | 35 | RUNTIMELIBITM:mipsarch = "" |
36 | RUNTIMELIBITM_nios2 = "" | 36 | RUNTIMELIBITM:nios2 = "" |
37 | RUNTIMELIBITM_microblaze = "" | 37 | RUNTIMELIBITM:microblaze = "" |
38 | RUNTIMELIBITM_riscv32 = "" | 38 | RUNTIMELIBITM:riscv32 = "" |
39 | RUNTIMELIBITM_riscv64 = "" | 39 | RUNTIMELIBITM:riscv64 = "" |
40 | RUNTIMELIBSSP ?= "" | 40 | RUNTIMELIBSSP ?= "" |
41 | RUNTIMELIBSSP_mingw32 ?= "libssp" | 41 | RUNTIMELIBSSP:mingw32 ?= "libssp" |
42 | 42 | ||
43 | RUNTIMETARGET = "${RUNTIMELIBSSP} libstdc++-v3 libgomp libatomic ${RUNTIMELIBITM} \ | 43 | RUNTIMETARGET = "${RUNTIMELIBSSP} libstdc++-v3 libgomp libatomic ${RUNTIMELIBITM} \ |
44 | ${@bb.utils.contains_any('FORTRAN', [',fortran',',f77'], 'libquadmath', '', d)} \ | 44 | ${@bb.utils.contains_any('FORTRAN', [',fortran',',f77'], 'libquadmath', '', d)} \ |
45 | " | 45 | " |
46 | # Only build libstdc++ for newlib | 46 | # Only build libstdc++ for newlib |
47 | RUNTIMETARGET_libc-newlib = "libstdc++-v3" | 47 | RUNTIMETARGET:libc-newlib = "libstdc++-v3" |
48 | 48 | ||
49 | # libiberty | 49 | # libiberty |
50 | # libgfortran needs separate recipe due to libquadmath dependency | 50 | # libgfortran needs separate recipe due to libquadmath dependency |
@@ -52,7 +52,7 @@ RUNTIMETARGET_libc-newlib = "libstdc++-v3" | |||
52 | # Relative path to be repaced into debug info | 52 | # Relative path to be repaced into debug info |
53 | REL_S = "/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}" | 53 | REL_S = "/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}" |
54 | 54 | ||
55 | DEBUG_PREFIX_MAP_class-target = " \ | 55 | DEBUG_PREFIX_MAP:class-target = " \ |
56 | -fdebug-prefix-map=${WORKDIR}/recipe-sysroot= \ | 56 | -fdebug-prefix-map=${WORKDIR}/recipe-sysroot= \ |
57 | -fdebug-prefix-map=${WORKDIR}/recipe-sysroot-native= \ | 57 | -fdebug-prefix-map=${WORKDIR}/recipe-sysroot-native= \ |
58 | -fdebug-prefix-map=${S}=${REL_S} \ | 58 | -fdebug-prefix-map=${S}=${REL_S} \ |
@@ -109,7 +109,7 @@ do_install () { | |||
109 | fi | 109 | fi |
110 | } | 110 | } |
111 | 111 | ||
112 | do_install_append_class-target () { | 112 | do_install:append:class-target () { |
113 | if [ "${TARGET_OS}" = "linux-gnuspe" ]; then | 113 | if [ "${TARGET_OS}" = "linux-gnuspe" ]; then |
114 | ln -s ${TARGET_SYS} ${D}${includedir}/c++/${BINV}/${TARGET_ARCH}${TARGET_VENDOR}-linux | 114 | ln -s ${TARGET_SYS} ${D}${includedir}/c++/${BINV}/${TARGET_ARCH}${TARGET_VENDOR}-linux |
115 | fi | 115 | fi |
@@ -186,67 +186,67 @@ PACKAGES = "\ | |||
186 | libitm-staticdev \ | 186 | libitm-staticdev \ |
187 | " | 187 | " |
188 | # The base package doesn't exist, so we clear the recommends. | 188 | # The base package doesn't exist, so we clear the recommends. |
189 | RRECOMMENDS_${PN}-dbg = "" | 189 | RRECOMMENDS:${PN}-dbg = "" |
190 | 190 | ||
191 | # include python debugging scripts | 191 | # include python debugging scripts |
192 | FILES_${PN}-dbg += "\ | 192 | FILES:${PN}-dbg += "\ |
193 | ${libdir}/libstdc++.*-gdb.py \ | 193 | ${libdir}/libstdc++.*-gdb.py \ |
194 | ${datadir}/gcc-${BINV}/python/libstdcxx \ | 194 | ${datadir}/gcc-${BINV}/python/libstdcxx \ |
195 | " | 195 | " |
196 | 196 | ||
197 | FILES_libg2c = "${target_libdir}/libg2c.so.*" | 197 | FILES:libg2c = "${target_libdir}/libg2c.so.*" |
198 | SUMMARY_libg2c = "Companion runtime library for g77" | 198 | SUMMARY:libg2c = "Companion runtime library for g77" |
199 | FILES_libg2c-dev = "\ | 199 | FILES:libg2c-dev = "\ |
200 | ${libdir}/libg2c.so \ | 200 | ${libdir}/libg2c.so \ |
201 | ${libdir}/libg2c.a \ | 201 | ${libdir}/libg2c.a \ |
202 | ${libdir}/libfrtbegin.a \ | 202 | ${libdir}/libfrtbegin.a \ |
203 | " | 203 | " |
204 | SUMMARY_libg2c-dev = "Companion runtime library for g77 - development files" | 204 | SUMMARY:libg2c-dev = "Companion runtime library for g77 - development files" |
205 | 205 | ||
206 | FILES_libstdc++ = "${libdir}/libstdc++.so.*" | 206 | FILES:libstdc++ = "${libdir}/libstdc++.so.*" |
207 | SUMMARY_libstdc++ = "GNU standard C++ library" | 207 | SUMMARY:libstdc++ = "GNU standard C++ library" |
208 | FILES_libstdc++-dev = "\ | 208 | FILES:libstdc++-dev = "\ |
209 | ${includedir}/c++/ \ | 209 | ${includedir}/c++/ \ |
210 | ${libdir}/libstdc++.so \ | 210 | ${libdir}/libstdc++.so \ |
211 | ${libdir}/libstdc++*.la \ | 211 | ${libdir}/libstdc++*.la \ |
212 | ${libdir}/libsupc++.la \ | 212 | ${libdir}/libsupc++.la \ |
213 | " | 213 | " |
214 | SUMMARY_libstdc++-dev = "GNU standard C++ library - development files" | 214 | SUMMARY:libstdc++-dev = "GNU standard C++ library - development files" |
215 | FILES_libstdc++-staticdev = "\ | 215 | FILES:libstdc++-staticdev = "\ |
216 | ${libdir}/libstdc++*.a \ | 216 | ${libdir}/libstdc++*.a \ |
217 | ${libdir}/libsupc++.a \ | 217 | ${libdir}/libsupc++.a \ |
218 | " | 218 | " |
219 | SUMMARY_libstdc++-staticdev = "GNU standard C++ library - static development files" | 219 | SUMMARY:libstdc++-staticdev = "GNU standard C++ library - static development files" |
220 | 220 | ||
221 | FILES_libstdc++-precompile-dev = "${includedir}/c++/${TARGET_SYS}/bits/*.gch" | 221 | FILES:libstdc++-precompile-dev = "${includedir}/c++/${TARGET_SYS}/bits/*.gch" |
222 | SUMMARY_libstdc++-precompile-dev = "GNU standard C++ library - precompiled header files" | 222 | SUMMARY:libstdc++-precompile-dev = "GNU standard C++ library - precompiled header files" |
223 | 223 | ||
224 | FILES_libssp = "${libdir}/libssp.so.*" | 224 | FILES:libssp = "${libdir}/libssp.so.*" |
225 | SUMMARY_libssp = "GNU stack smashing protection library" | 225 | SUMMARY:libssp = "GNU stack smashing protection library" |
226 | FILES_libssp-dev = "\ | 226 | FILES:libssp-dev = "\ |
227 | ${libdir}/libssp*.so \ | 227 | ${libdir}/libssp*.so \ |
228 | ${libdir}/libssp*_nonshared.a \ | 228 | ${libdir}/libssp*_nonshared.a \ |
229 | ${libdir}/libssp*.la \ | 229 | ${libdir}/libssp*.la \ |
230 | ${libdir}/${TARGET_SYS}/${BINV}/include/ssp \ | 230 | ${libdir}/${TARGET_SYS}/${BINV}/include/ssp \ |
231 | " | 231 | " |
232 | SUMMARY_libssp-dev = "GNU stack smashing protection library - development files" | 232 | SUMMARY:libssp-dev = "GNU stack smashing protection library - development files" |
233 | FILES_libssp-staticdev = "${libdir}/libssp*.a" | 233 | FILES:libssp-staticdev = "${libdir}/libssp*.a" |
234 | SUMMARY_libssp-staticdev = "GNU stack smashing protection library - static development files" | 234 | SUMMARY:libssp-staticdev = "GNU stack smashing protection library - static development files" |
235 | 235 | ||
236 | FILES_libquadmath = "${libdir}/libquadmath*.so.*" | 236 | FILES:libquadmath = "${libdir}/libquadmath*.so.*" |
237 | SUMMARY_libquadmath = "GNU quad-precision math library" | 237 | SUMMARY:libquadmath = "GNU quad-precision math library" |
238 | FILES_libquadmath-dev = "\ | 238 | FILES:libquadmath-dev = "\ |
239 | ${libdir}/${TARGET_SYS}/${BINV}/include/quadmath* \ | 239 | ${libdir}/${TARGET_SYS}/${BINV}/include/quadmath* \ |
240 | ${libdir}/libquadmath*.so \ | 240 | ${libdir}/libquadmath*.so \ |
241 | ${libdir}/libquadmath.la \ | 241 | ${libdir}/libquadmath.la \ |
242 | " | 242 | " |
243 | SUMMARY_libquadmath-dev = "GNU quad-precision math library - development files" | 243 | SUMMARY:libquadmath-dev = "GNU quad-precision math library - development files" |
244 | FILES_libquadmath-staticdev = "${libdir}/libquadmath.a" | 244 | FILES:libquadmath-staticdev = "${libdir}/libquadmath.a" |
245 | SUMMARY_libquadmath-staticdev = "GNU quad-precision math library - static development files" | 245 | SUMMARY:libquadmath-staticdev = "GNU quad-precision math library - static development files" |
246 | 246 | ||
247 | FILES_libgomp = "${libdir}/libgomp*${SOLIBS}" | 247 | FILES:libgomp = "${libdir}/libgomp*${SOLIBS}" |
248 | SUMMARY_libgomp = "GNU OpenMP parallel programming library" | 248 | SUMMARY:libgomp = "GNU OpenMP parallel programming library" |
249 | FILES_libgomp-dev = "\ | 249 | FILES:libgomp-dev = "\ |
250 | ${libdir}/libgomp*${SOLIBSDEV} \ | 250 | ${libdir}/libgomp*${SOLIBSDEV} \ |
251 | ${libdir}/libgomp*.la \ | 251 | ${libdir}/libgomp*.la \ |
252 | ${libdir}/libgomp.spec \ | 252 | ${libdir}/libgomp.spec \ |
@@ -254,34 +254,34 @@ FILES_libgomp-dev = "\ | |||
254 | ${libdir}/${TARGET_SYS}/${BINV}/include/omp.h \ | 254 | ${libdir}/${TARGET_SYS}/${BINV}/include/omp.h \ |
255 | ${libdir}/${TARGET_SYS}/${BINV}/include/openacc.h \ | 255 | ${libdir}/${TARGET_SYS}/${BINV}/include/openacc.h \ |
256 | " | 256 | " |
257 | SUMMARY_libgomp-dev = "GNU OpenMP parallel programming library - development files" | 257 | SUMMARY:libgomp-dev = "GNU OpenMP parallel programming library - development files" |
258 | FILES_libgomp-staticdev = "${libdir}/libgomp*.a" | 258 | FILES:libgomp-staticdev = "${libdir}/libgomp*.a" |
259 | SUMMARY_libgomp-staticdev = "GNU OpenMP parallel programming library - static development files" | 259 | SUMMARY:libgomp-staticdev = "GNU OpenMP parallel programming library - static development files" |
260 | 260 | ||
261 | FILES_libatomic = "${libdir}/libatomic.so.*" | 261 | FILES:libatomic = "${libdir}/libatomic.so.*" |
262 | SUMMARY_libatomic = "GNU C++11 atomics support library" | 262 | SUMMARY:libatomic = "GNU C++11 atomics support library" |
263 | FILES_libatomic-dev = "\ | 263 | FILES:libatomic-dev = "\ |
264 | ${libdir}/libatomic.so \ | 264 | ${libdir}/libatomic.so \ |
265 | ${libdir}/libatomic.la \ | 265 | ${libdir}/libatomic.la \ |
266 | " | 266 | " |
267 | SUMMARY_libatomic-dev = "GNU C++11 atomics support library - development files" | 267 | SUMMARY:libatomic-dev = "GNU C++11 atomics support library - development files" |
268 | FILES_libatomic-staticdev = "${libdir}/libatomic.a" | 268 | FILES:libatomic-staticdev = "${libdir}/libatomic.a" |
269 | SUMMARY_libatomic-staticdev = "GNU C++11 atomics support library - static development files" | 269 | SUMMARY:libatomic-staticdev = "GNU C++11 atomics support library - static development files" |
270 | 270 | ||
271 | FILES_libitm = "${libdir}/libitm.so.*" | 271 | FILES:libitm = "${libdir}/libitm.so.*" |
272 | SUMMARY_libitm = "GNU transactional memory support library" | 272 | SUMMARY:libitm = "GNU transactional memory support library" |
273 | FILES_libitm-dev = "\ | 273 | FILES:libitm-dev = "\ |
274 | ${libdir}/libitm.so \ | 274 | ${libdir}/libitm.so \ |
275 | ${libdir}/libitm.la \ | 275 | ${libdir}/libitm.la \ |
276 | ${libdir}/libitm.spec \ | 276 | ${libdir}/libitm.spec \ |
277 | " | 277 | " |
278 | SUMMARY_libitm-dev = "GNU transactional memory support library - development files" | 278 | SUMMARY:libitm-dev = "GNU transactional memory support library - development files" |
279 | FILES_libitm-staticdev = "${libdir}/libitm.a" | 279 | FILES:libitm-staticdev = "${libdir}/libitm.a" |
280 | SUMMARY_libitm-staticdev = "GNU transactional memory support library - static development files" | 280 | SUMMARY:libitm-staticdev = "GNU transactional memory support library - static development files" |
281 | 281 | ||
282 | require gcc-testsuite.inc | 282 | require gcc-testsuite.inc |
283 | 283 | ||
284 | EXTRA_OEMAKE_prepend_task-check = "${PARALLEL_MAKE} " | 284 | EXTRA_OEMAKE:prepend_task-check = "${PARALLEL_MAKE} " |
285 | 285 | ||
286 | MAKE_CHECK_TARGETS ??= "check-gcc ${@" ".join("check-target-" + i for i in d.getVar("RUNTIMETARGET").split())}" | 286 | MAKE_CHECK_TARGETS ??= "check-gcc ${@" ".join("check-target-" + i for i in d.getVar("RUNTIMETARGET").split())}" |
287 | # prettyprinters and xmethods require gdb tooling | 287 | # prettyprinters and xmethods require gdb tooling |
diff --git a/meta/recipes-devtools/gcc/gcc-sanitizers.inc b/meta/recipes-devtools/gcc/gcc-sanitizers.inc index 59e91daaea..9881afa837 100644 --- a/meta/recipes-devtools/gcc/gcc-sanitizers.inc +++ b/meta/recipes-devtools/gcc/gcc-sanitizers.inc | |||
@@ -47,11 +47,11 @@ do_install () { | |||
47 | } | 47 | } |
48 | 48 | ||
49 | INHIBIT_DEFAULT_DEPS = "1" | 49 | INHIBIT_DEFAULT_DEPS = "1" |
50 | ALLOW_EMPTY_${PN} = "1" | 50 | ALLOW_EMPTY:${PN} = "1" |
51 | DEPENDS = "virtual/crypt gcc-runtime virtual/${TARGET_PREFIX}gcc" | 51 | DEPENDS = "virtual/crypt gcc-runtime virtual/${TARGET_PREFIX}gcc" |
52 | 52 | ||
53 | # used to fix ../../../../../../../../../work-shared/gcc-8.3.0-r0/gcc-8.3.0/libsanitizer/libbacktrace/../../libbacktrace/elf.c:772:21: error: 'st.st_mode' may be used uninitialized in this function [-Werror=maybe-uninitialized] | 53 | # used to fix ../../../../../../../../../work-shared/gcc-8.3.0-r0/gcc-8.3.0/libsanitizer/libbacktrace/../../libbacktrace/elf.c:772:21: error: 'st.st_mode' may be used uninitialized in this function [-Werror=maybe-uninitialized] |
54 | DEBUG_OPTIMIZATION_append = " -Wno-error" | 54 | DEBUG_OPTIMIZATION:append = " -Wno-error" |
55 | 55 | ||
56 | BBCLASSEXTEND = "nativesdk" | 56 | BBCLASSEXTEND = "nativesdk" |
57 | 57 | ||
@@ -60,19 +60,19 @@ PACKAGES += "libasan libubsan liblsan libtsan" | |||
60 | PACKAGES += "libasan-dev libubsan-dev liblsan-dev libtsan-dev" | 60 | PACKAGES += "libasan-dev libubsan-dev liblsan-dev libtsan-dev" |
61 | PACKAGES += "libasan-staticdev libubsan-staticdev liblsan-staticdev libtsan-staticdev" | 61 | PACKAGES += "libasan-staticdev libubsan-staticdev liblsan-staticdev libtsan-staticdev" |
62 | 62 | ||
63 | RDEPENDS_libasan += "libstdc++" | 63 | RDEPENDS:libasan += "libstdc++" |
64 | RDEPENDS_libubsan += "libstdc++" | 64 | RDEPENDS:libubsan += "libstdc++" |
65 | RDEPENDS_liblsan += "libstdc++" | 65 | RDEPENDS:liblsan += "libstdc++" |
66 | RDEPENDS_libtsan += "libstdc++" | 66 | RDEPENDS:libtsan += "libstdc++" |
67 | RDEPENDS_libasan-dev += "${PN}" | 67 | RDEPENDS:libasan-dev += "${PN}" |
68 | RDEPENDS_libubsan-dev += "${PN}" | 68 | RDEPENDS:libubsan-dev += "${PN}" |
69 | RDEPENDS_liblsan-dev += "${PN}" | 69 | RDEPENDS:liblsan-dev += "${PN}" |
70 | RDEPENDS_libtsan-dev += "${PN}" | 70 | RDEPENDS:libtsan-dev += "${PN}" |
71 | RRECOMMENDS_${PN} += "libasan libubsan" | 71 | RRECOMMENDS:${PN} += "libasan libubsan" |
72 | RRECOMMENDS_${PN}_append_x86 = " liblsan" | 72 | RRECOMMENDS:${PN}:append:x86 = " liblsan" |
73 | RRECOMMENDS_${PN}_append_x86-64 = " liblsan libtsan" | 73 | RRECOMMENDS:${PN}:append:x86-64 = " liblsan libtsan" |
74 | RRECOMMENDS_${PN}_append_powerpc64 = " liblsan libtsan" | 74 | RRECOMMENDS:${PN}:append:powerpc64 = " liblsan libtsan" |
75 | RRECOMMENDS_${PN}_append_aarch64 = " liblsan libtsan" | 75 | RRECOMMENDS:${PN}:append:aarch64 = " liblsan libtsan" |
76 | 76 | ||
77 | do_package_write_ipk[depends] += "virtual/${MLPREFIX}${TARGET_PREFIX}compilerlibs:do_packagedata" | 77 | do_package_write_ipk[depends] += "virtual/${MLPREFIX}${TARGET_PREFIX}compilerlibs:do_packagedata" |
78 | do_package_write_deb[depends] += "virtual/${MLPREFIX}${TARGET_PREFIX}compilerlibs:do_packagedata" | 78 | do_package_write_deb[depends] += "virtual/${MLPREFIX}${TARGET_PREFIX}compilerlibs:do_packagedata" |
@@ -81,40 +81,40 @@ do_package_write_rpm[depends] += "virtual/${MLPREFIX}${TARGET_PREFIX}compilerlib | |||
81 | # Only x86, powerpc, sparc, s390, arm, and aarch64 are supported | 81 | # Only x86, powerpc, sparc, s390, arm, and aarch64 are supported |
82 | COMPATIBLE_HOST = '(x86_64|i.86|powerpc|sparc|s390|arm|aarch64).*-linux' | 82 | COMPATIBLE_HOST = '(x86_64|i.86|powerpc|sparc|s390|arm|aarch64).*-linux' |
83 | # musl is currently broken entirely | 83 | # musl is currently broken entirely |
84 | COMPATIBLE_HOST_libc-musl = 'null' | 84 | COMPATIBLE_HOST:libc-musl = 'null' |
85 | 85 | ||
86 | FILES_libasan += "${libdir}/libasan.so.* ${libdir}/libhwasan.so.*" | 86 | FILES:libasan += "${libdir}/libasan.so.* ${libdir}/libhwasan.so.*" |
87 | FILES_libasan-dev += "\ | 87 | FILES:libasan-dev += "\ |
88 | ${libdir}/libasan_preinit.o \ | 88 | ${libdir}/libasan_preinit.o \ |
89 | ${libdir}/libasan.so \ | 89 | ${libdir}/libasan.so \ |
90 | ${libdir}/libhwasan.so \ | 90 | ${libdir}/libhwasan.so \ |
91 | ${libdir}/libasan.la \ | 91 | ${libdir}/libasan.la \ |
92 | " | 92 | " |
93 | FILES_libasan-staticdev += "${libdir}/libasan.a \ | 93 | FILES:libasan-staticdev += "${libdir}/libasan.a \ |
94 | ${libdir}/libhwasan.a \ | 94 | ${libdir}/libhwasan.a \ |
95 | " | 95 | " |
96 | 96 | ||
97 | FILES_libubsan += "${libdir}/libubsan.so.*" | 97 | FILES:libubsan += "${libdir}/libubsan.so.*" |
98 | FILES_libubsan-dev += "\ | 98 | FILES:libubsan-dev += "\ |
99 | ${libdir}/libubsan.so \ | 99 | ${libdir}/libubsan.so \ |
100 | ${libdir}/libubsan.la \ | 100 | ${libdir}/libubsan.la \ |
101 | " | 101 | " |
102 | FILES_libubsan-staticdev += "${libdir}/libubsan.a" | 102 | FILES:libubsan-staticdev += "${libdir}/libubsan.a" |
103 | 103 | ||
104 | FILES_liblsan += "${libdir}/liblsan.so.*" | 104 | FILES:liblsan += "${libdir}/liblsan.so.*" |
105 | FILES_liblsan-dev += "\ | 105 | FILES:liblsan-dev += "\ |
106 | ${libdir}/liblsan.so \ | 106 | ${libdir}/liblsan.so \ |
107 | ${libdir}/liblsan.la \ | 107 | ${libdir}/liblsan.la \ |
108 | ${libdir}/liblsan_preinit.o \ | 108 | ${libdir}/liblsan_preinit.o \ |
109 | " | 109 | " |
110 | FILES_liblsan-staticdev += "${libdir}/liblsan.a" | 110 | FILES:liblsan-staticdev += "${libdir}/liblsan.a" |
111 | 111 | ||
112 | FILES_libtsan += "${libdir}/libtsan.so.*" | 112 | FILES:libtsan += "${libdir}/libtsan.so.*" |
113 | FILES_libtsan-dev += "\ | 113 | FILES:libtsan-dev += "\ |
114 | ${libdir}/libtsan.so \ | 114 | ${libdir}/libtsan.so \ |
115 | ${libdir}/libtsan.la \ | 115 | ${libdir}/libtsan.la \ |
116 | ${libdir}/libtsan_*.o \ | 116 | ${libdir}/libtsan_*.o \ |
117 | " | 117 | " |
118 | FILES_libtsan-staticdev += "${libdir}/libtsan.a" | 118 | FILES:libtsan-staticdev += "${libdir}/libtsan.a" |
119 | 119 | ||
120 | FILES_${PN} = "${libdir}/*.spec ${libdir}/${TARGET_SYS}/${BINV}/include/sanitizer/*.h" | 120 | FILES:${PN} = "${libdir}/*.spec ${libdir}/${TARGET_SYS}/${BINV}/include/sanitizer/*.h" |
diff --git a/meta/recipes-devtools/gcc/gcc-sanitizers_11.1.bb b/meta/recipes-devtools/gcc/gcc-sanitizers_11.1.bb index f3c7058114..8bda2ccad6 100644 --- a/meta/recipes-devtools/gcc/gcc-sanitizers_11.1.bb +++ b/meta/recipes-devtools/gcc/gcc-sanitizers_11.1.bb | |||
@@ -3,5 +3,5 @@ require gcc-sanitizers.inc | |||
3 | 3 | ||
4 | # Building with thumb enabled on armv4t armv5t fails with | 4 | # Building with thumb enabled on armv4t armv5t fails with |
5 | # sanitizer_linux.s:5749: Error: lo register required -- `ldr ip,[sp],#8' | 5 | # sanitizer_linux.s:5749: Error: lo register required -- `ldr ip,[sp],#8' |
6 | ARM_INSTRUCTION_SET_armv4 = "arm" | 6 | ARM_INSTRUCTION_SET:armv4 = "arm" |
7 | ARM_INSTRUCTION_SET_armv5 = "arm" | 7 | ARM_INSTRUCTION_SET:armv5 = "arm" |
diff --git a/meta/recipes-devtools/gcc/gcc-target.inc b/meta/recipes-devtools/gcc/gcc-target.inc index 0ee3e83d42..bf55e692e6 100644 --- a/meta/recipes-devtools/gcc/gcc-target.inc +++ b/meta/recipes-devtools/gcc/gcc-target.inc | |||
@@ -5,7 +5,7 @@ EXTRA_OECONF_PATHS = "\ | |||
5 | --with-build-sysroot=${STAGING_DIR_TARGET} \ | 5 | --with-build-sysroot=${STAGING_DIR_TARGET} \ |
6 | " | 6 | " |
7 | 7 | ||
8 | EXTRA_OECONF_append_linuxstdbase = " --enable-clocale=gnu" | 8 | EXTRA_OECONF:append:linuxstdbase = " --enable-clocale=gnu" |
9 | 9 | ||
10 | # Configure gcc running on the target to default to an architecture which will | 10 | # Configure gcc running on the target to default to an architecture which will |
11 | # be compatible with that of gcc-runtime (which is cross compiled to be target | 11 | # be compatible with that of gcc-runtime (which is cross compiled to be target |
@@ -15,11 +15,11 @@ EXTRA_OECONF_append_linuxstdbase = " --enable-clocale=gnu" | |||
15 | 15 | ||
16 | ARMFPARCHEXT ?= "" | 16 | ARMFPARCHEXT ?= "" |
17 | 17 | ||
18 | EXTRA_OECONF_append_armv6_class-target = " --with-arch=armv6${ARMFPARCHEXT}" | 18 | EXTRA_OECONF:append:armv6:class-target = " --with-arch=armv6${ARMFPARCHEXT}" |
19 | EXTRA_OECONF_append_armv7a_class-target = " --with-arch=armv7-a${ARMFPARCHEXT}" | 19 | EXTRA_OECONF:append:armv7a:class-target = " --with-arch=armv7-a${ARMFPARCHEXT}" |
20 | EXTRA_OECONF_append_armv7ve_class-target = " --with-arch=armv7ve${ARMFPARCHEXT}" | 20 | EXTRA_OECONF:append:armv7ve:class-target = " --with-arch=armv7ve${ARMFPARCHEXT}" |
21 | EXTRA_OECONF_append_arc_class-target = " --with-cpu=${TUNE_PKGARCH}" | 21 | EXTRA_OECONF:append:arc:class-target = " --with-cpu=${TUNE_PKGARCH}" |
22 | EXTRA_OECONF_append_x86-64_class-target = " --with-arch=native" | 22 | EXTRA_OECONF:append:x86-64:class-target = " --with-arch=native" |
23 | 23 | ||
24 | # libcc1 requres gcc_cv_objdump when cross build, but gcc_cv_objdump is | 24 | # libcc1 requres gcc_cv_objdump when cross build, but gcc_cv_objdump is |
25 | # set in subdir gcc, so subdir libcc1 can't use it, export it here to | 25 | # set in subdir gcc, so subdir libcc1 can't use it, export it here to |
@@ -40,7 +40,7 @@ PACKAGES = "\ | |||
40 | ${PN}-dbg \ | 40 | ${PN}-dbg \ |
41 | " | 41 | " |
42 | 42 | ||
43 | FILES_${PN} = "\ | 43 | FILES:${PN} = "\ |
44 | ${bindir}/${TARGET_PREFIX}gcc* \ | 44 | ${bindir}/${TARGET_PREFIX}gcc* \ |
45 | ${bindir}/${TARGET_PREFIX}lto* \ | 45 | ${bindir}/${TARGET_PREFIX}lto* \ |
46 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/collect2* \ | 46 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/collect2* \ |
@@ -56,85 +56,85 @@ FILES_${PN} = "\ | |||
56 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include-fixed \ | 56 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include-fixed \ |
57 | ${libdir}/bfd-plugins/*.so \ | 57 | ${libdir}/bfd-plugins/*.so \ |
58 | " | 58 | " |
59 | INSANE_SKIP_${PN} += "dev-so" | 59 | INSANE_SKIP:${PN} += "dev-so" |
60 | RRECOMMENDS_${PN} += "\ | 60 | RRECOMMENDS:${PN} += "\ |
61 | libssp \ | 61 | libssp \ |
62 | libssp-dev \ | 62 | libssp-dev \ |
63 | " | 63 | " |
64 | RDEPENDS_${PN} += "cpp" | 64 | RDEPENDS:${PN} += "cpp" |
65 | 65 | ||
66 | FILES_${PN}-dev = "\ | 66 | FILES:${PN}-dev = "\ |
67 | ${gcclibdir}/${TARGET_SYS}/${BINV}/lib*${SOLIBSDEV} \ | 67 | ${gcclibdir}/${TARGET_SYS}/${BINV}/lib*${SOLIBSDEV} \ |
68 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/lib*${SOLIBSDEV} \ | 68 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/lib*${SOLIBSDEV} \ |
69 | ${gcclibdir}/${TARGET_SYS}/${BINV}/plugin/include/ \ | 69 | ${gcclibdir}/${TARGET_SYS}/${BINV}/plugin/include/ \ |
70 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/plugin/gengtype \ | 70 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/plugin/gengtype \ |
71 | ${gcclibdir}/${TARGET_SYS}/${BINV}/plugin/gtype.state \ | 71 | ${gcclibdir}/${TARGET_SYS}/${BINV}/plugin/gtype.state \ |
72 | " | 72 | " |
73 | FILES_${PN}-symlinks = "\ | 73 | FILES:${PN}-symlinks = "\ |
74 | ${bindir}/cc \ | 74 | ${bindir}/cc \ |
75 | ${bindir}/gcc \ | 75 | ${bindir}/gcc \ |
76 | ${bindir}/gccbug \ | 76 | ${bindir}/gccbug \ |
77 | " | 77 | " |
78 | 78 | ||
79 | FILES_${PN}-plugins = "\ | 79 | FILES:${PN}-plugins = "\ |
80 | ${gcclibdir}/${TARGET_SYS}/${BINV}/plugin \ | 80 | ${gcclibdir}/${TARGET_SYS}/${BINV}/plugin \ |
81 | " | 81 | " |
82 | ALLOW_EMPTY_${PN}-plugins = "1" | 82 | ALLOW_EMPTY:${PN}-plugins = "1" |
83 | 83 | ||
84 | FILES_g77 = "\ | 84 | FILES:g77 = "\ |
85 | ${bindir}/${TARGET_PREFIX}g77 \ | 85 | ${bindir}/${TARGET_PREFIX}g77 \ |
86 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/f771 \ | 86 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/f771 \ |
87 | " | 87 | " |
88 | FILES_g77-symlinks = "\ | 88 | FILES:g77-symlinks = "\ |
89 | ${bindir}/g77 \ | 89 | ${bindir}/g77 \ |
90 | ${bindir}/f77 \ | 90 | ${bindir}/f77 \ |
91 | " | 91 | " |
92 | RRECOMMENDS_g77 = "\ | 92 | RRECOMMENDS:g77 = "\ |
93 | libg2c \ | 93 | libg2c \ |
94 | libg2c-dev \ | 94 | libg2c-dev \ |
95 | " | 95 | " |
96 | 96 | ||
97 | FILES_gfortran = "\ | 97 | FILES:gfortran = "\ |
98 | ${bindir}/${TARGET_PREFIX}gfortran \ | 98 | ${bindir}/${TARGET_PREFIX}gfortran \ |
99 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/f951 \ | 99 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/f951 \ |
100 | " | 100 | " |
101 | RRECOMMENDS_gfortran = "\ | 101 | RRECOMMENDS:gfortran = "\ |
102 | libquadmath \ | 102 | libquadmath \ |
103 | libquadmath-dev \ | 103 | libquadmath-dev \ |
104 | " | 104 | " |
105 | FILES_gfortran-symlinks = "\ | 105 | FILES:gfortran-symlinks = "\ |
106 | ${bindir}/gfortran \ | 106 | ${bindir}/gfortran \ |
107 | ${bindir}/f95" | 107 | ${bindir}/f95" |
108 | 108 | ||
109 | FILES_cpp = "\ | 109 | FILES:cpp = "\ |
110 | ${bindir}/${TARGET_PREFIX}cpp* \ | 110 | ${bindir}/${TARGET_PREFIX}cpp* \ |
111 | ${base_libdir}/cpp \ | 111 | ${base_libdir}/cpp \ |
112 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/cc1" | 112 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/cc1" |
113 | FILES_cpp-symlinks = "${bindir}/cpp" | 113 | FILES:cpp-symlinks = "${bindir}/cpp" |
114 | 114 | ||
115 | FILES_gcov = "${bindir}/${TARGET_PREFIX}gcov* \ | 115 | FILES:gcov = "${bindir}/${TARGET_PREFIX}gcov* \ |
116 | ${bindir}/${TARGET_PREFIX}gcov-tool* \ | 116 | ${bindir}/${TARGET_PREFIX}gcov-tool* \ |
117 | " | 117 | " |
118 | FILES_gcov-symlinks = "${bindir}/gcov \ | 118 | FILES:gcov-symlinks = "${bindir}/gcov \ |
119 | ${bindir}/gcov-tool \ | 119 | ${bindir}/gcov-tool \ |
120 | " | 120 | " |
121 | 121 | ||
122 | FILES_g++ = "\ | 122 | FILES:g++ = "\ |
123 | ${bindir}/${TARGET_PREFIX}g++* \ | 123 | ${bindir}/${TARGET_PREFIX}g++* \ |
124 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/cc1plus \ | 124 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/cc1plus \ |
125 | " | 125 | " |
126 | FILES_g++-symlinks = "\ | 126 | FILES:g++-symlinks = "\ |
127 | ${bindir}/c++ \ | 127 | ${bindir}/c++ \ |
128 | ${bindir}/g++ \ | 128 | ${bindir}/g++ \ |
129 | " | 129 | " |
130 | RRECOMMENDS_g++ = "\ | 130 | RRECOMMENDS:g++ = "\ |
131 | libstdc++ \ | 131 | libstdc++ \ |
132 | libstdc++-dev \ | 132 | libstdc++-dev \ |
133 | libatomic \ | 133 | libatomic \ |
134 | libatomic-dev \ | 134 | libatomic-dev \ |
135 | " | 135 | " |
136 | 136 | ||
137 | FILES_${PN}-doc = "\ | 137 | FILES:${PN}-doc = "\ |
138 | ${infodir} \ | 138 | ${infodir} \ |
139 | ${mandir} \ | 139 | ${mandir} \ |
140 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include/README \ | 140 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include/README \ |
@@ -221,7 +221,7 @@ do_install () { | |||
221 | chown -R root:root ${D} | 221 | chown -R root:root ${D} |
222 | } | 222 | } |
223 | 223 | ||
224 | do_install_append () { | 224 | do_install:append () { |
225 | # | 225 | # |
226 | # Thefixinc.sh script, run on the gcc's compile phase, looks into sysroot header | 226 | # Thefixinc.sh script, run on the gcc's compile phase, looks into sysroot header |
227 | # files and places the modified files into | 227 | # files and places the modified files into |
diff --git a/meta/recipes-devtools/gcc/gcc_11.1.bb b/meta/recipes-devtools/gcc/gcc_11.1.bb index 7d93590588..255fe552bd 100644 --- a/meta/recipes-devtools/gcc/gcc_11.1.bb +++ b/meta/recipes-devtools/gcc/gcc_11.1.bb | |||
@@ -4,11 +4,11 @@ require gcc-target.inc | |||
4 | # Building with thumb enabled on armv4t armv5t fails with | 4 | # Building with thumb enabled on armv4t armv5t fails with |
5 | # | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7438:(.text.unlikely+0x2fa): relocation truncated to fit: R_ARM_THM_CALL against symbol `fancy_abort(char const*, int, char const*)' defined in .glue_7 section in linker stubs | 5 | # | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7438:(.text.unlikely+0x2fa): relocation truncated to fit: R_ARM_THM_CALL against symbol `fancy_abort(char const*, int, char const*)' defined in .glue_7 section in linker stubs |
6 | # | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7442:(.text.unlikely+0x318): additional relocation overflows omitted from the output | 6 | # | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7442:(.text.unlikely+0x318): additional relocation overflows omitted from the output |
7 | ARM_INSTRUCTION_SET_armv4 = "arm" | 7 | ARM_INSTRUCTION_SET:armv4 = "arm" |
8 | ARM_INSTRUCTION_SET_armv5 = "arm" | 8 | ARM_INSTRUCTION_SET:armv5 = "arm" |
9 | 9 | ||
10 | ARMFPARCHEXT_armv6 = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}" | 10 | ARMFPARCHEXT:armv6 = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}" |
11 | ARMFPARCHEXT_armv7a = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}" | 11 | ARMFPARCHEXT:armv7a = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}" |
12 | ARMFPARCHEXT_armv7ve = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}" | 12 | ARMFPARCHEXT:armv7ve = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}" |
13 | 13 | ||
14 | BBCLASSEXTEND = "nativesdk" | 14 | BBCLASSEXTEND = "nativesdk" |
diff --git a/meta/recipes-devtools/gcc/libgcc-common.inc b/meta/recipes-devtools/gcc/libgcc-common.inc index d959566c3f..d48dc8b823 100644 --- a/meta/recipes-devtools/gcc/libgcc-common.inc +++ b/meta/recipes-devtools/gcc/libgcc-common.inc | |||
@@ -44,16 +44,16 @@ do_install () { | |||
44 | rm -rf ${D}${libdir}/${TARGET_SYS}/${BINV}/include | 44 | rm -rf ${D}${libdir}/${TARGET_SYS}/${BINV}/include |
45 | } | 45 | } |
46 | 46 | ||
47 | do_install_append_libc-baremetal () { | 47 | do_install:append:libc-baremetal () { |
48 | rmdir ${D}${base_libdir} | 48 | rmdir ${D}${base_libdir} |
49 | } | 49 | } |
50 | do_install_append_libc-newlib () { | 50 | do_install:append:libc-newlib () { |
51 | rmdir ${D}${base_libdir} | 51 | rmdir ${D}${base_libdir} |
52 | } | 52 | } |
53 | 53 | ||
54 | # No rpm package is actually created but -dev depends on it, avoid dnf error | 54 | # No rpm package is actually created but -dev depends on it, avoid dnf error |
55 | RDEPENDS_${PN}-dev_libc-baremetal = "" | 55 | RDEPENDS:${PN}-dev:libc-baremetal = "" |
56 | RDEPENDS_${PN}-dev_libc-newlib = "" | 56 | RDEPENDS:${PN}-dev:libc-newlib = "" |
57 | 57 | ||
58 | BBCLASSEXTEND = "nativesdk" | 58 | BBCLASSEXTEND = "nativesdk" |
59 | 59 | ||
@@ -98,9 +98,9 @@ fakeroot python do_multilib_install() { | |||
98 | 98 | ||
99 | 99 | ||
100 | for ml in multilibs.split(): | 100 | for ml in multilibs.split(): |
101 | tune = d.getVar('DEFAULTTUNE_virtclass-multilib-' + ml) | 101 | tune = d.getVar('DEFAULTTUNE:virtclass-multilib-' + ml) |
102 | if not tune: | 102 | if not tune: |
103 | bb.warn('DEFAULTTUNE_virtclass-multilib-%s is not defined. Skipping...' % ml) | 103 | bb.warn('DEFAULTTUNE:virtclass-multilib-%s is not defined. Skipping...' % ml) |
104 | continue | 104 | continue |
105 | 105 | ||
106 | tune_parameters = get_tune_parameters(tune, d) | 106 | tune_parameters = get_tune_parameters(tune, d) |
diff --git a/meta/recipes-devtools/gcc/libgcc-initial.inc b/meta/recipes-devtools/gcc/libgcc-initial.inc index 06bf224f73..8251e3c286 100644 --- a/meta/recipes-devtools/gcc/libgcc-initial.inc +++ b/meta/recipes-devtools/gcc/libgcc-initial.inc | |||
@@ -42,17 +42,17 @@ inherit nopackages | |||
42 | # We really only want this built by things that need it, not any recrdeptask | 42 | # We really only want this built by things that need it, not any recrdeptask |
43 | deltask do_build | 43 | deltask do_build |
44 | 44 | ||
45 | do_configure_prepend () { | 45 | do_configure:prepend () { |
46 | install -d ${STAGING_INCDIR} | 46 | install -d ${STAGING_INCDIR} |
47 | touch ${STAGING_INCDIR}/limits.h | 47 | touch ${STAGING_INCDIR}/limits.h |
48 | sed -i -e 's#INHIBIT_LIBC_CFLAGS =.*#INHIBIT_LIBC_CFLAGS = -Dinhibit_libc#' ${B}/gcc/libgcc.mvars | 48 | sed -i -e 's#INHIBIT_LIBC_CFLAGS =.*#INHIBIT_LIBC_CFLAGS = -Dinhibit_libc#' ${B}/gcc/libgcc.mvars |
49 | sed -i -e 's#inhibit_libc = false#inhibit_libc = true#' ${B}/gcc/Makefile | 49 | sed -i -e 's#inhibit_libc = false#inhibit_libc = true#' ${B}/gcc/Makefile |
50 | } | 50 | } |
51 | 51 | ||
52 | do_configure_append () { | 52 | do_configure:append () { |
53 | sed -i -e 's#thread_header = .*#thread_header = gthr-single.h#' ${B}/${BPN}/Makefile | 53 | sed -i -e 's#thread_header = .*#thread_header = gthr-single.h#' ${B}/${BPN}/Makefile |
54 | } | 54 | } |
55 | 55 | ||
56 | do_install_append () { | 56 | do_install:append () { |
57 | ln -s libgcc.a ${D}${libdir}/${TARGET_SYS}/${BINV}/libgcc_eh.a | 57 | ln -s libgcc.a ${D}${libdir}/${TARGET_SYS}/${BINV}/libgcc_eh.a |
58 | } | 58 | } |
diff --git a/meta/recipes-devtools/gcc/libgcc-initial_11.1.bb b/meta/recipes-devtools/gcc/libgcc-initial_11.1.bb index 0c698c26ec..a259082b47 100644 --- a/meta/recipes-devtools/gcc/libgcc-initial_11.1.bb +++ b/meta/recipes-devtools/gcc/libgcc-initial_11.1.bb | |||
@@ -2,4 +2,4 @@ require recipes-devtools/gcc/gcc-${PV}.inc | |||
2 | require libgcc-initial.inc | 2 | require libgcc-initial.inc |
3 | 3 | ||
4 | # Building with thumb enabled on armv6t fails | 4 | # Building with thumb enabled on armv6t fails |
5 | ARM_INSTRUCTION_SET_armv6 = "arm" | 5 | ARM_INSTRUCTION_SET:armv6 = "arm" |
diff --git a/meta/recipes-devtools/gcc/libgcc.inc b/meta/recipes-devtools/gcc/libgcc.inc index 6d48ec9809..84a2d930df 100644 --- a/meta/recipes-devtools/gcc/libgcc.inc +++ b/meta/recipes-devtools/gcc/libgcc.inc | |||
@@ -2,7 +2,7 @@ require libgcc-common.inc | |||
2 | 2 | ||
3 | DEPENDS = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++ virtual/${MLPREFIX}libc" | 3 | DEPENDS = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++ virtual/${MLPREFIX}libc" |
4 | 4 | ||
5 | do_install_append_class-target () { | 5 | do_install:append:class-target () { |
6 | if [ "${TCLIBC}" != "glibc" ]; then | 6 | if [ "${TCLIBC}" != "glibc" ]; then |
7 | case "${TARGET_OS}" in | 7 | case "${TARGET_OS}" in |
8 | "linux-musl" | "linux-*spe") extra_target_os="linux";; | 8 | "linux-musl" | "linux-*spe") extra_target_os="linux";; |
@@ -32,12 +32,12 @@ PACKAGES = "\ | |||
32 | 32 | ||
33 | # All libgcc source is marked with the exception. | 33 | # All libgcc source is marked with the exception. |
34 | # | 34 | # |
35 | LICENSE_${PN} = "GPL-3.0-with-GCC-exception" | 35 | LICENSE:${PN} = "GPL-3.0-with-GCC-exception" |
36 | LICENSE_${PN}-dev = "GPL-3.0-with-GCC-exception" | 36 | LICENSE:${PN}-dev = "GPL-3.0-with-GCC-exception" |
37 | LICENSE_${PN}-dbg = "GPL-3.0-with-GCC-exception" | 37 | LICENSE:${PN}-dbg = "GPL-3.0-with-GCC-exception" |
38 | 38 | ||
39 | 39 | ||
40 | FILES_${PN}-dev = "\ | 40 | FILES:${PN}-dev = "\ |
41 | ${base_libdir}/libgcc*.so \ | 41 | ${base_libdir}/libgcc*.so \ |
42 | ${@oe.utils.conditional('BASETARGET_SYS', '${TARGET_SYS}', '', '${libdir}/${BASETARGET_SYS}', d)} \ | 42 | ${@oe.utils.conditional('BASETARGET_SYS', '${TARGET_SYS}', '', '${libdir}/${BASETARGET_SYS}', d)} \ |
43 | ${libdir}/${TARGET_SYS}/${BINV}* \ | 43 | ${libdir}/${TARGET_SYS}/${BINV}* \ |
@@ -49,5 +49,5 @@ do_package_write_ipk[depends] += "virtual/${MLPREFIX}libc:do_packagedata" | |||
49 | do_package_write_deb[depends] += "virtual/${MLPREFIX}libc:do_packagedata" | 49 | do_package_write_deb[depends] += "virtual/${MLPREFIX}libc:do_packagedata" |
50 | do_package_write_rpm[depends] += "virtual/${MLPREFIX}libc:do_packagedata" | 50 | do_package_write_rpm[depends] += "virtual/${MLPREFIX}libc:do_packagedata" |
51 | 51 | ||
52 | INSANE_SKIP_${PN}-dev = "staticdev" | 52 | INSANE_SKIP:${PN}-dev = "staticdev" |
53 | 53 | ||
diff --git a/meta/recipes-devtools/gcc/libgcc_11.1.bb b/meta/recipes-devtools/gcc/libgcc_11.1.bb index ea210a1130..f88963b0a4 100644 --- a/meta/recipes-devtools/gcc/libgcc_11.1.bb +++ b/meta/recipes-devtools/gcc/libgcc_11.1.bb | |||
@@ -2,4 +2,4 @@ require recipes-devtools/gcc/gcc-${PV}.inc | |||
2 | require libgcc.inc | 2 | require libgcc.inc |
3 | 3 | ||
4 | # Building with thumb enabled on armv6t fails | 4 | # Building with thumb enabled on armv6t fails |
5 | ARM_INSTRUCTION_SET_armv6 = "arm" | 5 | ARM_INSTRUCTION_SET:armv6 = "arm" |
diff --git a/meta/recipes-devtools/gcc/libgfortran.inc b/meta/recipes-devtools/gcc/libgfortran.inc index 7543585e6e..344ec5e21e 100644 --- a/meta/recipes-devtools/gcc/libgfortran.inc +++ b/meta/recipes-devtools/gcc/libgfortran.inc | |||
@@ -54,12 +54,12 @@ PACKAGES = "\ | |||
54 | libgfortran-staticdev \ | 54 | libgfortran-staticdev \ |
55 | " | 55 | " |
56 | 56 | ||
57 | LICENSE_${PN} = "GPL-3.0-with-GCC-exception" | 57 | LICENSE:${PN} = "GPL-3.0-with-GCC-exception" |
58 | LICENSE_${PN}-dev = "GPL-3.0-with-GCC-exception" | 58 | LICENSE:${PN}-dev = "GPL-3.0-with-GCC-exception" |
59 | LICENSE_${PN}-dbg = "GPL-3.0-with-GCC-exception" | 59 | LICENSE:${PN}-dbg = "GPL-3.0-with-GCC-exception" |
60 | 60 | ||
61 | FILES_${PN} = "${libdir}/libgfortran.so.*" | 61 | FILES:${PN} = "${libdir}/libgfortran.so.*" |
62 | FILES_${PN}-dev = "\ | 62 | FILES:${PN}-dev = "\ |
63 | ${libdir}/libgfortran*.so \ | 63 | ${libdir}/libgfortran*.so \ |
64 | ${libdir}/libgfortran.spec \ | 64 | ${libdir}/libgfortran.spec \ |
65 | ${libdir}/libgfortran.la \ | 65 | ${libdir}/libgfortran.la \ |
@@ -68,9 +68,9 @@ FILES_${PN}-dev = "\ | |||
68 | ${libdir}/gcc/${TARGET_SYS}/${BINV}/finclude/ \ | 68 | ${libdir}/gcc/${TARGET_SYS}/${BINV}/finclude/ \ |
69 | ${libdir}/gcc/${TARGET_SYS}/${BINV}/include/ \ | 69 | ${libdir}/gcc/${TARGET_SYS}/${BINV}/include/ \ |
70 | " | 70 | " |
71 | FILES_${PN}-staticdev = "${libdir}/libgfortran.a" | 71 | FILES:${PN}-staticdev = "${libdir}/libgfortran.a" |
72 | 72 | ||
73 | INSANE_SKIP_${MLPREFIX}libgfortran-dev = "staticdev" | 73 | INSANE_SKIP:${MLPREFIX}libgfortran-dev = "staticdev" |
74 | 74 | ||
75 | do_package_write_ipk[depends] += "virtual/${MLPREFIX}libc:do_packagedata" | 75 | do_package_write_ipk[depends] += "virtual/${MLPREFIX}libc:do_packagedata" |
76 | do_package_write_deb[depends] += "virtual/${MLPREFIX}libc:do_packagedata" | 76 | do_package_write_deb[depends] += "virtual/${MLPREFIX}libc:do_packagedata" |
diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc index a2a6364daf..01cca123f8 100644 --- a/meta/recipes-devtools/gdb/gdb-common.inc +++ b/meta/recipes-devtools/gdb/gdb-common.inc | |||
@@ -5,10 +5,10 @@ SECTION = "devel" | |||
5 | DEPENDS = "expat zlib ncurses virtual/libiconv ${LTTNGUST} bison-native" | 5 | DEPENDS = "expat zlib ncurses virtual/libiconv ${LTTNGUST} bison-native" |
6 | 6 | ||
7 | LTTNGUST = "lttng-ust" | 7 | LTTNGUST = "lttng-ust" |
8 | LTTNGUST_arc = "" | 8 | LTTNGUST:arc = "" |
9 | LTTNGUST_aarch64 = "" | 9 | LTTNGUST:aarch64 = "" |
10 | LTTNGUST_mipsarch = "" | 10 | LTTNGUST:mipsarch = "" |
11 | LTTNGUST_sh4 = "" | 11 | LTTNGUST:sh4 = "" |
12 | 12 | ||
13 | inherit autotools texinfo | 13 | inherit autotools texinfo |
14 | 14 | ||
@@ -52,14 +52,14 @@ do_configure () { | |||
52 | 52 | ||
53 | # we don't want gdb to provide bfd/iberty/opcodes, which instead will override the | 53 | # we don't want gdb to provide bfd/iberty/opcodes, which instead will override the |
54 | # right bits installed by binutils. Same for bfd.info -- also from binutils. | 54 | # right bits installed by binutils. Same for bfd.info -- also from binutils. |
55 | do_install_append() { | 55 | do_install:append() { |
56 | rm -rf ${D}${libdir} | 56 | rm -rf ${D}${libdir} |
57 | rm -rf ${D}${includedir} | 57 | rm -rf ${D}${includedir} |
58 | rm -rf ${D}${datadir}/locale | 58 | rm -rf ${D}${datadir}/locale |
59 | rm -f ${D}${infodir}/bfd.info | 59 | rm -f ${D}${infodir}/bfd.info |
60 | } | 60 | } |
61 | 61 | ||
62 | RRECOMMENDS_gdb_append_linux = " glibc-thread-db " | 62 | RRECOMMENDS:gdb:append_linux = " glibc-thread-db " |
63 | RRECOMMENDS_gdb_append_linux-gnueabi = " glibc-thread-db " | 63 | RRECOMMENDS:gdb:append_linux-gnueabi = " glibc-thread-db " |
64 | RRECOMMENDS_gdbserver_append_linux = " glibc-thread-db " | 64 | RRECOMMENDS:gdbserver:append_linux = " glibc-thread-db " |
65 | RRECOMMENDS_gdbserver_append_linux-gnueabi = " glibc-thread-db " | 65 | RRECOMMENDS:gdbserver:append_linux-gnueabi = " glibc-thread-db " |
diff --git a/meta/recipes-devtools/gdb/gdb-cross-canadian.inc b/meta/recipes-devtools/gdb/gdb-cross-canadian.inc index edb05b6f18..670534fb5f 100644 --- a/meta/recipes-devtools/gdb/gdb-cross-canadian.inc +++ b/meta/recipes-devtools/gdb/gdb-cross-canadian.inc | |||
@@ -21,7 +21,7 @@ PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod, nativesdk- | |||
21 | 21 | ||
22 | SSTATE_DUPWHITELIST += "${STAGING_DATADIR}/gdb" | 22 | SSTATE_DUPWHITELIST += "${STAGING_DATADIR}/gdb" |
23 | 23 | ||
24 | do_configure_prepend() { | 24 | do_configure:prepend() { |
25 | cat > ${WORKDIR}/python << EOF | 25 | cat > ${WORKDIR}/python << EOF |
26 | #! /bin/sh | 26 | #! /bin/sh |
27 | case "\$2" in | 27 | case "\$2" in |
@@ -37,7 +37,7 @@ EOF | |||
37 | 37 | ||
38 | # we don't want gdb to provide bfd/iberty/opcodes, which instead will override the | 38 | # we don't want gdb to provide bfd/iberty/opcodes, which instead will override the |
39 | # right bits installed by binutils. | 39 | # right bits installed by binutils. |
40 | do_install_append() { | 40 | do_install:append() { |
41 | rm -rf ${D}${exec_prefix}/lib | 41 | rm -rf ${D}${exec_prefix}/lib |
42 | cross_canadian_bindirlinks | 42 | cross_canadian_bindirlinks |
43 | } | 43 | } |
diff --git a/meta/recipes-devtools/gdb/gdb-cross.inc b/meta/recipes-devtools/gdb/gdb-cross.inc index f8a113da8f..6ba3eae6fc 100644 --- a/meta/recipes-devtools/gdb/gdb-cross.inc +++ b/meta/recipes-devtools/gdb/gdb-cross.inc | |||
@@ -10,7 +10,7 @@ PACKAGECONFIG[python] = "--with-python=${PYTHON},--without-python,python3-native | |||
10 | PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,readline-native" | 10 | PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,readline-native" |
11 | PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod, elfutils-native" | 11 | PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod, elfutils-native" |
12 | 12 | ||
13 | do_compile_prepend() { | 13 | do_compile:prepend() { |
14 | export STAGING_LIBDIR="${STAGING_LIBDIR_NATIVE}" | 14 | export STAGING_LIBDIR="${STAGING_LIBDIR_NATIVE}" |
15 | export STAGING_INCDIR="${STAGING_INCDIR_NATIVE}" | 15 | export STAGING_INCDIR="${STAGING_INCDIR_NATIVE}" |
16 | } | 16 | } |
diff --git a/meta/recipes-devtools/gdb/gdb.inc b/meta/recipes-devtools/gdb/gdb.inc index aa845b5c49..f4cd0a5c01 100644 --- a/meta/recipes-devtools/gdb/gdb.inc +++ b/meta/recipes-devtools/gdb/gdb.inc | |||
@@ -3,9 +3,9 @@ require gdb-common.inc | |||
3 | inherit gettext | 3 | inherit gettext |
4 | 4 | ||
5 | #LDFLAGS_append = " -s" | 5 | #LDFLAGS_append = " -s" |
6 | #export CFLAGS_append=" -L${STAGING_LIBDIR}" | 6 | #export CFLAGS:append=" -L${STAGING_LIBDIR}" |
7 | 7 | ||
8 | # cross-canadian must not see this | 8 | # cross-canadian must not see this |
9 | PACKAGES =+ "gdbserver" | 9 | PACKAGES =+ "gdbserver" |
10 | FILES_gdbserver = "${bindir}/gdbserver" | 10 | FILES:gdbserver = "${bindir}/gdbserver" |
11 | 11 | ||
diff --git a/meta/recipes-devtools/gdb/gdb_10.2.bb b/meta/recipes-devtools/gdb/gdb_10.2.bb index d70757a151..e73e3a2c5c 100644 --- a/meta/recipes-devtools/gdb/gdb_10.2.bb +++ b/meta/recipes-devtools/gdb/gdb_10.2.bb | |||
@@ -3,7 +3,7 @@ require gdb-${PV}.inc | |||
3 | 3 | ||
4 | inherit python3-dir | 4 | inherit python3-dir |
5 | 5 | ||
6 | EXTRA_OEMAKE_append_libc-musl = "\ | 6 | EXTRA_OEMAKE:append:libc-musl = "\ |
7 | gt_cv_func_gnugettext1_libc=yes \ | 7 | gt_cv_func_gnugettext1_libc=yes \ |
8 | gt_cv_func_gnugettext2_libc=yes \ | 8 | gt_cv_func_gnugettext2_libc=yes \ |
9 | gl_cv_func_working_strerror=yes \ | 9 | gl_cv_func_working_strerror=yes \ |
@@ -11,7 +11,7 @@ EXTRA_OEMAKE_append_libc-musl = "\ | |||
11 | gl_cv_func_gettimeofday_clobber=no \ | 11 | gl_cv_func_gettimeofday_clobber=no \ |
12 | " | 12 | " |
13 | 13 | ||
14 | do_configure_prepend() { | 14 | do_configure:prepend() { |
15 | if [ "${@bb.utils.filter('PACKAGECONFIG', 'python', d)}" ]; then | 15 | if [ "${@bb.utils.filter('PACKAGECONFIG', 'python', d)}" ]; then |
16 | cat > ${WORKDIR}/python << EOF | 16 | cat > ${WORKDIR}/python << EOF |
17 | #!/bin/sh | 17 | #!/bin/sh |
diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc index 146983a918..9dd2cf4549 100644 --- a/meta/recipes-devtools/git/git.inc +++ b/meta/recipes-devtools/git/git.inc | |||
@@ -5,7 +5,7 @@ SECTION = "console/utils" | |||
5 | LICENSE = "GPLv2" | 5 | LICENSE = "GPLv2" |
6 | DEPENDS = "openssl curl zlib expat" | 6 | DEPENDS = "openssl curl zlib expat" |
7 | 7 | ||
8 | PROVIDES_append_class-native = " git-replacement-native" | 8 | PROVIDES:append:class-native = " git-replacement-native" |
9 | 9 | ||
10 | SRC_URI = "${KERNELORG_MIRROR}/software/scm/git/git-${PV}.tar.gz;name=tarball \ | 10 | SRC_URI = "${KERNELORG_MIRROR}/software/scm/git/git-${PV}.tar.gz;name=tarball \ |
11 | ${KERNELORG_MIRROR}/software/scm/git/git-manpages-${PV}.tar.gz;name=manpages \ | 11 | ${KERNELORG_MIRROR}/software/scm/git/git-manpages-${PV}.tar.gz;name=manpages \ |
@@ -26,16 +26,16 @@ EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl-native/perl \ | |||
26 | --without-tcltk \ | 26 | --without-tcltk \ |
27 | --without-iconv \ | 27 | --without-iconv \ |
28 | " | 28 | " |
29 | EXTRA_OECONF_append_class-nativesdk = " --with-gitconfig=/etc/gitconfig " | 29 | EXTRA_OECONF:append:class-nativesdk = " --with-gitconfig=/etc/gitconfig " |
30 | 30 | ||
31 | # Needs brokensep as this doesn't use automake | 31 | # Needs brokensep as this doesn't use automake |
32 | inherit autotools-brokensep perlnative bash-completion | 32 | inherit autotools-brokensep perlnative bash-completion |
33 | 33 | ||
34 | EXTRA_OEMAKE = "NO_PYTHON=1 CFLAGS='${CFLAGS}' LDFLAGS='${LDFLAGS}'" | 34 | EXTRA_OEMAKE = "NO_PYTHON=1 CFLAGS='${CFLAGS}' LDFLAGS='${LDFLAGS}'" |
35 | EXTRA_OEMAKE += "'PERL_PATH=/usr/bin/env perl'" | 35 | EXTRA_OEMAKE += "'PERL_PATH=/usr/bin/env perl'" |
36 | EXTRA_OEMAKE_append_class-native = " NO_CROSS_DIRECTORY_HARDLINKS=1" | 36 | EXTRA_OEMAKE:append:class-native = " NO_CROSS_DIRECTORY_HARDLINKS=1" |
37 | 37 | ||
38 | do_compile_prepend () { | 38 | do_compile:prepend () { |
39 | # Remove perl/perl.mak to fix the out-of-date perl.mak error | 39 | # Remove perl/perl.mak to fix the out-of-date perl.mak error |
40 | # during rebuild | 40 | # during rebuild |
41 | rm -f perl/perl.mak | 41 | rm -f perl/perl.mak |
@@ -79,24 +79,24 @@ perl_native_fixup () { | |||
79 | REL_GIT_EXEC_PATH = "${@os.path.relpath(libexecdir, bindir)}/git-core" | 79 | REL_GIT_EXEC_PATH = "${@os.path.relpath(libexecdir, bindir)}/git-core" |
80 | REL_GIT_TEMPLATE_DIR = "${@os.path.relpath(datadir, bindir)}/git-core/templates" | 80 | REL_GIT_TEMPLATE_DIR = "${@os.path.relpath(datadir, bindir)}/git-core/templates" |
81 | 81 | ||
82 | do_install_append_class-target () { | 82 | do_install:append:class-target () { |
83 | perl_native_fixup | 83 | perl_native_fixup |
84 | } | 84 | } |
85 | 85 | ||
86 | do_install_append_class-native() { | 86 | do_install:append:class-native() { |
87 | create_wrapper ${D}${bindir}/git \ | 87 | create_wrapper ${D}${bindir}/git \ |
88 | GIT_EXEC_PATH='`dirname $''realpath`'/${REL_GIT_EXEC_PATH} \ | 88 | GIT_EXEC_PATH='`dirname $''realpath`'/${REL_GIT_EXEC_PATH} \ |
89 | GIT_TEMPLATE_DIR='`dirname $''realpath`'/${REL_GIT_TEMPLATE_DIR} | 89 | GIT_TEMPLATE_DIR='`dirname $''realpath`'/${REL_GIT_TEMPLATE_DIR} |
90 | } | 90 | } |
91 | 91 | ||
92 | do_install_append_class-nativesdk() { | 92 | do_install:append:class-nativesdk() { |
93 | create_wrapper ${D}${bindir}/git \ | 93 | create_wrapper ${D}${bindir}/git \ |
94 | GIT_EXEC_PATH='`dirname $''realpath`'/${REL_GIT_EXEC_PATH} \ | 94 | GIT_EXEC_PATH='`dirname $''realpath`'/${REL_GIT_EXEC_PATH} \ |
95 | GIT_TEMPLATE_DIR='`dirname $''realpath`'/${REL_GIT_TEMPLATE_DIR} | 95 | GIT_TEMPLATE_DIR='`dirname $''realpath`'/${REL_GIT_TEMPLATE_DIR} |
96 | perl_native_fixup | 96 | perl_native_fixup |
97 | } | 97 | } |
98 | 98 | ||
99 | FILES_${PN} += "${datadir}/git-core ${libexecdir}/git-core/" | 99 | FILES:${PN} += "${datadir}/git-core ${libexecdir}/git-core/" |
100 | 100 | ||
101 | PERLTOOLS = " \ | 101 | PERLTOOLS = " \ |
102 | ${bindir}/git-cvsserver \ | 102 | ${bindir}/git-cvsserver \ |
@@ -116,25 +116,25 @@ PERLTOOLS = " \ | |||
116 | 116 | ||
117 | # Git tools requiring perl | 117 | # Git tools requiring perl |
118 | PACKAGES =+ "${PN}-perltools" | 118 | PACKAGES =+ "${PN}-perltools" |
119 | FILES_${PN}-perltools += " \ | 119 | FILES:${PN}-perltools += " \ |
120 | ${PERLTOOLS} \ | 120 | ${PERLTOOLS} \ |
121 | ${libdir}/perl \ | 121 | ${libdir}/perl \ |
122 | ${datadir}/perl5 \ | 122 | ${datadir}/perl5 \ |
123 | " | 123 | " |
124 | 124 | ||
125 | RDEPENDS_${PN}-perltools = "${PN} perl perl-module-file-path findutils" | 125 | RDEPENDS:${PN}-perltools = "${PN} perl perl-module-file-path findutils" |
126 | 126 | ||
127 | # git-tk package with gitk and git-gui | 127 | # git-tk package with gitk and git-gui |
128 | PACKAGES =+ "${PN}-tk" | 128 | PACKAGES =+ "${PN}-tk" |
129 | #RDEPENDS_${PN}-tk = "${PN} tk tcl" | 129 | #RDEPENDS_${PN}-tk = "${PN} tk tcl" |
130 | #EXTRA_OEMAKE = "TCL_PATH=${STAGING_BINDIR_CROSS}/tclsh" | 130 | #EXTRA_OEMAKE = "TCL_PATH=${STAGING_BINDIR_CROSS}/tclsh" |
131 | FILES_${PN}-tk = " \ | 131 | FILES:${PN}-tk = " \ |
132 | ${bindir}/gitk \ | 132 | ${bindir}/gitk \ |
133 | ${datadir}/gitk \ | 133 | ${datadir}/gitk \ |
134 | " | 134 | " |
135 | 135 | ||
136 | PACKAGES =+ "gitweb" | 136 | PACKAGES =+ "gitweb" |
137 | FILES_gitweb = "${datadir}/gitweb/" | 137 | FILES:gitweb = "${datadir}/gitweb/" |
138 | RDEPENDS_gitweb = "perl" | 138 | RDEPENDS:gitweb = "perl" |
139 | 139 | ||
140 | BBCLASSEXTEND = "native nativesdk" | 140 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/glide/glide_0.13.3.bb b/meta/recipes-devtools/glide/glide_0.13.3.bb index 6eb87df7c3..e943dc1762 100644 --- a/meta/recipes-devtools/glide/glide_0.13.3.bb +++ b/meta/recipes-devtools/glide/glide_0.13.3.bb | |||
@@ -14,15 +14,15 @@ inherit go | |||
14 | # tool build to fail. | 14 | # tool build to fail. |
15 | export GO111MODULE = "off" | 15 | export GO111MODULE = "off" |
16 | 16 | ||
17 | RDEPENDS_${PN}-dev += "bash" | 17 | RDEPENDS:${PN}-dev += "bash" |
18 | RDEPENDS_${PN}-ptest += "bash" | 18 | RDEPENDS:${PN}-ptest += "bash" |
19 | 19 | ||
20 | BBCLASSEXTEND = "native nativesdk" | 20 | BBCLASSEXTEND = "native nativesdk" |
21 | 21 | ||
22 | # for x86 ends with textrel in ${PN} | 22 | # for x86 ends with textrel in ${PN} |
23 | # http://errors.yoctoproject.org/Errors/Details/185631/ | 23 | # http://errors.yoctoproject.org/Errors/Details/185631/ |
24 | # ERROR: QA Issue: ELF binary '/work/i586-oe-linux/glide/0.13.1-r0/packages-split/glide/usr/bin/glide' has relocations in .text [textrel] | 24 | # ERROR: QA Issue: ELF binary '/work/i586-oe-linux/glide/0.13.1-r0/packages-split/glide/usr/bin/glide' has relocations in .text [textrel] |
25 | INSANE_SKIP_${PN} += "textrel" | 25 | INSANE_SKIP:${PN} += "textrel" |
26 | 26 | ||
27 | # for aarch64 ends with textrel in ${PN}-ptest | 27 | # for aarch64 ends with textrel in ${PN}-ptest |
28 | # http://errors.yoctoproject.org/Errors/Details/185633/ | 28 | # http://errors.yoctoproject.org/Errors/Details/185633/ |
@@ -37,7 +37,7 @@ INSANE_SKIP_${PN} += "textrel" | |||
37 | # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest/github.com/Masterminds/glide/util/util.test' has relocations in .text | 37 | # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest/github.com/Masterminds/glide/util/util.test' has relocations in .text |
38 | # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest/github.com/Masterminds/glide/action/action.test' has relocations in .text | 38 | # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest/github.com/Masterminds/glide/action/action.test' has relocations in .text |
39 | # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest/github.com/Masterminds/glide/cache/cache.test' has relocations in .text [textrel] | 39 | # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest/github.com/Masterminds/glide/cache/cache.test' has relocations in .text [textrel] |
40 | INSANE_SKIP_${PN}-ptest += "textrel" | 40 | INSANE_SKIP:${PN}-ptest += "textrel" |
41 | 41 | ||
42 | # fails to run task compile_ptest_base on mips | 42 | # fails to run task compile_ptest_base on mips |
43 | PTEST_ENABLED_mipsarch = "0" | 43 | PTEST_ENABLED:mipsarch = "0" |
diff --git a/meta/recipes-devtools/gnu-config/gnu-config_git.bb b/meta/recipes-devtools/gnu-config/gnu-config_git.bb index 6e4435be2c..34b425031f 100644 --- a/meta/recipes-devtools/gnu-config/gnu-config_git.bb +++ b/meta/recipes-devtools/gnu-config/gnu-config_git.bb | |||
@@ -5,7 +5,7 @@ SECTION = "devel" | |||
5 | LICENSE = "GPL-3.0-with-autoconf-exception" | 5 | LICENSE = "GPL-3.0-with-autoconf-exception" |
6 | LIC_FILES_CHKSUM = "file://config.guess;beginline=9;endline=29;md5=b75d42f59f706ea56d6a8e00216fca6a" | 6 | LIC_FILES_CHKSUM = "file://config.guess;beginline=9;endline=29;md5=b75d42f59f706ea56d6a8e00216fca6a" |
7 | 7 | ||
8 | DEPENDS_class-native = "hostperl-runtime-native" | 8 | DEPENDS:class-native = "hostperl-runtime-native" |
9 | 9 | ||
10 | INHIBIT_DEFAULT_DEPS = "1" | 10 | INHIBIT_DEFAULT_DEPS = "1" |
11 | 11 | ||
@@ -36,6 +36,6 @@ do_install () { | |||
36 | } | 36 | } |
37 | 37 | ||
38 | PACKAGES = "${PN}" | 38 | PACKAGES = "${PN}" |
39 | FILES_${PN} = "${bindir} ${datadir}/gnu-config" | 39 | FILES:${PN} = "${bindir} ${datadir}/gnu-config" |
40 | 40 | ||
41 | BBCLASSEXTEND = "native nativesdk" | 41 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/go/go-1.16.5.inc b/meta/recipes-devtools/go/go-1.16.5.inc index bd928e44f8..545aa0c828 100644 --- a/meta/recipes-devtools/go/go-1.16.5.inc +++ b/meta/recipes-devtools/go/go-1.16.5.inc | |||
@@ -2,7 +2,7 @@ require go-common.inc | |||
2 | 2 | ||
3 | GO_BASEVERSION = "1.16" | 3 | GO_BASEVERSION = "1.16" |
4 | PV = "1.16.5" | 4 | PV = "1.16.5" |
5 | FILESEXTRAPATHS_prepend := "${FILE_DIRNAME}/go-${GO_BASEVERSION}:" | 5 | FILESEXTRAPATHS:prepend := "${FILE_DIRNAME}/go-${GO_BASEVERSION}:" |
6 | 6 | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=5d4950ecb7b26d2c5e4e7b4e0dd74707" | 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=5d4950ecb7b26d2c5e4e7b4e0dd74707" |
8 | 8 | ||
diff --git a/meta/recipes-devtools/go/go-common.inc b/meta/recipes-devtools/go/go-common.inc index 39a681a712..dfccebdb83 100644 --- a/meta/recipes-devtools/go/go-common.inc +++ b/meta/recipes-devtools/go/go-common.inc | |||
@@ -37,6 +37,6 @@ export GO386 ?= "${TARGET_GO386}" | |||
37 | export GOMIPS ?= "${TARGET_GOMIPS}" | 37 | export GOMIPS ?= "${TARGET_GOMIPS}" |
38 | export GOROOT_FINAL ?= "${libdir}/go" | 38 | export GOROOT_FINAL ?= "${libdir}/go" |
39 | 39 | ||
40 | do_compile_prepend() { | 40 | do_compile:prepend() { |
41 | BUILD_CC=${BUILD_CC} | 41 | BUILD_CC=${BUILD_CC} |
42 | } | 42 | } |
diff --git a/meta/recipes-devtools/go/go-native_1.16.5.bb b/meta/recipes-devtools/go/go-native_1.16.5.bb index f14892cdb0..ffe4ef3523 100644 --- a/meta/recipes-devtools/go/go-native_1.16.5.bb +++ b/meta/recipes-devtools/go/go-native_1.16.5.bb | |||
@@ -5,7 +5,7 @@ require go-${PV}.inc | |||
5 | 5 | ||
6 | inherit native | 6 | inherit native |
7 | 7 | ||
8 | SRC_URI_append = " https://dl.google.com/go/go1.4-bootstrap-20171003.tar.gz;name=bootstrap;subdir=go1.4" | 8 | SRC_URI:append = " https://dl.google.com/go/go1.4-bootstrap-20171003.tar.gz;name=bootstrap;subdir=go1.4" |
9 | SRC_URI[bootstrap.sha256sum] = "f4ff5b5eb3a3cae1c993723f3eab519c5bae18866b5e5f96fe1102f0cb5c3e52" | 9 | SRC_URI[bootstrap.sha256sum] = "f4ff5b5eb3a3cae1c993723f3eab519c5bae18866b5e5f96fe1102f0cb5c3e52" |
10 | 10 | ||
11 | export GOOS = "${BUILD_GOOS}" | 11 | export GOOS = "${BUILD_GOOS}" |
diff --git a/meta/recipes-devtools/go/go-runtime.inc b/meta/recipes-devtools/go/go-runtime.inc index 21179a83a0..617e6b5414 100644 --- a/meta/recipes-devtools/go/go-runtime.inc +++ b/meta/recipes-devtools/go/go-runtime.inc | |||
@@ -1,5 +1,5 @@ | |||
1 | DEPENDS = "virtual/${TUNE_PKGARCH}-go go-native" | 1 | DEPENDS = "virtual/${TUNE_PKGARCH}-go go-native" |
2 | DEPENDS_class-nativesdk = "virtual/${TARGET_PREFIX}go-crosssdk" | 2 | DEPENDS:class-nativesdk = "virtual/${TARGET_PREFIX}go-crosssdk" |
3 | PROVIDES = "virtual/${TARGET_PREFIX}go-runtime" | 3 | PROVIDES = "virtual/${TARGET_PREFIX}go-runtime" |
4 | 4 | ||
5 | export CGO_CFLAGS = "${CFLAGS}" | 5 | export CGO_CFLAGS = "${CFLAGS}" |
@@ -15,7 +15,7 @@ do_configure() { | |||
15 | : | 15 | : |
16 | } | 16 | } |
17 | 17 | ||
18 | do_configure_libc-musl() { | 18 | do_configure:libc-musl() { |
19 | rm -f ${S}/src/runtime/race/*.syso | 19 | rm -f ${S}/src/runtime/race/*.syso |
20 | } | 20 | } |
21 | 21 | ||
@@ -55,9 +55,9 @@ do_install() { | |||
55 | 55 | ||
56 | } | 56 | } |
57 | 57 | ||
58 | ALLOW_EMPTY_${PN} = "1" | 58 | ALLOW_EMPTY:${PN} = "1" |
59 | FILES_${PN} = "${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink/*${SOLIBSDEV}" | 59 | FILES:${PN} = "${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink/*${SOLIBSDEV}" |
60 | FILES_${PN}-dev = "${libdir}/go/src ${libdir}/go/pkg/include \ | 60 | FILES:${PN}-dev = "${libdir}/go/src ${libdir}/go/pkg/include \ |
61 | ${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink/*.shlibname \ | 61 | ${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink/*.shlibname \ |
62 | ${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink/*/*.shlibname \ | 62 | ${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink/*/*.shlibname \ |
63 | ${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink/*/*/*.shlibname \ | 63 | ${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink/*/*/*.shlibname \ |
@@ -73,12 +73,12 @@ FILES_${PN}-dev = "${libdir}/go/src ${libdir}/go/pkg/include \ | |||
73 | ${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink/*/*/*/*/*/*.a \ | 73 | ${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink/*/*/*/*/*/*.a \ |
74 | ${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink/*/*/*/*/*/*/*.a \ | 74 | ${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink/*/*/*/*/*/*/*.a \ |
75 | " | 75 | " |
76 | FILES_${PN}-staticdev = "${libdir}/go/pkg/${TARGET_GOTUPLE}" | 76 | FILES:${PN}-staticdev = "${libdir}/go/pkg/${TARGET_GOTUPLE}" |
77 | 77 | ||
78 | # Go sources include some scripts and pre-built binaries for | 78 | # Go sources include some scripts and pre-built binaries for |
79 | # multiple architectures. The static .a files for dynamically-linked | 79 | # multiple architectures. The static .a files for dynamically-linked |
80 | # runtime are also required in -dev. | 80 | # runtime are also required in -dev. |
81 | INSANE_SKIP_${PN}-dev = "staticdev file-rdeps arch" | 81 | INSANE_SKIP:${PN}-dev = "staticdev file-rdeps arch" |
82 | 82 | ||
83 | INHIBIT_PACKAGE_STRIP = "1" | 83 | INHIBIT_PACKAGE_STRIP = "1" |
84 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" | 84 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" |
diff --git a/meta/recipes-devtools/go/go-target.inc b/meta/recipes-devtools/go/go-target.inc index 8e44247031..47b4411d54 100644 --- a/meta/recipes-devtools/go/go-target.inc +++ b/meta/recipes-devtools/go/go-target.inc | |||
@@ -1,12 +1,12 @@ | |||
1 | DEPENDS = "virtual/${TUNE_PKGARCH}-go go-native" | 1 | DEPENDS = "virtual/${TUNE_PKGARCH}-go go-native" |
2 | DEPENDS_class-nativesdk = "virtual/${TARGET_PREFIX}go-crosssdk go-native" | 2 | DEPENDS:class-nativesdk = "virtual/${TARGET_PREFIX}go-crosssdk go-native" |
3 | 3 | ||
4 | export GOCACHE = "${B}/.cache" | 4 | export GOCACHE = "${B}/.cache" |
5 | GO_LDFLAGS = "" | 5 | GO_LDFLAGS = "" |
6 | GO_LDFLAGS_class-nativesdk = "-linkmode external" | 6 | GO_LDFLAGS:class-nativesdk = "-linkmode external" |
7 | export GO_LDFLAGS | 7 | export GO_LDFLAGS |
8 | 8 | ||
9 | CC_append_class-nativesdk = " ${SECURITY_NOPIE_CFLAGS}" | 9 | CC:append:class-nativesdk = " ${SECURITY_NOPIE_CFLAGS}" |
10 | 10 | ||
11 | do_configure[noexec] = "1" | 11 | do_configure[noexec] = "1" |
12 | 12 | ||
@@ -38,8 +38,8 @@ do_install() { | |||
38 | } | 38 | } |
39 | 39 | ||
40 | PACKAGES = "${PN} ${PN}-dev" | 40 | PACKAGES = "${PN} ${PN}-dev" |
41 | FILES_${PN} = "${libdir}/go/bin ${libdir}/go/pkg/tool/${TARGET_GOTUPLE} ${bindir}" | 41 | FILES:${PN} = "${libdir}/go/bin ${libdir}/go/pkg/tool/${TARGET_GOTUPLE} ${bindir}" |
42 | RDEPENDS_${PN} = "go-runtime" | 42 | RDEPENDS:${PN} = "go-runtime" |
43 | INSANE_SKIP_${PN} = "ldflags" | 43 | INSANE_SKIP:${PN} = "ldflags" |
44 | 44 | ||
45 | BBCLASSEXTEND = "nativesdk" | 45 | BBCLASSEXTEND = "nativesdk" |
diff --git a/meta/recipes-devtools/go/go_1.16.5.bb b/meta/recipes-devtools/go/go_1.16.5.bb index 4e9e0ebec8..34dc89bb0c 100644 --- a/meta/recipes-devtools/go/go_1.16.5.bb +++ b/meta/recipes-devtools/go/go_1.16.5.bb | |||
@@ -12,6 +12,6 @@ export CXX_FOR_TARGET = "g++" | |||
12 | # variants. | 12 | # variants. |
13 | python() { | 13 | python() { |
14 | if 'mips' in d.getVar('TARGET_ARCH',True) or 'riscv32' in d.getVar('TARGET_ARCH',True): | 14 | if 'mips' in d.getVar('TARGET_ARCH',True) or 'riscv32' in d.getVar('TARGET_ARCH',True): |
15 | d.appendVar('INSANE_SKIP_%s' % d.getVar('PN',True), " textrel") | 15 | d.appendVar('INSANE_SKIP:%s' % d.getVar('PN',True), " textrel") |
16 | } | 16 | } |
17 | 17 | ||
diff --git a/meta/recipes-devtools/help2man/help2man_1.48.3.bb b/meta/recipes-devtools/help2man/help2man_1.48.3.bb index a612c0896c..d24e6c446e 100644 --- a/meta/recipes-devtools/help2man/help2man_1.48.3.bb +++ b/meta/recipes-devtools/help2man/help2man_1.48.3.bb | |||
@@ -16,7 +16,7 @@ EXTRA_AUTORECONF += "--exclude=aclocal" | |||
16 | 16 | ||
17 | EXTRA_OECONF = "--disable-nls" | 17 | EXTRA_OECONF = "--disable-nls" |
18 | 18 | ||
19 | do_install_append () { | 19 | do_install:append () { |
20 | # Make sure we use /usr/bin/env perl | 20 | # Make sure we use /usr/bin/env perl |
21 | sed -i -e "1s:#!.*:#! /usr/bin/env perl:" ${D}${bindir}/help2man | 21 | sed -i -e "1s:#!.*:#! /usr/bin/env perl:" ${D}${bindir}/help2man |
22 | } | 22 | } |
diff --git a/meta/recipes-devtools/i2c-tools/i2c-tools_4.2.bb b/meta/recipes-devtools/i2c-tools/i2c-tools_4.2.bb index 9842d1f135..77196fd633 100644 --- a/meta/recipes-devtools/i2c-tools/i2c-tools_4.2.bb +++ b/meta/recipes-devtools/i2c-tools/i2c-tools_4.2.bb | |||
@@ -22,20 +22,20 @@ do_install() { | |||
22 | } | 22 | } |
23 | 23 | ||
24 | PACKAGES =+ "${PN}-misc" | 24 | PACKAGES =+ "${PN}-misc" |
25 | FILES_${PN}-misc = "${sbindir}/i2c-stub-from-dump \ | 25 | FILES:${PN}-misc = "${sbindir}/i2c-stub-from-dump \ |
26 | ${bindir}/ddcmon \ | 26 | ${bindir}/ddcmon \ |
27 | ${bindir}/decode-edid \ | 27 | ${bindir}/decode-edid \ |
28 | ${bindir}/decode-dimms \ | 28 | ${bindir}/decode-dimms \ |
29 | ${bindir}/decode-vaio \ | 29 | ${bindir}/decode-vaio \ |
30 | " | 30 | " |
31 | RDEPENDS_${PN}-misc = "${PN} perl perl-module-posix \ | 31 | RDEPENDS:${PN}-misc = "${PN} perl perl-module-posix \ |
32 | perl-module-constant perl-module-file-basename \ | 32 | perl-module-constant perl-module-file-basename \ |
33 | perl-module-fcntl perl-module-strict perl-module-vars \ | 33 | perl-module-fcntl perl-module-strict perl-module-vars \ |
34 | perl-module-carp \ | 34 | perl-module-carp \ |
35 | " | 35 | " |
36 | 36 | ||
37 | ALTERNATIVE_PRIORITY = "100" | 37 | ALTERNATIVE_PRIORITY = "100" |
38 | ALTERNATIVE_${PN} = "i2cdetect i2cdump i2cget i2cset i2ctransfer" | 38 | ALTERNATIVE:${PN} = "i2cdetect i2cdump i2cget i2cset i2ctransfer" |
39 | ALTERNATIVE_LINK_NAME[i2cdetect] = "${sbindir}/i2cdetect" | 39 | ALTERNATIVE_LINK_NAME[i2cdetect] = "${sbindir}/i2cdetect" |
40 | ALTERNATIVE_LINK_NAME[i2cdump] = "${sbindir}/i2cdump" | 40 | ALTERNATIVE_LINK_NAME[i2cdump] = "${sbindir}/i2cdump" |
41 | ALTERNATIVE_LINK_NAME[i2cget] = "${sbindir}/i2cget" | 41 | ALTERNATIVE_LINK_NAME[i2cget] = "${sbindir}/i2cget" |
diff --git a/meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb b/meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb index 61b8487c7e..27014226b5 100644 --- a/meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb +++ b/meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb | |||
@@ -36,4 +36,4 @@ do_install() { | |||
36 | 36 | ||
37 | BBCLASSEXTEND = "native nativesdk" | 37 | BBCLASSEXTEND = "native nativesdk" |
38 | 38 | ||
39 | RDEPENDS_${PN}_class-nativesdk = "patchelf" | 39 | RDEPENDS:${PN}:class-nativesdk = "patchelf" |
diff --git a/meta/recipes-devtools/icecc-toolchain/nativesdk-icecc-toolchain_0.1.bb b/meta/recipes-devtools/icecc-toolchain/nativesdk-icecc-toolchain_0.1.bb index ce4d73caf6..034a0047d7 100644 --- a/meta/recipes-devtools/icecc-toolchain/nativesdk-icecc-toolchain_0.1.bb +++ b/meta/recipes-devtools/icecc-toolchain/nativesdk-icecc-toolchain_0.1.bb | |||
@@ -34,6 +34,6 @@ do_install() { | |||
34 | } | 34 | } |
35 | 35 | ||
36 | PACKAGES = "${PN}" | 36 | PACKAGES = "${PN}" |
37 | FILES_${PN} = "${SDKPATHNATIVE}" | 37 | FILES:${PN} = "${SDKPATHNATIVE}" |
38 | RDEPENDS_${PN} += "nativesdk-icecc-create-env" | 38 | RDEPENDS:${PN} += "nativesdk-icecc-create-env" |
39 | 39 | ||
diff --git a/meta/recipes-devtools/intltool/intltool_0.51.0.bb b/meta/recipes-devtools/intltool/intltool_0.51.0.bb index 592dbb92e2..77be30758d 100644 --- a/meta/recipes-devtools/intltool/intltool_0.51.0.bb +++ b/meta/recipes-devtools/intltool/intltool_0.51.0.bb | |||
@@ -17,23 +17,23 @@ SRC_URI[sha256sum] = "67c74d94196b153b774ab9f89b2fa6c6ba79352407037c8c14d5aeb334 | |||
17 | UPSTREAM_CHECK_URI = "https://launchpad.net/intltool/trunk/" | 17 | UPSTREAM_CHECK_URI = "https://launchpad.net/intltool/trunk/" |
18 | 18 | ||
19 | DEPENDS = "libxml-parser-perl-native" | 19 | DEPENDS = "libxml-parser-perl-native" |
20 | RDEPENDS_${PN} = "gettext-dev libxml-parser-perl" | 20 | RDEPENDS:${PN} = "gettext-dev libxml-parser-perl" |
21 | DEPENDS_class-native = "libxml-parser-perl-native gettext-native" | 21 | DEPENDS:class-native = "libxml-parser-perl-native gettext-native" |
22 | 22 | ||
23 | inherit autotools pkgconfig perlnative | 23 | inherit autotools pkgconfig perlnative |
24 | 24 | ||
25 | export PERL = "${bindir}/env perl" | 25 | export PERL = "${bindir}/env perl" |
26 | PERL_class-native = "/usr/bin/env nativeperl" | 26 | PERL:class-native = "/usr/bin/env nativeperl" |
27 | PERL_class-nativesdk = "/usr/bin/env perl" | 27 | PERL:class-nativesdk = "/usr/bin/env perl" |
28 | 28 | ||
29 | # gettext is assumed to exist on the host | 29 | # gettext is assumed to exist on the host |
30 | RDEPENDS_${PN}_class-native = "libxml-parser-perl-native" | 30 | RDEPENDS:${PN}:class-native = "libxml-parser-perl-native" |
31 | RRECOMMENDS_${PN} = "perl-modules" | 31 | RRECOMMENDS:${PN} = "perl-modules" |
32 | RRECOMMENDS_${PN}_class-native = "" | 32 | RRECOMMENDS:${PN}:class-native = "" |
33 | 33 | ||
34 | FILES_${PN}-dev = "" | 34 | FILES:${PN}-dev = "" |
35 | FILES_${PN} += "${datadir}/aclocal" | 35 | FILES:${PN} += "${datadir}/aclocal" |
36 | 36 | ||
37 | INSANE_SKIP_${PN} += "dev-deps" | 37 | INSANE_SKIP:${PN} += "dev-deps" |
38 | 38 | ||
39 | BBCLASSEXTEND = "native nativesdk" | 39 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/jquery/jquery_3.6.0.bb b/meta/recipes-devtools/jquery/jquery_3.6.0.bb index 03792730fd..33b177d1d0 100644 --- a/meta/recipes-devtools/jquery/jquery_3.6.0.bb +++ b/meta/recipes-devtools/jquery/jquery_3.6.0.bb | |||
@@ -34,6 +34,6 @@ do_install() { | |||
34 | } | 34 | } |
35 | 35 | ||
36 | PACKAGES = "${PN}" | 36 | PACKAGES = "${PN}" |
37 | FILES_${PN} = "${datadir}" | 37 | FILES:${PN} = "${datadir}" |
38 | 38 | ||
39 | BBCLASSEXTEND += "native nativesdk" | 39 | BBCLASSEXTEND += "native nativesdk" |
diff --git a/meta/recipes-devtools/json-c/json-c_0.15.bb b/meta/recipes-devtools/json-c/json-c_0.15.bb index 2968590dd8..863463ca51 100644 --- a/meta/recipes-devtools/json-c/json-c_0.15.bb +++ b/meta/recipes-devtools/json-c/json-c_0.15.bb | |||
@@ -11,7 +11,7 @@ SRC_URI[sha256sum] = "b8d80a1ddb718b3ba7492916237bbf86609e9709fb007e7f7d4322f023 | |||
11 | UPSTREAM_CHECK_URI = "https://github.com/${BPN}/${BPN}/releases" | 11 | UPSTREAM_CHECK_URI = "https://github.com/${BPN}/${BPN}/releases" |
12 | UPSTREAM_CHECK_REGEX = "json-c-(?P<pver>\d+(\.\d+)+)-\d+" | 12 | UPSTREAM_CHECK_REGEX = "json-c-(?P<pver>\d+(\.\d+)+)-\d+" |
13 | 13 | ||
14 | RPROVIDES_${PN} = "libjson" | 14 | RPROVIDES:${PN} = "libjson" |
15 | 15 | ||
16 | inherit cmake | 16 | inherit cmake |
17 | 17 | ||
diff --git a/meta/recipes-devtools/libdnf/libdnf_0.63.1.bb b/meta/recipes-devtools/libdnf/libdnf_0.63.1.bb index 6ffeb945bb..282c28e2c4 100644 --- a/meta/recipes-devtools/libdnf/libdnf_0.63.1.bb +++ b/meta/recipes-devtools/libdnf/libdnf_0.63.1.bb | |||
@@ -30,8 +30,8 @@ EXTRA_OECMAKE = " -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} -DWITH_MAN=OFF | |||
30 | -DWITH_ZCHUNK=OFF \ | 30 | -DWITH_ZCHUNK=OFF \ |
31 | -DWITH_HTML=OFF \ | 31 | -DWITH_HTML=OFF \ |
32 | " | 32 | " |
33 | EXTRA_OECMAKE_append_class-native = " -DWITH_GIR=OFF" | 33 | EXTRA_OECMAKE:append:class-native = " -DWITH_GIR=OFF" |
34 | EXTRA_OECMAKE_append_class-nativesdk = " -DWITH_GIR=OFF" | 34 | EXTRA_OECMAKE:append:class-nativesdk = " -DWITH_GIR=OFF" |
35 | 35 | ||
36 | BBCLASSEXTEND = "native nativesdk" | 36 | BBCLASSEXTEND = "native nativesdk" |
37 | PNBLACKLIST[libdnf] ?= "${@bb.utils.contains('PACKAGE_CLASSES', 'package_rpm', '', 'Does not build without package_rpm in PACKAGE_CLASSES due disabled rpm support in libsolv', d)}" | 37 | PNBLACKLIST[libdnf] ?= "${@bb.utils.contains('PACKAGE_CLASSES', 'package_rpm', '', 'Does not build without package_rpm in PACKAGE_CLASSES due disabled rpm support in libsolv', d)}" |
diff --git a/meta/recipes-devtools/libedit/libedit_20210522-3.1.bb b/meta/recipes-devtools/libedit/libedit_20210522-3.1.bb index 43e6f2244b..72392dd190 100644 --- a/meta/recipes-devtools/libedit/libedit_20210522-3.1.bb +++ b/meta/recipes-devtools/libedit/libedit_20210522-3.1.bb | |||
@@ -20,5 +20,5 @@ BBCLASSEXTEND = "native nativesdk" | |||
20 | inherit update-alternatives | 20 | inherit update-alternatives |
21 | 21 | ||
22 | ALTERNATIVE_PRIORITY = "90" | 22 | ALTERNATIVE_PRIORITY = "90" |
23 | ALTERNATIVE_${PN}-doc = "history.3" | 23 | ALTERNATIVE:${PN}-doc = "history.3" |
24 | ALTERNATIVE_LINK_NAME[history.3] = "${mandir}/man3/history.3" | 24 | ALTERNATIVE_LINK_NAME[history.3] = "${mandir}/man3/history.3" |
diff --git a/meta/recipes-devtools/libtool/libtool-2.4.6.inc b/meta/recipes-devtools/libtool/libtool-2.4.6.inc index e9225e140c..c1cbceb51f 100644 --- a/meta/recipes-devtools/libtool/libtool-2.4.6.inc +++ b/meta/recipes-devtools/libtool/libtool-2.4.6.inc | |||
@@ -28,7 +28,7 @@ SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \ | |||
28 | SRC_URI[md5sum] = "addf44b646ddb4e3919805aa88fa7c5e" | 28 | SRC_URI[md5sum] = "addf44b646ddb4e3919805aa88fa7c5e" |
29 | SRC_URI[sha256sum] = "e3bd4d5d3d025a36c21dd6af7ea818a2afcd4dfc1ea5a17b39d7854bcd0c06e3" | 29 | SRC_URI[sha256sum] = "e3bd4d5d3d025a36c21dd6af7ea818a2afcd4dfc1ea5a17b39d7854bcd0c06e3" |
30 | 30 | ||
31 | do_compile_prepend () { | 31 | do_compile:prepend () { |
32 | # Sometimes this file doesn't get rebuilt, force the issue | 32 | # Sometimes this file doesn't get rebuilt, force the issue |
33 | rm -f ${S}/build-aux/ltmain.sh | 33 | rm -f ${S}/build-aux/ltmain.sh |
34 | make build-aux/ltmain.sh | 34 | make build-aux/ltmain.sh |
@@ -43,9 +43,9 @@ CACHED_CONFIGUREVARS += "ac_cv_path_GREP=grep" | |||
43 | DEPENDS = "libtool-native" | 43 | DEPENDS = "libtool-native" |
44 | 44 | ||
45 | PACKAGES =+ "libltdl" | 45 | PACKAGES =+ "libltdl" |
46 | FILES_${PN} += "${datadir}/aclocal" | 46 | FILES:${PN} += "${datadir}/aclocal" |
47 | 47 | ||
48 | FILES_${PN}-dev_remove = "${datadir}/aclocal" | 48 | FILES:${PN}-dev:remove = "${datadir}/aclocal" |
49 | FILES_libltdl = "${libdir}/libltdl${SOLIBS}" | 49 | FILES:libltdl = "${libdir}/libltdl${SOLIBS}" |
50 | 50 | ||
51 | export CONFIG_SHELL="/bin/bash" | 51 | export CONFIG_SHELL="/bin/bash" |
diff --git a/meta/recipes-devtools/libtool/libtool-cross_2.4.6.bb b/meta/recipes-devtools/libtool/libtool-cross_2.4.6.bb index 02c6e152fc..4a43867b3e 100644 --- a/meta/recipes-devtools/libtool/libtool-cross_2.4.6.bb +++ b/meta/recipes-devtools/libtool/libtool-cross_2.4.6.bb | |||
@@ -8,7 +8,7 @@ datadir = "${STAGING_DIR_TARGET}${target_datadir}" | |||
8 | 8 | ||
9 | inherit nopackages | 9 | inherit nopackages |
10 | 10 | ||
11 | do_configure_prepend () { | 11 | do_configure:prepend () { |
12 | # Remove any existing libtool m4 since old stale versions would break | 12 | # Remove any existing libtool m4 since old stale versions would break |
13 | # any upgrade | 13 | # any upgrade |
14 | rm -f ${STAGING_DATADIR}/aclocal/libtool.m4 | 14 | rm -f ${STAGING_DATADIR}/aclocal/libtool.m4 |
diff --git a/meta/recipes-devtools/libtool/libtool-native_2.4.6.bb b/meta/recipes-devtools/libtool/libtool-native_2.4.6.bb index 4c5218ade0..3b20ce3e69 100644 --- a/meta/recipes-devtools/libtool/libtool-native_2.4.6.bb +++ b/meta/recipes-devtools/libtool/libtool-native_2.4.6.bb | |||
@@ -8,7 +8,7 @@ inherit native | |||
8 | 8 | ||
9 | EXTRA_OECONF = " --with-libtool-sysroot=${STAGING_DIR_NATIVE}" | 9 | EXTRA_OECONF = " --with-libtool-sysroot=${STAGING_DIR_NATIVE}" |
10 | 10 | ||
11 | do_configure_prepend () { | 11 | do_configure:prepend () { |
12 | # Remove any existing libtool m4 since old stale versions would break | 12 | # Remove any existing libtool m4 since old stale versions would break |
13 | # any upgrade | 13 | # any upgrade |
14 | rm -f ${STAGING_DATADIR}/aclocal/libtool.m4 | 14 | rm -f ${STAGING_DATADIR}/aclocal/libtool.m4 |
diff --git a/meta/recipes-devtools/libtool/libtool_2.4.6.bb b/meta/recipes-devtools/libtool/libtool_2.4.6.bb index a5715faaa9..95bbc875f0 100644 --- a/meta/recipes-devtools/libtool/libtool_2.4.6.bb +++ b/meta/recipes-devtools/libtool/libtool_2.4.6.bb | |||
@@ -2,7 +2,7 @@ require libtool-${PV}.inc | |||
2 | 2 | ||
3 | SRC_URI += "file://multilib.patch file://debian-no_hostname.patch" | 3 | SRC_URI += "file://multilib.patch file://debian-no_hostname.patch" |
4 | 4 | ||
5 | RDEPENDS_${PN} += "bash" | 5 | RDEPENDS:${PN} += "bash" |
6 | 6 | ||
7 | # | 7 | # |
8 | # We want the results of libtool-cross preserved - don't stage anything ourselves. | 8 | # We want the results of libtool-cross preserved - don't stage anything ourselves. |
@@ -13,9 +13,9 @@ SYSROOT_DIRS_BLACKLIST += " \ | |||
13 | ${datadir}/libtool/build-aux \ | 13 | ${datadir}/libtool/build-aux \ |
14 | " | 14 | " |
15 | 15 | ||
16 | ACLOCALEXTRAPATH_class-target = "" | 16 | ACLOCALEXTRAPATH:class-target = "" |
17 | 17 | ||
18 | do_install_append () { | 18 | do_install:append () { |
19 | sed -e 's@--sysroot=${STAGING_DIR_HOST}@@g' \ | 19 | sed -e 's@--sysroot=${STAGING_DIR_HOST}@@g' \ |
20 | -e "s@${DEBUG_PREFIX_MAP}@@g" \ | 20 | -e "s@${DEBUG_PREFIX_MAP}@@g" \ |
21 | -e 's@${STAGING_DIR_HOST}@@g' \ | 21 | -e 's@${STAGING_DIR_HOST}@@g' \ |
diff --git a/meta/recipes-devtools/libtool/nativesdk-libtool_2.4.6.bb b/meta/recipes-devtools/libtool/nativesdk-libtool_2.4.6.bb index 508eade326..e3ad6721fd 100644 --- a/meta/recipes-devtools/libtool/nativesdk-libtool_2.4.6.bb +++ b/meta/recipes-devtools/libtool/nativesdk-libtool_2.4.6.bb | |||
@@ -8,9 +8,9 @@ SRC_URI += "file://fixinstall.patch" | |||
8 | inherit nativesdk | 8 | inherit nativesdk |
9 | 9 | ||
10 | S = "${WORKDIR}/libtool-${PV}" | 10 | S = "${WORKDIR}/libtool-${PV}" |
11 | FILES_${PN} += "${datadir}/libtool/*" | 11 | FILES:${PN} += "${datadir}/libtool/*" |
12 | 12 | ||
13 | do_configure_prepend () { | 13 | do_configure:prepend () { |
14 | # Remove any existing libtool m4 since old stale versions would break | 14 | # Remove any existing libtool m4 since old stale versions would break |
15 | # any upgrade | 15 | # any upgrade |
16 | rm -f ${STAGING_DATADIR}/aclocal/libtool.m4 | 16 | rm -f ${STAGING_DATADIR}/aclocal/libtool.m4 |
diff --git a/meta/recipes-devtools/llvm/llvm_git.bb b/meta/recipes-devtools/llvm/llvm_git.bb index 4554b752eb..4167080653 100644 --- a/meta/recipes-devtools/llvm/llvm_git.bb +++ b/meta/recipes-devtools/llvm/llvm_git.bb | |||
@@ -10,10 +10,10 @@ LIC_FILES_CHKSUM = "file://LICENSE.TXT;md5=8a15a0759ef07f2682d2ba4b893c9afe" | |||
10 | 10 | ||
11 | DEPENDS = "libffi libxml2 zlib libedit ninja-native llvm-native" | 11 | DEPENDS = "libffi libxml2 zlib libedit ninja-native llvm-native" |
12 | 12 | ||
13 | COMPATIBLE_HOST_riscv64 = "null" | 13 | COMPATIBLE_HOST:riscv64 = "null" |
14 | COMPATIBLE_HOST_riscv32 = "null" | 14 | COMPATIBLE_HOST:riscv32 = "null" |
15 | 15 | ||
16 | RDEPENDS_${PN}_append_class-target = " ncurses-terminfo" | 16 | RDEPENDS:${PN}:append:class-target = " ncurses-terminfo" |
17 | 17 | ||
18 | inherit cmake pkgconfig | 18 | inherit cmake pkgconfig |
19 | 19 | ||
@@ -62,8 +62,8 @@ def get_llvm_host_arch(bb, d): | |||
62 | # | 62 | # |
63 | LLVM_TARGETS ?= "AMDGPU;${@get_llvm_host_arch(bb, d)}" | 63 | LLVM_TARGETS ?= "AMDGPU;${@get_llvm_host_arch(bb, d)}" |
64 | 64 | ||
65 | ARM_INSTRUCTION_SET_armv5 = "arm" | 65 | ARM_INSTRUCTION_SET:armv5 = "arm" |
66 | ARM_INSTRUCTION_SET_armv4t = "arm" | 66 | ARM_INSTRUCTION_SET:armv4t = "arm" |
67 | 67 | ||
68 | EXTRA_OECMAKE += "-DLLVM_ENABLE_ASSERTIONS=OFF \ | 68 | EXTRA_OECMAKE += "-DLLVM_ENABLE_ASSERTIONS=OFF \ |
69 | -DLLVM_ENABLE_EXPENSIVE_CHECKS=OFF \ | 69 | -DLLVM_ENABLE_EXPENSIVE_CHECKS=OFF \ |
@@ -79,19 +79,19 @@ EXTRA_OECMAKE += "-DLLVM_ENABLE_ASSERTIONS=OFF \ | |||
79 | -DPYTHON_EXECUTABLE=${HOSTTOOLS_DIR}/python3 \ | 79 | -DPYTHON_EXECUTABLE=${HOSTTOOLS_DIR}/python3 \ |
80 | -G Ninja" | 80 | -G Ninja" |
81 | 81 | ||
82 | EXTRA_OECMAKE_append_class-target = "\ | 82 | EXTRA_OECMAKE:append:class-target = "\ |
83 | -DCMAKE_CROSSCOMPILING:BOOL=ON \ | 83 | -DCMAKE_CROSSCOMPILING:BOOL=ON \ |
84 | -DLLVM_TABLEGEN=${STAGING_BINDIR_NATIVE}/llvm-tblgen${PV} \ | 84 | -DLLVM_TABLEGEN=${STAGING_BINDIR_NATIVE}/llvm-tblgen${PV} \ |
85 | -DLLVM_CONFIG_PATH=${STAGING_BINDIR_NATIVE}/llvm-config${PV} \ | 85 | -DLLVM_CONFIG_PATH=${STAGING_BINDIR_NATIVE}/llvm-config${PV} \ |
86 | " | 86 | " |
87 | 87 | ||
88 | EXTRA_OECMAKE_append_class-nativesdk = "\ | 88 | EXTRA_OECMAKE:append:class-nativesdk = "\ |
89 | -DCMAKE_CROSSCOMPILING:BOOL=ON \ | 89 | -DCMAKE_CROSSCOMPILING:BOOL=ON \ |
90 | -DLLVM_TABLEGEN=${STAGING_BINDIR_NATIVE}/llvm-tblgen${PV} \ | 90 | -DLLVM_TABLEGEN=${STAGING_BINDIR_NATIVE}/llvm-tblgen${PV} \ |
91 | -DLLVM_CONFIG_PATH=${STAGING_BINDIR_NATIVE}/llvm-config${PV} \ | 91 | -DLLVM_CONFIG_PATH=${STAGING_BINDIR_NATIVE}/llvm-config${PV} \ |
92 | " | 92 | " |
93 | 93 | ||
94 | do_configure_prepend() { | 94 | do_configure:prepend() { |
95 | # Fix paths in llvm-config | 95 | # Fix paths in llvm-config |
96 | sed -i "s|sys::path::parent_path(CurrentPath))\.str()|sys::path::parent_path(sys::path::parent_path(CurrentPath))).str()|g" ${S}/tools/llvm-config/llvm-config.cpp | 96 | sed -i "s|sys::path::parent_path(CurrentPath))\.str()|sys::path::parent_path(sys::path::parent_path(CurrentPath))).str()|g" ${S}/tools/llvm-config/llvm-config.cpp |
97 | sed -ri "s#/(bin|include|lib)(/?\")#/\1/${LLVM_DIR}\2#g" ${S}/tools/llvm-config/llvm-config.cpp | 97 | sed -ri "s#/(bin|include|lib)(/?\")#/\1/${LLVM_DIR}\2#g" ${S}/tools/llvm-config/llvm-config.cpp |
@@ -99,7 +99,7 @@ do_configure_prepend() { | |||
99 | } | 99 | } |
100 | 100 | ||
101 | # patch out build host paths for reproducibility | 101 | # patch out build host paths for reproducibility |
102 | do_compile_prepend_class-target() { | 102 | do_compile:prepend:class-target() { |
103 | sed -i -e "s,${WORKDIR},,g" ${B}/tools/llvm-config/BuildVariables.inc | 103 | sed -i -e "s,${WORKDIR},,g" ${B}/tools/llvm-config/BuildVariables.inc |
104 | } | 104 | } |
105 | 105 | ||
@@ -107,7 +107,7 @@ do_compile() { | |||
107 | ninja -v ${PARALLEL_MAKE} | 107 | ninja -v ${PARALLEL_MAKE} |
108 | } | 108 | } |
109 | 109 | ||
110 | do_compile_class-native() { | 110 | do_compile:class-native() { |
111 | ninja -v ${PARALLEL_MAKE} llvm-config llvm-tblgen | 111 | ninja -v ${PARALLEL_MAKE} llvm-config llvm-tblgen |
112 | } | 112 | } |
113 | 113 | ||
@@ -142,7 +142,7 @@ do_install() { | |||
142 | rm -rf ${D}${libdir}/${LLVM_DIR}/libLTO.so | 142 | rm -rf ${D}${libdir}/${LLVM_DIR}/libLTO.so |
143 | } | 143 | } |
144 | 144 | ||
145 | do_install_class-native() { | 145 | do_install:class-native() { |
146 | install -D -m 0755 ${B}/bin/llvm-tblgen ${D}${bindir}/llvm-tblgen${PV} | 146 | install -D -m 0755 ${B}/bin/llvm-tblgen ${D}${bindir}/llvm-tblgen${PV} |
147 | install -D -m 0755 ${B}/bin/llvm-config ${D}${bindir}/llvm-config${PV} | 147 | install -D -m 0755 ${B}/bin/llvm-config ${D}${bindir}/llvm-config${PV} |
148 | install -D -m 0755 ${B}/lib/libLLVM-${MAJOR_VERSION}.so ${D}${libdir}/libLLVM-${MAJOR_VERSION}.so | 148 | install -D -m 0755 ${B}/lib/libLLVM-${MAJOR_VERSION}.so ${D}${libdir}/libLLVM-${MAJOR_VERSION}.so |
@@ -150,39 +150,39 @@ do_install_class-native() { | |||
150 | 150 | ||
151 | PACKAGES =+ "${PN}-bugpointpasses ${PN}-llvmhello ${PN}-libllvm ${PN}-liboptremarks ${PN}-liblto" | 151 | PACKAGES =+ "${PN}-bugpointpasses ${PN}-llvmhello ${PN}-libllvm ${PN}-liboptremarks ${PN}-liblto" |
152 | 152 | ||
153 | RRECOMMENDS_${PN}-dev += "${PN}-bugpointpasses ${PN}-llvmhello ${PN}-liboptremarks" | 153 | RRECOMMENDS:${PN}-dev += "${PN}-bugpointpasses ${PN}-llvmhello ${PN}-liboptremarks" |
154 | 154 | ||
155 | FILES_${PN}-bugpointpasses = "\ | 155 | FILES:${PN}-bugpointpasses = "\ |
156 | ${libdir}/${LLVM_DIR}/BugpointPasses.so \ | 156 | ${libdir}/${LLVM_DIR}/BugpointPasses.so \ |
157 | " | 157 | " |
158 | 158 | ||
159 | FILES_${PN}-libllvm = "\ | 159 | FILES:${PN}-libllvm = "\ |
160 | ${libdir}/${LLVM_DIR}/libLLVM-${MAJOR_VERSION}.so \ | 160 | ${libdir}/${LLVM_DIR}/libLLVM-${MAJOR_VERSION}.so \ |
161 | ${libdir}/libLLVM-${MAJOR_VERSION}.so \ | 161 | ${libdir}/libLLVM-${MAJOR_VERSION}.so \ |
162 | " | 162 | " |
163 | 163 | ||
164 | FILES_${PN}-liblto += "\ | 164 | FILES:${PN}-liblto += "\ |
165 | ${libdir}/${LLVM_DIR}/libLTO.so.* \ | 165 | ${libdir}/${LLVM_DIR}/libLTO.so.* \ |
166 | " | 166 | " |
167 | 167 | ||
168 | FILES_${PN}-liboptremarks += "\ | 168 | FILES:${PN}-liboptremarks += "\ |
169 | ${libdir}/${LLVM_DIR}/libRemarks.so.* \ | 169 | ${libdir}/${LLVM_DIR}/libRemarks.so.* \ |
170 | " | 170 | " |
171 | 171 | ||
172 | FILES_${PN}-llvmhello = "\ | 172 | FILES:${PN}-llvmhello = "\ |
173 | ${libdir}/${LLVM_DIR}/LLVMHello.so \ | 173 | ${libdir}/${LLVM_DIR}/LLVMHello.so \ |
174 | " | 174 | " |
175 | 175 | ||
176 | FILES_${PN}-dev += " \ | 176 | FILES:${PN}-dev += " \ |
177 | ${libdir}/${LLVM_DIR}/llvm-config \ | 177 | ${libdir}/${LLVM_DIR}/llvm-config \ |
178 | ${libdir}/${LLVM_DIR}/libRemarks.so \ | 178 | ${libdir}/${LLVM_DIR}/libRemarks.so \ |
179 | ${libdir}/${LLVM_DIR}/libLLVM-${PV}.so \ | 179 | ${libdir}/${LLVM_DIR}/libLLVM-${PV}.so \ |
180 | " | 180 | " |
181 | 181 | ||
182 | FILES_${PN}-staticdev += "\ | 182 | FILES:${PN}-staticdev += "\ |
183 | ${libdir}/${LLVM_DIR}/*.a \ | 183 | ${libdir}/${LLVM_DIR}/*.a \ |
184 | " | 184 | " |
185 | 185 | ||
186 | INSANE_SKIP_${PN}-libllvm += "dev-so" | 186 | INSANE_SKIP:${PN}-libllvm += "dev-so" |
187 | 187 | ||
188 | BBCLASSEXTEND = "native nativesdk" | 188 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/m4/m4-1.4.19.inc b/meta/recipes-devtools/m4/m4-1.4.19.inc index 5f3d59226e..0516e49552 100644 --- a/meta/recipes-devtools/m4/m4-1.4.19.inc +++ b/meta/recipes-devtools/m4/m4-1.4.19.inc | |||
@@ -9,7 +9,7 @@ inherit autotools texinfo ptest gettext | |||
9 | SRC_URI = "${GNU_MIRROR}/m4/m4-${PV}.tar.gz \ | 9 | SRC_URI = "${GNU_MIRROR}/m4/m4-${PV}.tar.gz \ |
10 | file://ac_config_links.patch \ | 10 | file://ac_config_links.patch \ |
11 | " | 11 | " |
12 | SRC_URI_append_class-target = " file://run-ptest \ | 12 | SRC_URI:append:class-target = " file://run-ptest \ |
13 | file://serial-tests-config.patch \ | 13 | file://serial-tests-config.patch \ |
14 | " | 14 | " |
15 | 15 | ||
@@ -51,11 +51,11 @@ do_install_ptest() { | |||
51 | } | 51 | } |
52 | 52 | ||
53 | 53 | ||
54 | RDEPENDS_${PN}-ptest += "make coreutils diffutils" | 54 | RDEPENDS:${PN}-ptest += "make coreutils diffutils" |
55 | RDEPENDS_${PN}-ptest_append_libc-glibc = "\ | 55 | RDEPENDS:${PN}-ptest:append:libc-glibc = "\ |
56 | locale-base-fr-fr.iso-8859-1 \ | 56 | locale-base-fr-fr.iso-8859-1 \ |
57 | " | 57 | " |
58 | 58 | ||
59 | INSANE_SKIP_${PN}-ptest += "ldflags" | 59 | INSANE_SKIP:${PN}-ptest += "ldflags" |
60 | INSANE_SKIP_${PN}-ptest += "rpaths" | 60 | INSANE_SKIP:${PN}-ptest += "rpaths" |
61 | 61 | ||
diff --git a/meta/recipes-devtools/makedevs/makedevs_1.0.1.bb b/meta/recipes-devtools/makedevs/makedevs_1.0.1.bb index 5910f4bc70..79746260d0 100644 --- a/meta/recipes-devtools/makedevs/makedevs_1.0.1.bb +++ b/meta/recipes-devtools/makedevs/makedevs_1.0.1.bb | |||
@@ -8,7 +8,7 @@ SRC_URI = "file://makedevs.c \ | |||
8 | 8 | ||
9 | S = "${WORKDIR}" | 9 | S = "${WORKDIR}" |
10 | 10 | ||
11 | FILES_${PN}_append_class-nativesdk = " ${datadir}" | 11 | FILES:${PN}:append:class-nativesdk = " ${datadir}" |
12 | 12 | ||
13 | do_compile() { | 13 | do_compile() { |
14 | ${CC} ${CFLAGS} ${LDFLAGS} -o ${S}/makedevs ${S}/makedevs.c | 14 | ${CC} ${CFLAGS} ${LDFLAGS} -o ${S}/makedevs ${S}/makedevs.c |
@@ -19,7 +19,7 @@ do_install() { | |||
19 | install -m 0755 ${S}/makedevs ${D}${base_sbindir}/makedevs | 19 | install -m 0755 ${S}/makedevs ${D}${base_sbindir}/makedevs |
20 | } | 20 | } |
21 | 21 | ||
22 | do_install_append_class-nativesdk() { | 22 | do_install:append:class-nativesdk() { |
23 | install -d ${D}${datadir} | 23 | install -d ${D}${datadir} |
24 | install -m 644 ${COREBASE}/meta/files/device_table-minimal.txt ${D}${datadir}/ | 24 | install -m 644 ${COREBASE}/meta/files/device_table-minimal.txt ${D}${datadir}/ |
25 | } | 25 | } |
diff --git a/meta/recipes-devtools/meson/meson.inc b/meta/recipes-devtools/meson/meson.inc index 7ddfccf2d6..f1746d2094 100644 --- a/meta/recipes-devtools/meson/meson.inc +++ b/meta/recipes-devtools/meson/meson.inc | |||
@@ -24,11 +24,11 @@ UPSTREAM_CHECK_REGEX = "meson-(?P<pver>\d+(\.\d+)+)\.tar" | |||
24 | 24 | ||
25 | inherit setuptools3 | 25 | inherit setuptools3 |
26 | 26 | ||
27 | RDEPENDS_${PN} = "ninja python3-modules python3-pkg-resources" | 27 | RDEPENDS:${PN} = "ninja python3-modules python3-pkg-resources" |
28 | 28 | ||
29 | FILES_${PN} += "${datadir}/polkit-1" | 29 | FILES:${PN} += "${datadir}/polkit-1" |
30 | 30 | ||
31 | do_install_append () { | 31 | do_install:append () { |
32 | # As per the same issue in the python recipe itself: | 32 | # As per the same issue in the python recipe itself: |
33 | # Unfortunately the following pyc files are non-deterministc due to 'frozenset' | 33 | # Unfortunately the following pyc files are non-deterministc due to 'frozenset' |
34 | # being written without strict ordering, even with PYTHONHASHSEED = 0 | 34 | # being written without strict ordering, even with PYTHONHASHSEED = 0 |
diff --git a/meta/recipes-devtools/meson/nativesdk-meson_0.58.1.bb b/meta/recipes-devtools/meson/nativesdk-meson_0.58.1.bb index 74e1a7104a..0e76cc78f8 100644 --- a/meta/recipes-devtools/meson/nativesdk-meson_0.58.1.bb +++ b/meta/recipes-devtools/meson/nativesdk-meson_0.58.1.bb | |||
@@ -13,7 +13,7 @@ SRC_URI += "file://meson-setup.py \ | |||
13 | # real paths by meson-setup.sh when the SDK is extracted. | 13 | # real paths by meson-setup.sh when the SDK is extracted. |
14 | # - Some overrides aren't needed, since the SDK injects paths that take care of | 14 | # - Some overrides aren't needed, since the SDK injects paths that take care of |
15 | # them. | 15 | # them. |
16 | do_install_append() { | 16 | do_install:append() { |
17 | install -d ${D}${datadir}/meson | 17 | install -d ${D}${datadir}/meson |
18 | cat >${D}${datadir}/meson/meson.cross.template <<EOF | 18 | cat >${D}${datadir}/meson/meson.cross.template <<EOF |
19 | [binaries] | 19 | [binaries] |
@@ -47,10 +47,10 @@ EOF | |||
47 | install -m 0755 ${WORKDIR}/meson-wrapper ${D}${bindir}/meson | 47 | install -m 0755 ${WORKDIR}/meson-wrapper ${D}${bindir}/meson |
48 | } | 48 | } |
49 | 49 | ||
50 | RDEPENDS_${PN} += "\ | 50 | RDEPENDS:${PN} += "\ |
51 | nativesdk-ninja \ | 51 | nativesdk-ninja \ |
52 | nativesdk-python3 \ | 52 | nativesdk-python3 \ |
53 | nativesdk-python3-setuptools \ | 53 | nativesdk-python3-setuptools \ |
54 | " | 54 | " |
55 | 55 | ||
56 | FILES_${PN} += "${datadir}/meson ${SDKPATHNATIVE}" | 56 | FILES:${PN} += "${datadir}/meson ${SDKPATHNATIVE}" |
diff --git a/meta/recipes-devtools/mmc/mmc-utils_git.bb b/meta/recipes-devtools/mmc/mmc-utils_git.bb index bdd0bf7f1b..661db4665f 100644 --- a/meta/recipes-devtools/mmc/mmc-utils_git.bb +++ b/meta/recipes-devtools/mmc/mmc-utils_git.bb | |||
@@ -14,9 +14,9 @@ UPSTREAM_CHECK_COMMITS = "1" | |||
14 | 14 | ||
15 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |
16 | 16 | ||
17 | CFLAGS_append_powerpc64 = " -D__SANE_USERSPACE_TYPES__" | 17 | CFLAGS:append:powerpc64 = " -D__SANE_USERSPACE_TYPES__" |
18 | CFLAGS_append_mipsarchn64 = " -D__SANE_USERSPACE_TYPES__" | 18 | CFLAGS:append:mipsarchn64 = " -D__SANE_USERSPACE_TYPES__" |
19 | CFLAGS_append_mipsarchn32 = " -D__SANE_USERSPACE_TYPES__" | 19 | CFLAGS:append:mipsarchn32 = " -D__SANE_USERSPACE_TYPES__" |
20 | 20 | ||
21 | do_install() { | 21 | do_install() { |
22 | install -d ${D}${bindir} | 22 | install -d ${D}${bindir} |
diff --git a/meta/recipes-devtools/mtd/mtd-utils_git.bb b/meta/recipes-devtools/mtd/mtd-utils_git.bb index d7aa738558..057ae806a1 100644 --- a/meta/recipes-devtools/mtd/mtd-utils_git.bb +++ b/meta/recipes-devtools/mtd/mtd-utils_git.bb | |||
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ | |||
9 | inherit autotools pkgconfig update-alternatives | 9 | inherit autotools pkgconfig update-alternatives |
10 | 10 | ||
11 | DEPENDS = "zlib e2fsprogs util-linux" | 11 | DEPENDS = "zlib e2fsprogs util-linux" |
12 | RDEPENDS_mtd-utils-tests += "bash" | 12 | RDEPENDS:mtd-utils-tests += "bash" |
13 | 13 | ||
14 | PV = "2.1.3" | 14 | PV = "2.1.3" |
15 | 15 | ||
@@ -31,15 +31,15 @@ PACKAGECONFIG[jffs] = "--with-jffs,--without-jffs" | |||
31 | PACKAGECONFIG[ubifs] = "--with-ubifs,--without-ubifs" | 31 | PACKAGECONFIG[ubifs] = "--with-ubifs,--without-ubifs" |
32 | PACKAGECONFIG[zstd] = "--with-zstd,--without-zstd,zstd" | 32 | PACKAGECONFIG[zstd] = "--with-zstd,--without-zstd,zstd" |
33 | 33 | ||
34 | CPPFLAGS_append_riscv64 = " -pthread -D_REENTRANT" | 34 | CPPFLAGS:append:riscv64 = " -pthread -D_REENTRANT" |
35 | 35 | ||
36 | EXTRA_OEMAKE = "'CC=${CC}' 'RANLIB=${RANLIB}' 'AR=${AR}' 'CFLAGS=${CFLAGS} ${@bb.utils.contains('PACKAGECONFIG', 'xattr', '', '-DWITHOUT_XATTR', d)} -I${S}/include' 'BUILDDIR=${S}'" | 36 | EXTRA_OEMAKE = "'CC=${CC}' 'RANLIB=${RANLIB}' 'AR=${AR}' 'CFLAGS=${CFLAGS} ${@bb.utils.contains('PACKAGECONFIG', 'xattr', '', '-DWITHOUT_XATTR', d)} -I${S}/include' 'BUILDDIR=${S}'" |
37 | 37 | ||
38 | # Use higher priority than corresponding BusyBox-provided applets | 38 | # Use higher priority than corresponding BusyBox-provided applets |
39 | ALTERNATIVE_PRIORITY = "100" | 39 | ALTERNATIVE_PRIORITY = "100" |
40 | 40 | ||
41 | ALTERNATIVE_${PN} = "flashcp flash_eraseall flash_lock flash_unlock nanddump nandwrite" | 41 | ALTERNATIVE:${PN} = "flashcp flash_eraseall flash_lock flash_unlock nanddump nandwrite" |
42 | ALTERNATIVE_${PN}-ubifs = "ubiattach ubidetach ubimkvol ubirename ubirmvol ubirsvol ubiupdatevol" | 42 | ALTERNATIVE:${PN}-ubifs = "ubiattach ubidetach ubimkvol ubirename ubirmvol ubirsvol ubiupdatevol" |
43 | 43 | ||
44 | ALTERNATIVE_LINK_NAME[nandwrite] = "${sbindir}/nandwrite" | 44 | ALTERNATIVE_LINK_NAME[nandwrite] = "${sbindir}/nandwrite" |
45 | ALTERNATIVE_LINK_NAME[nanddump] = "${sbindir}/nanddump" | 45 | ALTERNATIVE_LINK_NAME[nanddump] = "${sbindir}/nanddump" |
@@ -63,10 +63,10 @@ PACKAGES =+ "mtd-utils-misc mtd-utils-tests" | |||
63 | PACKAGES =+ "${@bb.utils.contains("PACKAGECONFIG", "jffs", "mtd-utils-jffs2", "", d)}" | 63 | PACKAGES =+ "${@bb.utils.contains("PACKAGECONFIG", "jffs", "mtd-utils-jffs2", "", d)}" |
64 | PACKAGES =+ "${@bb.utils.contains("PACKAGECONFIG", "ubifs", "mtd-utils-ubifs", "", d)}" | 64 | PACKAGES =+ "${@bb.utils.contains("PACKAGECONFIG", "ubifs", "mtd-utils-ubifs", "", d)}" |
65 | 65 | ||
66 | FILES_mtd-utils-jffs2 = "${sbindir}/mkfs.jffs2 ${sbindir}/jffs2dump ${sbindir}/jffs2reader ${sbindir}/sumtool" | 66 | FILES:mtd-utils-jffs2 = "${sbindir}/mkfs.jffs2 ${sbindir}/jffs2dump ${sbindir}/jffs2reader ${sbindir}/sumtool" |
67 | FILES_mtd-utils-ubifs = "${sbindir}/mkfs.ubifs ${sbindir}/ubi*" | 67 | FILES:mtd-utils-ubifs = "${sbindir}/mkfs.ubifs ${sbindir}/ubi*" |
68 | FILES_mtd-utils-misc = "${sbindir}/nftl* ${sbindir}/ftl* ${sbindir}/rfd* ${sbindir}/doc* ${sbindir}/serve_image ${sbindir}/recv_image" | 68 | FILES:mtd-utils-misc = "${sbindir}/nftl* ${sbindir}/ftl* ${sbindir}/rfd* ${sbindir}/doc* ${sbindir}/serve_image ${sbindir}/recv_image" |
69 | FILES_mtd-utils-tests = "${libexecdir}/mtd-utils/*" | 69 | FILES:mtd-utils-tests = "${libexecdir}/mtd-utils/*" |
70 | 70 | ||
71 | BBCLASSEXTEND = "native nativesdk" | 71 | BBCLASSEXTEND = "native nativesdk" |
72 | 72 | ||
diff --git a/meta/recipes-devtools/mtools/mtools_4.0.32.bb b/meta/recipes-devtools/mtools/mtools_4.0.32.bb index 501875037a..1000ad925b 100644 --- a/meta/recipes-devtools/mtools/mtools_4.0.32.bb +++ b/meta/recipes-devtools/mtools/mtools_4.0.32.bb | |||
@@ -7,8 +7,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | |||
7 | 7 | ||
8 | DEPENDS += "virtual/libiconv" | 8 | DEPENDS += "virtual/libiconv" |
9 | 9 | ||
10 | RDEPENDS_${PN}_libc-glibc = "glibc-gconv-ibm850" | 10 | RDEPENDS:${PN}:libc-glibc = "glibc-gconv-ibm850" |
11 | RRECOMMENDS_${PN}_libc-glibc = "\ | 11 | RRECOMMENDS:${PN}:libc-glibc = "\ |
12 | glibc-gconv-ibm437 \ | 12 | glibc-gconv-ibm437 \ |
13 | glibc-gconv-ibm737 \ | 13 | glibc-gconv-ibm737 \ |
14 | glibc-gconv-ibm775 \ | 14 | glibc-gconv-ibm775 \ |
@@ -32,7 +32,7 @@ SRC_URI = "${GNU_MIRROR}/mtools/mtools-${PV}.tar.bz2 \ | |||
32 | file://clang_UNUSED.patch \ | 32 | file://clang_UNUSED.patch \ |
33 | " | 33 | " |
34 | 34 | ||
35 | SRC_URI_append_class-native = " file://disable-hardcoded-configs.patch" | 35 | SRC_URI:append:class-native = " file://disable-hardcoded-configs.patch" |
36 | 36 | ||
37 | inherit autotools texinfo | 37 | inherit autotools texinfo |
38 | 38 | ||
@@ -43,7 +43,7 @@ BBCLASSEXTEND = "native nativesdk" | |||
43 | PACKAGECONFIG ??= "" | 43 | PACKAGECONFIG ??= "" |
44 | PACKAGECONFIG[libbsd] = "ac_cv_lib_bsd_main=yes,ac_cv_lib_bsd_main=no,libbsd" | 44 | PACKAGECONFIG[libbsd] = "ac_cv_lib_bsd_main=yes,ac_cv_lib_bsd_main=no,libbsd" |
45 | 45 | ||
46 | do_install_prepend () { | 46 | do_install:prepend () { |
47 | # Create bindir to fix parallel installation issues | 47 | # Create bindir to fix parallel installation issues |
48 | mkdir -p ${D}/${bindir} | 48 | mkdir -p ${D}/${bindir} |
49 | mkdir -p ${D}/${datadir} | 49 | mkdir -p ${D}/${datadir} |
diff --git a/meta/recipes-devtools/nasm/nasm_2.15.05.bb b/meta/recipes-devtools/nasm/nasm_2.15.05.bb index 43088baf71..edc17aeebf 100644 --- a/meta/recipes-devtools/nasm/nasm_2.15.05.bb +++ b/meta/recipes-devtools/nasm/nasm_2.15.05.bb | |||
@@ -12,7 +12,7 @@ SRC_URI = "http://www.nasm.us/pub/nasm/releasebuilds/${PV}/nasm-${PV}.tar.bz2 \ | |||
12 | 12 | ||
13 | SRC_URI[sha256sum] = "3c4b8339e5ab54b1bcb2316101f8985a5da50a3f9e504d43fa6f35668bee2fd0" | 13 | SRC_URI[sha256sum] = "3c4b8339e5ab54b1bcb2316101f8985a5da50a3f9e504d43fa6f35668bee2fd0" |
14 | 14 | ||
15 | EXTRA_AUTORECONF_append = " -I autoconf/m4" | 15 | EXTRA_AUTORECONF:append = " -I autoconf/m4" |
16 | 16 | ||
17 | inherit autotools-brokensep | 17 | inherit autotools-brokensep |
18 | 18 | ||
diff --git a/meta/recipes-devtools/ninja/ninja_1.10.2.bb b/meta/recipes-devtools/ninja/ninja_1.10.2.bb index 2a39b2d216..c908bcb738 100644 --- a/meta/recipes-devtools/ninja/ninja_1.10.2.bb +++ b/meta/recipes-devtools/ninja/ninja_1.10.2.bb | |||
@@ -15,7 +15,7 @@ S = "${WORKDIR}/git" | |||
15 | 15 | ||
16 | do_configure[noexec] = "1" | 16 | do_configure[noexec] = "1" |
17 | 17 | ||
18 | do_compile_class-native() { | 18 | do_compile:class-native() { |
19 | python3 ./configure.py --bootstrap | 19 | python3 ./configure.py --bootstrap |
20 | } | 20 | } |
21 | 21 | ||
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils_0.4.5.bb b/meta/recipes-devtools/opkg-utils/opkg-utils_0.4.5.bb index 93d2911104..a2bcc7f661 100644 --- a/meta/recipes-devtools/opkg-utils/opkg-utils_0.4.5.bb +++ b/meta/recipes-devtools/opkg-utils/opkg-utils_0.4.5.bb | |||
@@ -1,5 +1,5 @@ | |||
1 | SUMMARY = "Additional utilities for the opkg package manager" | 1 | SUMMARY = "Additional utilities for the opkg package manager" |
2 | SUMMARY_update-alternatives-opkg = "Utility for managing the alternatives system" | 2 | SUMMARY:update-alternatives-opkg = "Utility for managing the alternatives system" |
3 | SECTION = "base" | 3 | SECTION = "base" |
4 | HOMEPAGE = "http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils" | 4 | HOMEPAGE = "http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils" |
5 | LICENSE = "GPLv2+" | 5 | LICENSE = "GPLv2+" |
@@ -17,13 +17,13 @@ SRC_URI[sha256sum] = "528635e674addea5c2b3a3268404ad04a952c4f410d17c3d754f5dd552 | |||
17 | 17 | ||
18 | TARGET_CC_ARCH += "${LDFLAGS}" | 18 | TARGET_CC_ARCH += "${LDFLAGS}" |
19 | 19 | ||
20 | RDEPENDS_${PN} += "bash" | 20 | RDEPENDS:${PN} += "bash" |
21 | 21 | ||
22 | inherit perlnative | 22 | inherit perlnative |
23 | 23 | ||
24 | # For native builds we use the host Python | 24 | # For native builds we use the host Python |
25 | PYTHONRDEPS = "python3 python3-shell python3-io python3-math python3-crypt python3-logging python3-fcntl python3-pickle python3-compression python3-stringold" | 25 | PYTHONRDEPS = "python3 python3-shell python3-io python3-math python3-crypt python3-logging python3-fcntl python3-pickle python3-compression python3-stringold" |
26 | PYTHONRDEPS_class-native = "" | 26 | PYTHONRDEPS:class-native = "" |
27 | 27 | ||
28 | PACKAGECONFIG = "python update-alternatives" | 28 | PACKAGECONFIG = "python update-alternatives" |
29 | PACKAGECONFIG[python] = ",,,${PYTHONRDEPS}" | 29 | PACKAGECONFIG[python] = ",,,${PYTHONRDEPS}" |
@@ -36,7 +36,7 @@ do_install() { | |||
36 | fi | 36 | fi |
37 | } | 37 | } |
38 | 38 | ||
39 | do_install_append_class-target() { | 39 | do_install:append:class-target() { |
40 | if ! ${@bb.utils.contains('PACKAGECONFIG', 'python', 'true', 'false', d)}; then | 40 | if ! ${@bb.utils.contains('PACKAGECONFIG', 'python', 'true', 'false', d)}; then |
41 | grep -lZ "/usr/bin/env.*python" ${D}${bindir}/* | xargs -0 rm | 41 | grep -lZ "/usr/bin/env.*python" ${D}${bindir}/* | xargs -0 rm |
42 | fi | 42 | fi |
@@ -48,15 +48,15 @@ do_install_append_class-target() { | |||
48 | 48 | ||
49 | # These are empty and will pull python3-dev into images where it wouldn't | 49 | # These are empty and will pull python3-dev into images where it wouldn't |
50 | # have been otherwise, so don't generate them. | 50 | # have been otherwise, so don't generate them. |
51 | PACKAGES_remove = "${PN}-dev ${PN}-staticdev" | 51 | PACKAGES:remove = "${PN}-dev ${PN}-staticdev" |
52 | 52 | ||
53 | PACKAGES =+ "update-alternatives-opkg" | 53 | PACKAGES =+ "update-alternatives-opkg" |
54 | FILES_update-alternatives-opkg = "${bindir}/update-alternatives" | 54 | FILES:update-alternatives-opkg = "${bindir}/update-alternatives" |
55 | RPROVIDES_update-alternatives-opkg = "update-alternatives update-alternatives-cworth" | 55 | RPROVIDES:update-alternatives-opkg = "update-alternatives update-alternatives-cworth" |
56 | RREPLACES_update-alternatives-opkg = "update-alternatives-cworth" | 56 | RREPLACES:update-alternatives-opkg = "update-alternatives-cworth" |
57 | RCONFLICTS_update-alternatives-opkg = "update-alternatives-cworth" | 57 | RCONFLICTS:update-alternatives-opkg = "update-alternatives-cworth" |
58 | 58 | ||
59 | pkg_postrm_update-alternatives-opkg() { | 59 | pkg_postrm:update-alternatives-opkg() { |
60 | rm -rf $D${nonarch_libdir}/opkg/alternatives | 60 | rm -rf $D${nonarch_libdir}/opkg/alternatives |
61 | rmdir $D${nonarch_libdir}/opkg || true | 61 | rmdir $D${nonarch_libdir}/opkg || true |
62 | } | 62 | } |
diff --git a/meta/recipes-devtools/opkg/opkg-arch-config_1.0.bb b/meta/recipes-devtools/opkg/opkg-arch-config_1.0.bb index 0c2dbc9e32..dc17de2e8e 100644 --- a/meta/recipes-devtools/opkg/opkg-arch-config_1.0.bb +++ b/meta/recipes-devtools/opkg/opkg-arch-config_1.0.bb | |||
@@ -26,10 +26,10 @@ do_install () { | |||
26 | install -m 0644 ${S}/${sysconfdir}/opkg/* ${D}${sysconfdir}/opkg/ | 26 | install -m 0644 ${S}/${sysconfdir}/opkg/* ${D}${sysconfdir}/opkg/ |
27 | } | 27 | } |
28 | 28 | ||
29 | FILES_${PN} = "${sysconfdir}/opkg/ " | 29 | FILES:${PN} = "${sysconfdir}/opkg/ " |
30 | 30 | ||
31 | CONFFILES_${PN} += "${sysconfdir}/opkg/arch.conf" | 31 | CONFFILES:${PN} += "${sysconfdir}/opkg/arch.conf" |
32 | 32 | ||
33 | RREPLACES_${PN} = "opkg-config-base" | 33 | RREPLACES:${PN} = "opkg-config-base" |
34 | RCONFLICTS_${PN} = "opkg-config-base" | 34 | RCONFLICTS:${PN} = "opkg-config-base" |
35 | RPROVIDES_${PN} = "opkg-config-base" | 35 | RPROVIDES:${PN} = "opkg-config-base" |
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 |
diff --git a/meta/recipes-devtools/opkg/opkg_0.4.5.bb b/meta/recipes-devtools/opkg/opkg_0.4.5.bb index 56d6211aee..ef18ccf63a 100644 --- a/meta/recipes-devtools/opkg/opkg_0.4.5.bb +++ b/meta/recipes-devtools/opkg/opkg_0.4.5.bb | |||
@@ -1,5 +1,5 @@ | |||
1 | SUMMARY = "Open Package Manager" | 1 | SUMMARY = "Open Package Manager" |
2 | SUMMARY_libopkg = "Open Package Manager library" | 2 | SUMMARY:libopkg = "Open Package Manager library" |
3 | SECTION = "base" | 3 | SECTION = "base" |
4 | HOMEPAGE = "http://code.google.com/p/opkg/" | 4 | HOMEPAGE = "http://code.google.com/p/opkg/" |
5 | DESCRIPTION = "Opkg is a lightweight package management system based on Ipkg." | 5 | DESCRIPTION = "Opkg is a lightweight package management system based on Ipkg." |
@@ -44,9 +44,9 @@ PACKAGECONFIG[sha256] = "--enable-sha256,--disable-sha256" | |||
44 | PACKAGECONFIG[libsolv] = "--with-libsolv,--without-libsolv,libsolv" | 44 | PACKAGECONFIG[libsolv] = "--with-libsolv,--without-libsolv,libsolv" |
45 | 45 | ||
46 | EXTRA_OECONF += " --disable-pathfinder" | 46 | EXTRA_OECONF += " --disable-pathfinder" |
47 | EXTRA_OECONF_class-native = "--localstatedir=/${@os.path.relpath('${localstatedir}', '${STAGING_DIR_NATIVE}')} --sysconfdir=/${@os.path.relpath('${sysconfdir}', '${STAGING_DIR_NATIVE}')}" | 47 | EXTRA_OECONF:class-native = "--localstatedir=/${@os.path.relpath('${localstatedir}', '${STAGING_DIR_NATIVE}')} --sysconfdir=/${@os.path.relpath('${sysconfdir}', '${STAGING_DIR_NATIVE}')}" |
48 | 48 | ||
49 | do_install_append () { | 49 | do_install:append () { |
50 | install -d ${D}${sysconfdir}/opkg | 50 | install -d ${D}${sysconfdir}/opkg |
51 | install -m 0644 ${WORKDIR}/opkg.conf ${D}${sysconfdir}/opkg/opkg.conf | 51 | install -m 0644 ${WORKDIR}/opkg.conf ${D}${sysconfdir}/opkg/opkg.conf |
52 | echo "option lists_dir ${OPKGLIBDIR}/opkg/lists" >>${D}${sysconfdir}/opkg/opkg.conf | 52 | echo "option lists_dir ${OPKGLIBDIR}/opkg/lists" >>${D}${sysconfdir}/opkg/opkg.conf |
@@ -60,7 +60,7 @@ do_install_ptest () { | |||
60 | sed -i -e '/@PYTHONPATH=. $(PYTHON) $^/a\\t@if [ "$$?" != "0" ];then echo "FAIL:"$^;else echo "PASS:"$^;fi' ${D}${PTEST_PATH}/tests/Makefile | 60 | sed -i -e '/@PYTHONPATH=. $(PYTHON) $^/a\\t@if [ "$$?" != "0" ];then echo "FAIL:"$^;else echo "PASS:"$^;fi' ${D}${PTEST_PATH}/tests/Makefile |
61 | } | 61 | } |
62 | 62 | ||
63 | WARN_QA_append += "openssl-deprecation" | 63 | WARN_QA:append += "openssl-deprecation" |
64 | QAPKGTEST[openssl-deprecation] = "package_qa_check_openssl_deprecation" | 64 | QAPKGTEST[openssl-deprecation] = "package_qa_check_openssl_deprecation" |
65 | def package_qa_check_openssl_deprecation (package, d, messages): | 65 | def package_qa_check_openssl_deprecation (package, d, messages): |
66 | sane = True | 66 | sane = True |
@@ -73,16 +73,16 @@ def package_qa_check_openssl_deprecation (package, d, messages): | |||
73 | return sane | 73 | return sane |
74 | 74 | ||
75 | 75 | ||
76 | RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} opkg-arch-config libarchive" | 76 | RDEPENDS:${PN} = "${VIRTUAL-RUNTIME_update-alternatives} opkg-arch-config libarchive" |
77 | RDEPENDS_${PN}_class-native = "" | 77 | RDEPENDS:${PN}:class-native = "" |
78 | RDEPENDS_${PN}_class-nativesdk = "" | 78 | RDEPENDS:${PN}:class-nativesdk = "" |
79 | RDEPENDS_${PN}-ptest += "make binutils python3-core python3-compression" | 79 | RDEPENDS:${PN}-ptest += "make binutils python3-core python3-compression" |
80 | RREPLACES_${PN} = "opkg-nogpg opkg-collateral" | 80 | RREPLACES:${PN} = "opkg-nogpg opkg-collateral" |
81 | RCONFLICTS_${PN} = "opkg-collateral" | 81 | RCONFLICTS:${PN} = "opkg-collateral" |
82 | RPROVIDES_${PN} = "opkg-collateral" | 82 | RPROVIDES:${PN} = "opkg-collateral" |
83 | 83 | ||
84 | FILES_libopkg = "${libdir}/*.so.* ${OPKGLIBDIR}/opkg/" | 84 | FILES:libopkg = "${libdir}/*.so.* ${OPKGLIBDIR}/opkg/" |
85 | 85 | ||
86 | BBCLASSEXTEND = "native nativesdk" | 86 | BBCLASSEXTEND = "native nativesdk" |
87 | 87 | ||
88 | CONFFILES_${PN} = "${sysconfdir}/opkg/opkg.conf" | 88 | CONFFILES:${PN} = "${sysconfdir}/opkg/opkg.conf" |
diff --git a/meta/recipes-devtools/orc/orc_0.4.32.bb b/meta/recipes-devtools/orc/orc_0.4.32.bb index 0b63716f99..829255f110 100644 --- a/meta/recipes-devtools/orc/orc_0.4.32.bb +++ b/meta/recipes-devtools/orc/orc_0.4.32.bb | |||
@@ -17,14 +17,14 @@ BBCLASSEXTEND = "native nativesdk" | |||
17 | 17 | ||
18 | PACKAGES =+ "orc-examples" | 18 | PACKAGES =+ "orc-examples" |
19 | PACKAGES_DYNAMIC += "^liborc-.*" | 19 | PACKAGES_DYNAMIC += "^liborc-.*" |
20 | FILES_orc-examples = "${libdir}/orc/*" | 20 | FILES:orc-examples = "${libdir}/orc/*" |
21 | FILES_${PN} = "${bindir}/*" | 21 | FILES:${PN} = "${bindir}/*" |
22 | 22 | ||
23 | python populate_packages_prepend () { | 23 | python populate_packages:prepend () { |
24 | libdir = d.expand('${libdir}') | 24 | libdir = d.expand('${libdir}') |
25 | do_split_packages(d, libdir, r'^lib(.*)\.so\.*', 'lib%s', 'ORC %s library', extra_depends='', allow_links=True) | 25 | do_split_packages(d, libdir, r'^lib(.*)\.so\.*', 'lib%s', 'ORC %s library', extra_depends='', allow_links=True) |
26 | } | 26 | } |
27 | 27 | ||
28 | do_compile_prepend_class-native () { | 28 | do_compile:prepend:class-native () { |
29 | sed -i -e 's#/tmp#.#g' ${S}/orc/orccodemem.c | 29 | sed -i -e 's#/tmp#.#g' ${S}/orc/orccodemem.c |
30 | } | 30 | } |
diff --git a/meta/recipes-devtools/patch/patch.inc b/meta/recipes-devtools/patch/patch.inc index cbfb8cfcf5..a12d426b2c 100644 --- a/meta/recipes-devtools/patch/patch.inc +++ b/meta/recipes-devtools/patch/patch.inc | |||
@@ -10,5 +10,5 @@ S = "${WORKDIR}/patch-${PV}" | |||
10 | 10 | ||
11 | inherit autotools update-alternatives | 11 | inherit autotools update-alternatives |
12 | 12 | ||
13 | ALTERNATIVE_${PN} = "patch" | 13 | ALTERNATIVE:${PN} = "patch" |
14 | ALTERNATIVE_PRIORITY = "100" | 14 | ALTERNATIVE_PRIORITY = "100" |
diff --git a/meta/recipes-devtools/patch/patch_2.7.6.bb b/meta/recipes-devtools/patch/patch_2.7.6.bb index 1997af0c25..b4f986e33a 100644 --- a/meta/recipes-devtools/patch/patch_2.7.6.bb +++ b/meta/recipes-devtools/patch/patch_2.7.6.bb | |||
@@ -23,6 +23,6 @@ acpaths = "-I ${S}/m4 " | |||
23 | PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'xattr', d)}" | 23 | PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'xattr', d)}" |
24 | PACKAGECONFIG[xattr] = "--enable-xattr,--disable-xattr,attr," | 24 | PACKAGECONFIG[xattr] = "--enable-xattr,--disable-xattr,attr," |
25 | 25 | ||
26 | PROVIDES_append_class-native = " patch-replacement-native" | 26 | PROVIDES:append:class-native = " patch-replacement-native" |
27 | 27 | ||
28 | BBCLASSEXTEND = "native nativesdk" | 28 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/perl-cross/perlcross_1.3.6.bb b/meta/recipes-devtools/perl-cross/perlcross_1.3.6.bb index b19692b2f3..2759ef8a53 100644 --- a/meta/recipes-devtools/perl-cross/perlcross_1.3.6.bb +++ b/meta/recipes-devtools/perl-cross/perlcross_1.3.6.bb | |||
@@ -31,7 +31,7 @@ do_configure () { | |||
31 | do_compile () { | 31 | do_compile () { |
32 | } | 32 | } |
33 | 33 | ||
34 | do_install_class-native() { | 34 | do_install:class-native() { |
35 | mkdir -p ${D}/${datadir}/perl-cross/ | 35 | mkdir -p ${D}/${datadir}/perl-cross/ |
36 | cp -rf ${S}/* ${D}/${datadir}/perl-cross/ | 36 | cp -rf ${S}/* ${D}/${datadir}/perl-cross/ |
37 | } | 37 | } |
diff --git a/meta/recipes-devtools/perl/files/perl-rdepends.txt b/meta/recipes-devtools/perl/files/perl-rdepends.txt index f20fc44b58..dd23dc222a 100644 --- a/meta/recipes-devtools/perl/files/perl-rdepends.txt +++ b/meta/recipes-devtools/perl/files/perl-rdepends.txt | |||
@@ -1,2025 +1,2025 @@ | |||
1 | 1 | ||
2 | # Some additional dependencies that the above doesn't manage to figure out | 2 | # Some additional dependencies that the above doesn't manage to figure out |
3 | RDEPENDS_perl-module-file-spec += "perl-module-file-spec-unix" | 3 | RDEPENDS:perl-module-file-spec += "perl-module-file-spec-unix" |
4 | RDEPENDS_perl-module-math-bigint += "perl-module-math-bigint-calc" | 4 | RDEPENDS:perl-module-math-bigint += "perl-module-math-bigint-calc" |
5 | RDEPENDS_perl-module-thread-queue += "perl-module-attributes" | 5 | RDEPENDS:perl-module-thread-queue += "perl-module-attributes" |
6 | RDEPENDS_perl-module-overload += "perl-module-overloading" | 6 | RDEPENDS:perl-module-overload += "perl-module-overloading" |
7 | 7 | ||
8 | # Generated depends list beyond this line | 8 | # Generated depends list beyond this line |
9 | RDEPENDS_perl-module-anydbm-file += "perl-module-strict" | 9 | RDEPENDS:perl-module-anydbm-file += "perl-module-strict" |
10 | RDEPENDS_perl-module-anydbm-file += "perl-module-warnings" | 10 | RDEPENDS:perl-module-anydbm-file += "perl-module-warnings" |
11 | RDEPENDS_perl-module-app-cpan += "perl-module-config" | 11 | RDEPENDS:perl-module-app-cpan += "perl-module-config" |
12 | RDEPENDS_perl-module-app-cpan += "perl-module-constant" | 12 | RDEPENDS:perl-module-app-cpan += "perl-module-constant" |
13 | RDEPENDS_perl-module-app-cpan += "perl-module-cpan" | 13 | RDEPENDS:perl-module-app-cpan += "perl-module-cpan" |
14 | RDEPENDS_perl-module-app-cpan += "perl-module-cwd" | 14 | RDEPENDS:perl-module-app-cpan += "perl-module-cwd" |
15 | RDEPENDS_perl-module-app-cpan += "perl-module-data-dumper" | 15 | RDEPENDS:perl-module-app-cpan += "perl-module-data-dumper" |
16 | RDEPENDS_perl-module-app-cpan += "perl-module-file-basename" | 16 | RDEPENDS:perl-module-app-cpan += "perl-module-file-basename" |
17 | RDEPENDS_perl-module-app-cpan += "perl-module-file-find" | 17 | RDEPENDS:perl-module-app-cpan += "perl-module-file-find" |
18 | RDEPENDS_perl-module-app-cpan += "perl-module-getopt-std" | 18 | RDEPENDS:perl-module-app-cpan += "perl-module-getopt-std" |
19 | RDEPENDS_perl-module-app-cpan += "perl-module-if" | 19 | RDEPENDS:perl-module-app-cpan += "perl-module-if" |
20 | RDEPENDS_perl-module-app-cpan += "perl-module-net-ping" | 20 | RDEPENDS:perl-module-app-cpan += "perl-module-net-ping" |
21 | RDEPENDS_perl-module-app-cpan += "perl-module-strict" | 21 | RDEPENDS:perl-module-app-cpan += "perl-module-strict" |
22 | RDEPENDS_perl-module-app-cpan += "perl-module-user-pwent" | 22 | RDEPENDS:perl-module-app-cpan += "perl-module-user-pwent" |
23 | RDEPENDS_perl-module-app-cpan += "perl-module-vars" | 23 | RDEPENDS:perl-module-app-cpan += "perl-module-vars" |
24 | RDEPENDS_perl-module-app-cpan += "perl-module-warnings" | 24 | RDEPENDS:perl-module-app-cpan += "perl-module-warnings" |
25 | RDEPENDS_perl-module-app-prove += "perl-module-app-prove-state" | 25 | RDEPENDS:perl-module-app-prove += "perl-module-app-prove-state" |
26 | RDEPENDS_perl-module-app-prove += "perl-module-base" | 26 | RDEPENDS:perl-module-app-prove += "perl-module-base" |
27 | RDEPENDS_perl-module-app-prove += "perl-module-constant" | 27 | RDEPENDS:perl-module-app-prove += "perl-module-constant" |
28 | RDEPENDS_perl-module-app-prove += "perl-module-getopt-long" | 28 | RDEPENDS:perl-module-app-prove += "perl-module-getopt-long" |
29 | RDEPENDS_perl-module-app-prove += "perl-module-strict" | 29 | RDEPENDS:perl-module-app-prove += "perl-module-strict" |
30 | RDEPENDS_perl-module-app-prove += "perl-module-tap-harness" | 30 | RDEPENDS:perl-module-app-prove += "perl-module-tap-harness" |
31 | RDEPENDS_perl-module-app-prove += "perl-module-tap-harness-env" | 31 | RDEPENDS:perl-module-app-prove += "perl-module-tap-harness-env" |
32 | RDEPENDS_perl-module-app-prove += "perl-module-text-parsewords" | 32 | RDEPENDS:perl-module-app-prove += "perl-module-text-parsewords" |
33 | RDEPENDS_perl-module-app-prove += "perl-module-warnings" | 33 | RDEPENDS:perl-module-app-prove += "perl-module-warnings" |
34 | RDEPENDS_perl-module-app-prove-state += "perl-module-app-prove-state-result" | 34 | RDEPENDS:perl-module-app-prove-state += "perl-module-app-prove-state-result" |
35 | RDEPENDS_perl-module-app-prove-state += "perl-module-base" | 35 | RDEPENDS:perl-module-app-prove-state += "perl-module-base" |
36 | RDEPENDS_perl-module-app-prove-state += "perl-module-constant" | 36 | RDEPENDS:perl-module-app-prove-state += "perl-module-constant" |
37 | RDEPENDS_perl-module-app-prove-state += "perl-module-file-find" | 37 | RDEPENDS:perl-module-app-prove-state += "perl-module-file-find" |
38 | RDEPENDS_perl-module-app-prove-state += "perl-module-strict" | 38 | RDEPENDS:perl-module-app-prove-state += "perl-module-strict" |
39 | RDEPENDS_perl-module-app-prove-state += "perl-module-tap-parser-yamlish-reader" | 39 | RDEPENDS:perl-module-app-prove-state += "perl-module-tap-parser-yamlish-reader" |
40 | RDEPENDS_perl-module-app-prove-state += "perl-module-tap-parser-yamlish-writer" | 40 | RDEPENDS:perl-module-app-prove-state += "perl-module-tap-parser-yamlish-writer" |
41 | RDEPENDS_perl-module-app-prove-state += "perl-module-warnings" | 41 | RDEPENDS:perl-module-app-prove-state += "perl-module-warnings" |
42 | RDEPENDS_perl-module-app-prove-state-result += "perl-module-app-prove-state-result-test" | 42 | RDEPENDS:perl-module-app-prove-state-result += "perl-module-app-prove-state-result-test" |
43 | RDEPENDS_perl-module-app-prove-state-result += "perl-module-constant" | 43 | RDEPENDS:perl-module-app-prove-state-result += "perl-module-constant" |
44 | RDEPENDS_perl-module-app-prove-state-result += "perl-module-strict" | 44 | RDEPENDS:perl-module-app-prove-state-result += "perl-module-strict" |
45 | RDEPENDS_perl-module-app-prove-state-result += "perl-module-warnings" | 45 | RDEPENDS:perl-module-app-prove-state-result += "perl-module-warnings" |
46 | RDEPENDS_perl-module-app-prove-state-result-test += "perl-module-strict" | 46 | RDEPENDS:perl-module-app-prove-state-result-test += "perl-module-strict" |
47 | RDEPENDS_perl-module-app-prove-state-result-test += "perl-module-warnings" | 47 | RDEPENDS:perl-module-app-prove-state-result-test += "perl-module-warnings" |
48 | RDEPENDS_perl-module-archive-tar-constant += "perl-module-constant" | 48 | RDEPENDS:perl-module-archive-tar-constant += "perl-module-constant" |
49 | RDEPENDS_perl-module-archive-tar-constant += "perl-module-exporter" | 49 | RDEPENDS:perl-module-archive-tar-constant += "perl-module-exporter" |
50 | RDEPENDS_perl-module-archive-tar-constant += "perl-module-io-compress-bzip2" | 50 | RDEPENDS:perl-module-archive-tar-constant += "perl-module-io-compress-bzip2" |
51 | RDEPENDS_perl-module-archive-tar-constant += "perl-module-strict" | 51 | RDEPENDS:perl-module-archive-tar-constant += "perl-module-strict" |
52 | RDEPENDS_perl-module-archive-tar-constant += "perl-module-time-local" | 52 | RDEPENDS:perl-module-archive-tar-constant += "perl-module-time-local" |
53 | RDEPENDS_perl-module-archive-tar-constant += "perl-module-warnings" | 53 | RDEPENDS:perl-module-archive-tar-constant += "perl-module-warnings" |
54 | RDEPENDS_perl-module-archive-tar-file += "perl-module-archive-tar" | 54 | RDEPENDS:perl-module-archive-tar-file += "perl-module-archive-tar" |
55 | RDEPENDS_perl-module-archive-tar-file += "perl-module-archive-tar-constant" | 55 | RDEPENDS:perl-module-archive-tar-file += "perl-module-archive-tar-constant" |
56 | RDEPENDS_perl-module-archive-tar-file += "perl-module-file-basename" | 56 | RDEPENDS:perl-module-archive-tar-file += "perl-module-file-basename" |
57 | RDEPENDS_perl-module-archive-tar-file += "perl-module-io-file" | 57 | RDEPENDS:perl-module-archive-tar-file += "perl-module-io-file" |
58 | RDEPENDS_perl-module-archive-tar-file += "perl-module-strict" | 58 | RDEPENDS:perl-module-archive-tar-file += "perl-module-strict" |
59 | RDEPENDS_perl-module-archive-tar-file += "perl-module-vars" | 59 | RDEPENDS:perl-module-archive-tar-file += "perl-module-vars" |
60 | RDEPENDS_perl-module-archive-tar += "perl-module-archive-tar-constant" | 60 | RDEPENDS:perl-module-archive-tar += "perl-module-archive-tar-constant" |
61 | RDEPENDS_perl-module-archive-tar += "perl-module-archive-tar-file" | 61 | RDEPENDS:perl-module-archive-tar += "perl-module-archive-tar-file" |
62 | RDEPENDS_perl-module-archive-tar += "perl-module-config" | 62 | RDEPENDS:perl-module-archive-tar += "perl-module-config" |
63 | RDEPENDS_perl-module-archive-tar += "perl-module-cwd" | 63 | RDEPENDS:perl-module-archive-tar += "perl-module-cwd" |
64 | RDEPENDS_perl-module-archive-tar += "perl-module-exporter" | 64 | RDEPENDS:perl-module-archive-tar += "perl-module-exporter" |
65 | RDEPENDS_perl-module-archive-tar += "perl-module-file-path" | 65 | RDEPENDS:perl-module-archive-tar += "perl-module-file-path" |
66 | RDEPENDS_perl-module-archive-tar += "perl-module-io-file" | 66 | RDEPENDS:perl-module-archive-tar += "perl-module-io-file" |
67 | RDEPENDS_perl-module-archive-tar += "perl-module-io-zlib" | 67 | RDEPENDS:perl-module-archive-tar += "perl-module-io-zlib" |
68 | RDEPENDS_perl-module-archive-tar += "perl-module-strict" | 68 | RDEPENDS:perl-module-archive-tar += "perl-module-strict" |
69 | RDEPENDS_perl-module-archive-tar += "perl-module-vars" | 69 | RDEPENDS:perl-module-archive-tar += "perl-module-vars" |
70 | RDEPENDS_perl-module-attribute-handlers += "perl-module-strict" | 70 | RDEPENDS:perl-module-attribute-handlers += "perl-module-strict" |
71 | RDEPENDS_perl-module-attribute-handlers += "perl-module-warnings" | 71 | RDEPENDS:perl-module-attribute-handlers += "perl-module-warnings" |
72 | RDEPENDS_perl-module-attributes += "perl-module-exporter" | 72 | RDEPENDS:perl-module-attributes += "perl-module-exporter" |
73 | RDEPENDS_perl-module-attributes += "perl-module-strict" | 73 | RDEPENDS:perl-module-attributes += "perl-module-strict" |
74 | RDEPENDS_perl-module-attributes += "perl-module-warnings" | 74 | RDEPENDS:perl-module-attributes += "perl-module-warnings" |
75 | RDEPENDS_perl-module-attributes += "perl-module-xsloader" | 75 | RDEPENDS:perl-module-attributes += "perl-module-xsloader" |
76 | RDEPENDS_perl-module-autodie-exception += "perl-module-constant" | 76 | RDEPENDS:perl-module-autodie-exception += "perl-module-constant" |
77 | RDEPENDS_perl-module-autodie-exception += "perl-module-fatal" | 77 | RDEPENDS:perl-module-autodie-exception += "perl-module-fatal" |
78 | RDEPENDS_perl-module-autodie-exception += "perl-module-fcntl" | 78 | RDEPENDS:perl-module-autodie-exception += "perl-module-fcntl" |
79 | RDEPENDS_perl-module-autodie-exception += "perl-module-overload" | 79 | RDEPENDS:perl-module-autodie-exception += "perl-module-overload" |
80 | RDEPENDS_perl-module-autodie-exception += "perl-module-strict" | 80 | RDEPENDS:perl-module-autodie-exception += "perl-module-strict" |
81 | RDEPENDS_perl-module-autodie-exception += "perl-module-warnings" | 81 | RDEPENDS:perl-module-autodie-exception += "perl-module-warnings" |
82 | RDEPENDS_perl-module-autodie-exception-system += "perl-module-parent" | 82 | RDEPENDS:perl-module-autodie-exception-system += "perl-module-parent" |
83 | RDEPENDS_perl-module-autodie-exception-system += "perl-module-strict" | 83 | RDEPENDS:perl-module-autodie-exception-system += "perl-module-strict" |
84 | RDEPENDS_perl-module-autodie-exception-system += "perl-module-warnings" | 84 | RDEPENDS:perl-module-autodie-exception-system += "perl-module-warnings" |
85 | RDEPENDS_perl-module-autodie-hints += "perl-module-b" | 85 | RDEPENDS:perl-module-autodie-hints += "perl-module-b" |
86 | RDEPENDS_perl-module-autodie-hints += "perl-module-constant" | 86 | RDEPENDS:perl-module-autodie-hints += "perl-module-constant" |
87 | RDEPENDS_perl-module-autodie-hints += "perl-module-strict" | 87 | RDEPENDS:perl-module-autodie-hints += "perl-module-strict" |
88 | RDEPENDS_perl-module-autodie-hints += "perl-module-warnings" | 88 | RDEPENDS:perl-module-autodie-hints += "perl-module-warnings" |
89 | RDEPENDS_perl-module-autodie += "perl-module-constant" | 89 | RDEPENDS:perl-module-autodie += "perl-module-constant" |
90 | RDEPENDS_perl-module-autodie += "perl-module-lib" | 90 | RDEPENDS:perl-module-autodie += "perl-module-lib" |
91 | RDEPENDS_perl-module-autodie += "perl-module-parent" | 91 | RDEPENDS:perl-module-autodie += "perl-module-parent" |
92 | RDEPENDS_perl-module-autodie += "perl-module-strict" | 92 | RDEPENDS:perl-module-autodie += "perl-module-strict" |
93 | RDEPENDS_perl-module-autodie += "perl-module-warnings" | 93 | RDEPENDS:perl-module-autodie += "perl-module-warnings" |
94 | RDEPENDS_perl-module-autodie-scope-guard += "perl-module-strict" | 94 | RDEPENDS:perl-module-autodie-scope-guard += "perl-module-strict" |
95 | RDEPENDS_perl-module-autodie-scope-guard += "perl-module-warnings" | 95 | RDEPENDS:perl-module-autodie-scope-guard += "perl-module-warnings" |
96 | RDEPENDS_perl-module-autodie-scope-guardstack += "perl-module-autodie-scope-guard" | 96 | RDEPENDS:perl-module-autodie-scope-guardstack += "perl-module-autodie-scope-guard" |
97 | RDEPENDS_perl-module-autodie-scope-guardstack += "perl-module-strict" | 97 | RDEPENDS:perl-module-autodie-scope-guardstack += "perl-module-strict" |
98 | RDEPENDS_perl-module-autodie-scope-guardstack += "perl-module-warnings" | 98 | RDEPENDS:perl-module-autodie-scope-guardstack += "perl-module-warnings" |
99 | RDEPENDS_perl-module-autodie-skip += "perl-module-strict" | 99 | RDEPENDS:perl-module-autodie-skip += "perl-module-strict" |
100 | RDEPENDS_perl-module-autodie-skip += "perl-module-warnings" | 100 | RDEPENDS:perl-module-autodie-skip += "perl-module-warnings" |
101 | RDEPENDS_perl-module-autodie-util += "perl-module-autodie-scope-guardstack" | 101 | RDEPENDS:perl-module-autodie-util += "perl-module-autodie-scope-guardstack" |
102 | RDEPENDS_perl-module-autodie-util += "perl-module-exporter" | 102 | RDEPENDS:perl-module-autodie-util += "perl-module-exporter" |
103 | RDEPENDS_perl-module-autodie-util += "perl-module-strict" | 103 | RDEPENDS:perl-module-autodie-util += "perl-module-strict" |
104 | RDEPENDS_perl-module-autodie-util += "perl-module-warnings" | 104 | RDEPENDS:perl-module-autodie-util += "perl-module-warnings" |
105 | RDEPENDS_perl-module-autoloader += "perl-module-strict" | 105 | RDEPENDS:perl-module-autoloader += "perl-module-strict" |
106 | RDEPENDS_perl-module-autosplit += "perl-module-config" | 106 | RDEPENDS:perl-module-autosplit += "perl-module-config" |
107 | RDEPENDS_perl-module-autosplit += "perl-module-exporter" | 107 | RDEPENDS:perl-module-autosplit += "perl-module-exporter" |
108 | RDEPENDS_perl-module-autosplit += "perl-module-file-basename" | 108 | RDEPENDS:perl-module-autosplit += "perl-module-file-basename" |
109 | RDEPENDS_perl-module-autosplit += "perl-module-file-path" | 109 | RDEPENDS:perl-module-autosplit += "perl-module-file-path" |
110 | RDEPENDS_perl-module-autosplit += "perl-module-strict" | 110 | RDEPENDS:perl-module-autosplit += "perl-module-strict" |
111 | RDEPENDS_perl-module-base += "perl-module-strict" | 111 | RDEPENDS:perl-module-base += "perl-module-strict" |
112 | RDEPENDS_perl-module-b-concise += "perl-module-b" | 112 | RDEPENDS:perl-module-b-concise += "perl-module-b" |
113 | RDEPENDS_perl-module-b-concise += "perl-module-b-op-private" | 113 | RDEPENDS:perl-module-b-concise += "perl-module-b-op-private" |
114 | RDEPENDS_perl-module-b-concise += "perl-module-config" | 114 | RDEPENDS:perl-module-b-concise += "perl-module-config" |
115 | RDEPENDS_perl-module-b-concise += "perl-module-exporter" | 115 | RDEPENDS:perl-module-b-concise += "perl-module-exporter" |
116 | RDEPENDS_perl-module-b-concise += "perl-module-feature" | 116 | RDEPENDS:perl-module-b-concise += "perl-module-feature" |
117 | RDEPENDS_perl-module-b-concise += "perl-module-strict" | 117 | RDEPENDS:perl-module-b-concise += "perl-module-strict" |
118 | RDEPENDS_perl-module-b-concise += "perl-module-warnings" | 118 | RDEPENDS:perl-module-b-concise += "perl-module-warnings" |
119 | RDEPENDS_perl-module-benchmark += "perl-module-exporter" | 119 | RDEPENDS:perl-module-benchmark += "perl-module-exporter" |
120 | RDEPENDS_perl-module-benchmark += "perl-module-strict" | 120 | RDEPENDS:perl-module-benchmark += "perl-module-strict" |
121 | RDEPENDS_perl-module-bigint += "perl-module-constant" | 121 | RDEPENDS:perl-module-bigint += "perl-module-constant" |
122 | RDEPENDS_perl-module-bigint += "perl-module-exporter" | 122 | RDEPENDS:perl-module-bigint += "perl-module-exporter" |
123 | RDEPENDS_perl-module-bigint += "perl-module-math-bigint" | 123 | RDEPENDS:perl-module-bigint += "perl-module-math-bigint" |
124 | RDEPENDS_perl-module-bigint += "perl-module-math-bigint-trace" | 124 | RDEPENDS:perl-module-bigint += "perl-module-math-bigint-trace" |
125 | RDEPENDS_perl-module-bigint += "perl-module-overload" | 125 | RDEPENDS:perl-module-bigint += "perl-module-overload" |
126 | RDEPENDS_perl-module-bigint += "perl-module-strict" | 126 | RDEPENDS:perl-module-bigint += "perl-module-strict" |
127 | RDEPENDS_perl-module-bigint += "perl-module-warnings" | 127 | RDEPENDS:perl-module-bigint += "perl-module-warnings" |
128 | RDEPENDS_perl-module-bignum += "perl-module-bigint" | 128 | RDEPENDS:perl-module-bignum += "perl-module-bigint" |
129 | RDEPENDS_perl-module-bignum += "perl-module-exporter" | 129 | RDEPENDS:perl-module-bignum += "perl-module-exporter" |
130 | RDEPENDS_perl-module-bignum += "perl-module-math-bigfloat" | 130 | RDEPENDS:perl-module-bignum += "perl-module-math-bigfloat" |
131 | RDEPENDS_perl-module-bignum += "perl-module-math-bigfloat-trace" | 131 | RDEPENDS:perl-module-bignum += "perl-module-math-bigfloat-trace" |
132 | RDEPENDS_perl-module-bignum += "perl-module-math-bigint" | 132 | RDEPENDS:perl-module-bignum += "perl-module-math-bigint" |
133 | RDEPENDS_perl-module-bignum += "perl-module-math-bigint-trace" | 133 | RDEPENDS:perl-module-bignum += "perl-module-math-bigint-trace" |
134 | RDEPENDS_perl-module-bignum += "perl-module-overload" | 134 | RDEPENDS:perl-module-bignum += "perl-module-overload" |
135 | RDEPENDS_perl-module-bignum += "perl-module-strict" | 135 | RDEPENDS:perl-module-bignum += "perl-module-strict" |
136 | RDEPENDS_perl-module-bignum += "perl-module-warnings" | 136 | RDEPENDS:perl-module-bignum += "perl-module-warnings" |
137 | RDEPENDS_perl-module-bigrat += "perl-module-bigint" | 137 | RDEPENDS:perl-module-bigrat += "perl-module-bigint" |
138 | RDEPENDS_perl-module-bigrat += "perl-module-exporter" | 138 | RDEPENDS:perl-module-bigrat += "perl-module-exporter" |
139 | RDEPENDS_perl-module-bigrat += "perl-module-math-bigfloat" | 139 | RDEPENDS:perl-module-bigrat += "perl-module-math-bigfloat" |
140 | RDEPENDS_perl-module-bigrat += "perl-module-math-bigint" | 140 | RDEPENDS:perl-module-bigrat += "perl-module-math-bigint" |
141 | RDEPENDS_perl-module-bigrat += "perl-module-math-bigint-trace" | 141 | RDEPENDS:perl-module-bigrat += "perl-module-math-bigint-trace" |
142 | RDEPENDS_perl-module-bigrat += "perl-module-math-bigrat" | 142 | RDEPENDS:perl-module-bigrat += "perl-module-math-bigrat" |
143 | RDEPENDS_perl-module-bigrat += "perl-module-overload" | 143 | RDEPENDS:perl-module-bigrat += "perl-module-overload" |
144 | RDEPENDS_perl-module-bigrat += "perl-module-strict" | 144 | RDEPENDS:perl-module-bigrat += "perl-module-strict" |
145 | RDEPENDS_perl-module-bigrat += "perl-module-warnings" | 145 | RDEPENDS:perl-module-bigrat += "perl-module-warnings" |
146 | RDEPENDS_perl-module-blib += "perl-module-cwd" | 146 | RDEPENDS:perl-module-blib += "perl-module-cwd" |
147 | RDEPENDS_perl-module-b += "perl-module-exporter" | 147 | RDEPENDS:perl-module-b += "perl-module-exporter" |
148 | RDEPENDS_perl-module-b += "perl-module-xsloader" | 148 | RDEPENDS:perl-module-b += "perl-module-xsloader" |
149 | RDEPENDS_perl-module-b-showlex += "perl-module-b" | 149 | RDEPENDS:perl-module-b-showlex += "perl-module-b" |
150 | RDEPENDS_perl-module-b-showlex += "perl-module-b-concise" | 150 | RDEPENDS:perl-module-b-showlex += "perl-module-b-concise" |
151 | RDEPENDS_perl-module-b-showlex += "perl-module-b-terse" | 151 | RDEPENDS:perl-module-b-showlex += "perl-module-b-terse" |
152 | RDEPENDS_perl-module-b-showlex += "perl-module-strict" | 152 | RDEPENDS:perl-module-b-showlex += "perl-module-strict" |
153 | RDEPENDS_perl-module-b-terse += "perl-module-b" | 153 | RDEPENDS:perl-module-b-terse += "perl-module-b" |
154 | RDEPENDS_perl-module-b-terse += "perl-module-b-concise" | 154 | RDEPENDS:perl-module-b-terse += "perl-module-b-concise" |
155 | RDEPENDS_perl-module-b-terse += "perl-module-strict" | 155 | RDEPENDS:perl-module-b-terse += "perl-module-strict" |
156 | RDEPENDS_perl-module-b-xref += "perl-module-b" | 156 | RDEPENDS:perl-module-b-xref += "perl-module-b" |
157 | RDEPENDS_perl-module-b-xref += "perl-module-config" | 157 | RDEPENDS:perl-module-b-xref += "perl-module-config" |
158 | RDEPENDS_perl-module-b-xref += "perl-module-strict" | 158 | RDEPENDS:perl-module-b-xref += "perl-module-strict" |
159 | RDEPENDS_perl-module-bytes += "perl-module-bytes-heavy" | 159 | RDEPENDS:perl-module-bytes += "perl-module-bytes-heavy" |
160 | RDEPENDS_perl-module--charnames += "perl-module-bytes" | 160 | RDEPENDS:perl-module--charnames += "perl-module-bytes" |
161 | RDEPENDS_perl-module-charnames += "perl-module-bytes" | 161 | RDEPENDS:perl-module-charnames += "perl-module-bytes" |
162 | RDEPENDS_perl-module-charnames += "perl-module--charnames" | 162 | RDEPENDS:perl-module-charnames += "perl-module--charnames" |
163 | RDEPENDS_perl-module--charnames += "perl-module-re" | 163 | RDEPENDS:perl-module--charnames += "perl-module-re" |
164 | RDEPENDS_perl-module-charnames += "perl-module-re" | 164 | RDEPENDS:perl-module-charnames += "perl-module-re" |
165 | RDEPENDS_perl-module--charnames += "perl-module-strict" | 165 | RDEPENDS:perl-module--charnames += "perl-module-strict" |
166 | RDEPENDS_perl-module-charnames += "perl-module-strict" | 166 | RDEPENDS:perl-module-charnames += "perl-module-strict" |
167 | RDEPENDS_perl-module--charnames += "perl-module-warnings" | 167 | RDEPENDS:perl-module--charnames += "perl-module-warnings" |
168 | RDEPENDS_perl-module-charnames += "perl-module-warnings" | 168 | RDEPENDS:perl-module-charnames += "perl-module-warnings" |
169 | RDEPENDS_perl-module-class-struct += "perl-module-exporter" | 169 | RDEPENDS:perl-module-class-struct += "perl-module-exporter" |
170 | RDEPENDS_perl-module-class-struct += "perl-module-strict" | 170 | RDEPENDS:perl-module-class-struct += "perl-module-strict" |
171 | RDEPENDS_perl-module-class-struct += "perl-module-warnings-register" | 171 | RDEPENDS:perl-module-class-struct += "perl-module-warnings-register" |
172 | RDEPENDS_perl-module-compress-raw-bzip2 += "perl-module-bytes " | 172 | RDEPENDS:perl-module-compress-raw-bzip2 += "perl-module-bytes " |
173 | RDEPENDS_perl-module-compress-raw-bzip2 += "perl-module-constant" | 173 | RDEPENDS:perl-module-compress-raw-bzip2 += "perl-module-constant" |
174 | RDEPENDS_perl-module-compress-raw-bzip2 += "perl-module-dynaloader" | 174 | RDEPENDS:perl-module-compress-raw-bzip2 += "perl-module-dynaloader" |
175 | RDEPENDS_perl-module-compress-raw-bzip2 += "perl-module-exporter" | 175 | RDEPENDS:perl-module-compress-raw-bzip2 += "perl-module-exporter" |
176 | RDEPENDS_perl-module-compress-raw-bzip2 += "perl-module-strict " | 176 | RDEPENDS:perl-module-compress-raw-bzip2 += "perl-module-strict " |
177 | RDEPENDS_perl-module-compress-raw-bzip2 += "perl-module-warnings " | 177 | RDEPENDS:perl-module-compress-raw-bzip2 += "perl-module-warnings " |
178 | RDEPENDS_perl-module-compress-raw-bzip2 += "perl-module-xsloader" | 178 | RDEPENDS:perl-module-compress-raw-bzip2 += "perl-module-xsloader" |
179 | RDEPENDS_perl-module-compress-raw-zlib += "perl-module-bytes " | 179 | RDEPENDS:perl-module-compress-raw-zlib += "perl-module-bytes " |
180 | RDEPENDS_perl-module-compress-raw-zlib += "perl-module-constant" | 180 | RDEPENDS:perl-module-compress-raw-zlib += "perl-module-constant" |
181 | RDEPENDS_perl-module-compress-raw-zlib += "perl-module-dynaloader" | 181 | RDEPENDS:perl-module-compress-raw-zlib += "perl-module-dynaloader" |
182 | RDEPENDS_perl-module-compress-raw-zlib += "perl-module-exporter" | 182 | RDEPENDS:perl-module-compress-raw-zlib += "perl-module-exporter" |
183 | RDEPENDS_perl-module-compress-raw-zlib += "perl-module-strict " | 183 | RDEPENDS:perl-module-compress-raw-zlib += "perl-module-strict " |
184 | RDEPENDS_perl-module-compress-raw-zlib += "perl-module-warnings " | 184 | RDEPENDS:perl-module-compress-raw-zlib += "perl-module-warnings " |
185 | RDEPENDS_perl-module-compress-raw-zlib += "perl-module-xsloader" | 185 | RDEPENDS:perl-module-compress-raw-zlib += "perl-module-xsloader" |
186 | RDEPENDS_perl-module-compress-zlib += "perl-module-bytes " | 186 | RDEPENDS:perl-module-compress-zlib += "perl-module-bytes " |
187 | RDEPENDS_perl-module-compress-zlib += "perl-module-compress-raw-zlib" | 187 | RDEPENDS:perl-module-compress-zlib += "perl-module-compress-raw-zlib" |
188 | RDEPENDS_perl-module-compress-zlib += "perl-module-constant" | 188 | RDEPENDS:perl-module-compress-zlib += "perl-module-constant" |
189 | RDEPENDS_perl-module-compress-zlib += "perl-module-exporter" | 189 | RDEPENDS:perl-module-compress-zlib += "perl-module-exporter" |
190 | RDEPENDS_perl-module-compress-zlib += "perl-module-io-compress-base-common" | 190 | RDEPENDS:perl-module-compress-zlib += "perl-module-io-compress-base-common" |
191 | RDEPENDS_perl-module-compress-zlib += "perl-module-io-compress-gzip" | 191 | RDEPENDS:perl-module-compress-zlib += "perl-module-io-compress-gzip" |
192 | RDEPENDS_perl-module-compress-zlib += "perl-module-io-compress-gzip-constants" | 192 | RDEPENDS:perl-module-compress-zlib += "perl-module-io-compress-gzip-constants" |
193 | RDEPENDS_perl-module-compress-zlib += "perl-module-io-handle " | 193 | RDEPENDS:perl-module-compress-zlib += "perl-module-io-handle " |
194 | RDEPENDS_perl-module-compress-zlib += "perl-module-io-uncompress-gunzip" | 194 | RDEPENDS:perl-module-compress-zlib += "perl-module-io-uncompress-gunzip" |
195 | RDEPENDS_perl-module-compress-zlib += "perl-module-strict " | 195 | RDEPENDS:perl-module-compress-zlib += "perl-module-strict " |
196 | RDEPENDS_perl-module-compress-zlib += "perl-module-warnings " | 196 | RDEPENDS:perl-module-compress-zlib += "perl-module-warnings " |
197 | RDEPENDS_perl-module-config-extensions += "perl-module-config" | 197 | RDEPENDS:perl-module-config-extensions += "perl-module-config" |
198 | RDEPENDS_perl-module-config-extensions += "perl-module-exporter" | 198 | RDEPENDS:perl-module-config-extensions += "perl-module-exporter" |
199 | RDEPENDS_perl-module-config-extensions += "perl-module-strict" | 199 | RDEPENDS:perl-module-config-extensions += "perl-module-strict" |
200 | RDEPENDS_perl-module-config-perl-v += "perl-module-config" | 200 | RDEPENDS:perl-module-config-perl-v += "perl-module-config" |
201 | RDEPENDS_perl-module-config-perl-v += "perl-module-exporter" | 201 | RDEPENDS:perl-module-config-perl-v += "perl-module-exporter" |
202 | RDEPENDS_perl-module-config-perl-v += "perl-module-strict" | 202 | RDEPENDS:perl-module-config-perl-v += "perl-module-strict" |
203 | RDEPENDS_perl-module-config-perl-v += "perl-module-vars" | 203 | RDEPENDS:perl-module-config-perl-v += "perl-module-vars" |
204 | RDEPENDS_perl-module-config-perl-v += "perl-module-warnings" | 204 | RDEPENDS:perl-module-config-perl-v += "perl-module-warnings" |
205 | RDEPENDS_perl-module-constant += "perl-module-strict" | 205 | RDEPENDS:perl-module-constant += "perl-module-strict" |
206 | RDEPENDS_perl-module-constant += "perl-module-warnings-register" | 206 | RDEPENDS:perl-module-constant += "perl-module-warnings-register" |
207 | RDEPENDS_perl-module-corelist += "perl-module-list-util" | 207 | RDEPENDS:perl-module-corelist += "perl-module-list-util" |
208 | RDEPENDS_perl-module-corelist += "perl-module-corelist" | 208 | RDEPENDS:perl-module-corelist += "perl-module-corelist" |
209 | RDEPENDS_perl-module-corelist += "perl-module-strict" | 209 | RDEPENDS:perl-module-corelist += "perl-module-strict" |
210 | RDEPENDS_perl-module-corelist += "perl-module-version" | 210 | RDEPENDS:perl-module-corelist += "perl-module-version" |
211 | RDEPENDS_perl-module-corelist += "perl-module-warnings" | 211 | RDEPENDS:perl-module-corelist += "perl-module-warnings" |
212 | RDEPENDS_perl-module-cpan += "perl-module-b" | 212 | RDEPENDS:perl-module-cpan += "perl-module-b" |
213 | RDEPENDS_perl-module-cpan += "perl-module-config" | 213 | RDEPENDS:perl-module-cpan += "perl-module-config" |
214 | RDEPENDS_perl-module-cpan += "perl-module-cwd" | 214 | RDEPENDS:perl-module-cpan += "perl-module-cwd" |
215 | RDEPENDS_perl-module-cpan += "perl-module-data-dumper" | 215 | RDEPENDS:perl-module-cpan += "perl-module-data-dumper" |
216 | RDEPENDS_perl-module-cpan += "perl-module-dirhandle" | 216 | RDEPENDS:perl-module-cpan += "perl-module-dirhandle" |
217 | RDEPENDS_perl-module-cpan += "perl-module-errno" | 217 | RDEPENDS:perl-module-cpan += "perl-module-errno" |
218 | RDEPENDS_perl-module-cpan += "perl-module-exporter" | 218 | RDEPENDS:perl-module-cpan += "perl-module-exporter" |
219 | RDEPENDS_perl-module-cpan += "perl-module-extutils-makemaker" | 219 | RDEPENDS:perl-module-cpan += "perl-module-extutils-makemaker" |
220 | RDEPENDS_perl-module-cpan += "perl-module-extutils-manifest" | 220 | RDEPENDS:perl-module-cpan += "perl-module-extutils-manifest" |
221 | RDEPENDS_perl-module-cpan += "perl-module-fcntl" | 221 | RDEPENDS:perl-module-cpan += "perl-module-fcntl" |
222 | RDEPENDS_perl-module-cpan += "perl-module-file-basename" | 222 | RDEPENDS:perl-module-cpan += "perl-module-file-basename" |
223 | RDEPENDS_perl-module-cpan += "perl-module-file-copy" | 223 | RDEPENDS:perl-module-cpan += "perl-module-file-copy" |
224 | RDEPENDS_perl-module-cpan += "perl-module-file-find" | 224 | RDEPENDS:perl-module-cpan += "perl-module-file-find" |
225 | RDEPENDS_perl-module-cpan += "perl-module-filehandle" | 225 | RDEPENDS:perl-module-cpan += "perl-module-filehandle" |
226 | RDEPENDS_perl-module-cpan += "perl-module-file-path" | 226 | RDEPENDS:perl-module-cpan += "perl-module-file-path" |
227 | RDEPENDS_perl-module-cpan += "perl-module-json-pp" | 227 | RDEPENDS:perl-module-cpan += "perl-module-json-pp" |
228 | RDEPENDS_perl-module-cpan += "perl-module-lib" | 228 | RDEPENDS:perl-module-cpan += "perl-module-lib" |
229 | RDEPENDS_perl-module-cpan += "perl-module-net-ping" | 229 | RDEPENDS:perl-module-cpan += "perl-module-net-ping" |
230 | RDEPENDS_perl-module-cpan += "perl-module-overload" | 230 | RDEPENDS:perl-module-cpan += "perl-module-overload" |
231 | RDEPENDS_perl-module-cpan += "perl-module-posix" | 231 | RDEPENDS:perl-module-cpan += "perl-module-posix" |
232 | RDEPENDS_perl-module-cpan += "perl-module-safe" | 232 | RDEPENDS:perl-module-cpan += "perl-module-safe" |
233 | RDEPENDS_perl-module-cpan += "perl-module-strict" | 233 | RDEPENDS:perl-module-cpan += "perl-module-strict" |
234 | RDEPENDS_perl-module-cpan += "perl-module-sys-hostname" | 234 | RDEPENDS:perl-module-cpan += "perl-module-sys-hostname" |
235 | RDEPENDS_perl-module-cpan += "perl-module-term-readline" | 235 | RDEPENDS:perl-module-cpan += "perl-module-term-readline" |
236 | RDEPENDS_perl-module-cpan += "perl-module-text-parsewords" | 236 | RDEPENDS:perl-module-cpan += "perl-module-text-parsewords" |
237 | RDEPENDS_perl-module-cpan += "perl-module-text-wrap" | 237 | RDEPENDS:perl-module-cpan += "perl-module-text-wrap" |
238 | RDEPENDS_perl-module-cpan += "perl-module-time-local" | 238 | RDEPENDS:perl-module-cpan += "perl-module-time-local" |
239 | RDEPENDS_perl-module-cpan += "perl-module-vars" | 239 | RDEPENDS:perl-module-cpan += "perl-module-vars" |
240 | RDEPENDS_perl-module-cpan += "perl-module-warnings" | 240 | RDEPENDS:perl-module-cpan += "perl-module-warnings" |
241 | RDEPENDS_perl-module-cwd += "perl-module-errno" | 241 | RDEPENDS:perl-module-cwd += "perl-module-errno" |
242 | RDEPENDS_perl-module-cwd += "perl-module-exporter" | 242 | RDEPENDS:perl-module-cwd += "perl-module-exporter" |
243 | RDEPENDS_perl-module-cwd += "perl-module-strict" | 243 | RDEPENDS:perl-module-cwd += "perl-module-strict" |
244 | RDEPENDS_perl-module-cwd += "perl-module-xsloader" | 244 | RDEPENDS:perl-module-cwd += "perl-module-xsloader" |
245 | RDEPENDS_perl-module-data-dumper += "perl-module-config" | 245 | RDEPENDS:perl-module-data-dumper += "perl-module-config" |
246 | RDEPENDS_perl-module-data-dumper += "perl-module-constant" | 246 | RDEPENDS:perl-module-data-dumper += "perl-module-constant" |
247 | RDEPENDS_perl-module-data-dumper += "perl-module-exporter" | 247 | RDEPENDS:perl-module-data-dumper += "perl-module-exporter" |
248 | RDEPENDS_perl-module-data-dumper += "perl-module-xsloader" | 248 | RDEPENDS:perl-module-data-dumper += "perl-module-xsloader" |
249 | RDEPENDS_perl-module-db-file += "perl-module-dynaloader" | 249 | RDEPENDS:perl-module-db-file += "perl-module-dynaloader" |
250 | RDEPENDS_perl-module-db-file += "perl-module-exporter" | 250 | RDEPENDS:perl-module-db-file += "perl-module-exporter" |
251 | RDEPENDS_perl-module-db-file += "perl-module-fcntl" | 251 | RDEPENDS:perl-module-db-file += "perl-module-fcntl" |
252 | RDEPENDS_perl-module-db-file += "perl-module-strict " | 252 | RDEPENDS:perl-module-db-file += "perl-module-strict " |
253 | RDEPENDS_perl-module-db-file += "perl-module-strict" | 253 | RDEPENDS:perl-module-db-file += "perl-module-strict" |
254 | RDEPENDS_perl-module-db-file += "perl-module-tie-hash" | 254 | RDEPENDS:perl-module-db-file += "perl-module-tie-hash" |
255 | RDEPENDS_perl-module-db-file += "perl-module-warnings" | 255 | RDEPENDS:perl-module-db-file += "perl-module-warnings" |
256 | RDEPENDS_perl-module-dbm-filter-compress += "perl-module-strict" | 256 | RDEPENDS:perl-module-dbm-filter-compress += "perl-module-strict" |
257 | RDEPENDS_perl-module-dbm-filter-compress += "perl-module-warnings" | 257 | RDEPENDS:perl-module-dbm-filter-compress += "perl-module-warnings" |
258 | RDEPENDS_perl-module-dbm-filter-encode += "perl-module-strict" | 258 | RDEPENDS:perl-module-dbm-filter-encode += "perl-module-strict" |
259 | RDEPENDS_perl-module-dbm-filter-encode += "perl-module-warnings" | 259 | RDEPENDS:perl-module-dbm-filter-encode += "perl-module-warnings" |
260 | RDEPENDS_perl-module-dbm-filter-int32 += "perl-module-strict" | 260 | RDEPENDS:perl-module-dbm-filter-int32 += "perl-module-strict" |
261 | RDEPENDS_perl-module-dbm-filter-int32 += "perl-module-warnings" | 261 | RDEPENDS:perl-module-dbm-filter-int32 += "perl-module-warnings" |
262 | RDEPENDS_perl-module-dbm-filter-null += "perl-module-strict" | 262 | RDEPENDS:perl-module-dbm-filter-null += "perl-module-strict" |
263 | RDEPENDS_perl-module-dbm-filter-null += "perl-module-warnings" | 263 | RDEPENDS:perl-module-dbm-filter-null += "perl-module-warnings" |
264 | RDEPENDS_perl-module-dbm-filter += "perl-module-strict" | 264 | RDEPENDS:perl-module-dbm-filter += "perl-module-strict" |
265 | RDEPENDS_perl-module-dbm-filter += "perl-module-warnings" | 265 | RDEPENDS:perl-module-dbm-filter += "perl-module-warnings" |
266 | RDEPENDS_perl-module-dbm-filter-utf8 += "perl-module-strict" | 266 | RDEPENDS:perl-module-dbm-filter-utf8 += "perl-module-strict" |
267 | RDEPENDS_perl-module-dbm-filter-utf8 += "perl-module-warnings" | 267 | RDEPENDS:perl-module-dbm-filter-utf8 += "perl-module-warnings" |
268 | RDEPENDS_perl-module-db += "perl-module-strict" | 268 | RDEPENDS:perl-module-db += "perl-module-strict" |
269 | RDEPENDS_perl-module-deprecate += "perl-module-strict" | 269 | RDEPENDS:perl-module-deprecate += "perl-module-strict" |
270 | RDEPENDS_perl-module-deprecate += "perl-module-warnings" | 270 | RDEPENDS:perl-module-deprecate += "perl-module-warnings" |
271 | RDEPENDS_perl-module-devel-peek += "perl-module-exporter" | 271 | RDEPENDS:perl-module-devel-peek += "perl-module-exporter" |
272 | RDEPENDS_perl-module-devel-peek += "perl-module-xsloader" | 272 | RDEPENDS:perl-module-devel-peek += "perl-module-xsloader" |
273 | RDEPENDS_perl-module-devel-ppport += "perl-module-file-find" | 273 | RDEPENDS:perl-module-devel-ppport += "perl-module-file-find" |
274 | RDEPENDS_perl-module-devel-ppport += "perl-module-getopt-long" | 274 | RDEPENDS:perl-module-devel-ppport += "perl-module-getopt-long" |
275 | RDEPENDS_perl-module-devel-ppport += "perl-module-strict" | 275 | RDEPENDS:perl-module-devel-ppport += "perl-module-strict" |
276 | RDEPENDS_perl-module-devel-ppport += "perl-module-vars" | 276 | RDEPENDS:perl-module-devel-ppport += "perl-module-vars" |
277 | RDEPENDS_perl-module-devel-selfstubber += "perl-module-selfloader" | 277 | RDEPENDS:perl-module-devel-selfstubber += "perl-module-selfloader" |
278 | RDEPENDS_perl-module-diagnostics += "perl-module-config" | 278 | RDEPENDS:perl-module-diagnostics += "perl-module-config" |
279 | RDEPENDS_perl-module-diagnostics += "perl-module-getopt-std" | 279 | RDEPENDS:perl-module-diagnostics += "perl-module-getopt-std" |
280 | RDEPENDS_perl-module-diagnostics += "perl-module-strict" | 280 | RDEPENDS:perl-module-diagnostics += "perl-module-strict" |
281 | RDEPENDS_perl-module-diagnostics += "perl-module-text-tabs" | 281 | RDEPENDS:perl-module-diagnostics += "perl-module-text-tabs" |
282 | RDEPENDS_perl-module-digest-base += "perl-module-mime-base64" | 282 | RDEPENDS:perl-module-digest-base += "perl-module-mime-base64" |
283 | RDEPENDS_perl-module-digest-base += "perl-module-strict" | 283 | RDEPENDS:perl-module-digest-base += "perl-module-strict" |
284 | RDEPENDS_perl-module-digest-base += "perl-module-vars" | 284 | RDEPENDS:perl-module-digest-base += "perl-module-vars" |
285 | RDEPENDS_perl-module-digest-file += "perl-module-digest" | 285 | RDEPENDS:perl-module-digest-file += "perl-module-digest" |
286 | RDEPENDS_perl-module-digest-file += "perl-module-exporter" | 286 | RDEPENDS:perl-module-digest-file += "perl-module-exporter" |
287 | RDEPENDS_perl-module-digest-file += "perl-module-strict" | 287 | RDEPENDS:perl-module-digest-file += "perl-module-strict" |
288 | RDEPENDS_perl-module-digest-file += "perl-module-vars" | 288 | RDEPENDS:perl-module-digest-file += "perl-module-vars" |
289 | RDEPENDS_perl-module-digest-md5 += "perl-module-digest-base" | 289 | RDEPENDS:perl-module-digest-md5 += "perl-module-digest-base" |
290 | RDEPENDS_perl-module-digest-md5 += "perl-module-exporter" | 290 | RDEPENDS:perl-module-digest-md5 += "perl-module-exporter" |
291 | RDEPENDS_perl-module-digest-md5 += "perl-module-strict" | 291 | RDEPENDS:perl-module-digest-md5 += "perl-module-strict" |
292 | RDEPENDS_perl-module-digest-md5 += "perl-module-vars" | 292 | RDEPENDS:perl-module-digest-md5 += "perl-module-vars" |
293 | RDEPENDS_perl-module-digest-md5 += "perl-module-xsloader" | 293 | RDEPENDS:perl-module-digest-md5 += "perl-module-xsloader" |
294 | RDEPENDS_perl-module-digest += "perl-module-strict" | 294 | RDEPENDS:perl-module-digest += "perl-module-strict" |
295 | RDEPENDS_perl-module-digest += "perl-module-vars" | 295 | RDEPENDS:perl-module-digest += "perl-module-vars" |
296 | RDEPENDS_perl-module-digest-sha += "perl-module-digest-base" | 296 | RDEPENDS:perl-module-digest-sha += "perl-module-digest-base" |
297 | RDEPENDS_perl-module-digest-sha += "perl-module-dynaloader" | 297 | RDEPENDS:perl-module-digest-sha += "perl-module-dynaloader" |
298 | RDEPENDS_perl-module-digest-sha += "perl-module-exporter" | 298 | RDEPENDS:perl-module-digest-sha += "perl-module-exporter" |
299 | RDEPENDS_perl-module-digest-sha += "perl-module-fcntl" | 299 | RDEPENDS:perl-module-digest-sha += "perl-module-fcntl" |
300 | RDEPENDS_perl-module-digest-sha += "perl-module-integer" | 300 | RDEPENDS:perl-module-digest-sha += "perl-module-integer" |
301 | RDEPENDS_perl-module-digest-sha += "perl-module-strict" | 301 | RDEPENDS:perl-module-digest-sha += "perl-module-strict" |
302 | RDEPENDS_perl-module-digest-sha += "perl-module-vars" | 302 | RDEPENDS:perl-module-digest-sha += "perl-module-vars" |
303 | RDEPENDS_perl-module-digest-sha += "perl-module-warnings" | 303 | RDEPENDS:perl-module-digest-sha += "perl-module-warnings" |
304 | RDEPENDS_perl-module-digest-sha += "perl-module-xsloader" | 304 | RDEPENDS:perl-module-digest-sha += "perl-module-xsloader" |
305 | RDEPENDS_perl-module-dynaloader += "perl-module-config" | 305 | RDEPENDS:perl-module-dynaloader += "perl-module-config" |
306 | RDEPENDS_perl-module-encode-alias += "perl-module-constant" | 306 | RDEPENDS:perl-module-encode-alias += "perl-module-constant" |
307 | RDEPENDS_perl-module-encode-alias += "perl-module-encode" | 307 | RDEPENDS:perl-module-encode-alias += "perl-module-encode" |
308 | RDEPENDS_perl-module-encode-alias += "perl-module-exporter" | 308 | RDEPENDS:perl-module-encode-alias += "perl-module-exporter" |
309 | RDEPENDS_perl-module-encode-alias += "perl-module-strict" | 309 | RDEPENDS:perl-module-encode-alias += "perl-module-strict" |
310 | RDEPENDS_perl-module-encode-alias += "perl-module-warnings" | 310 | RDEPENDS:perl-module-encode-alias += "perl-module-warnings" |
311 | RDEPENDS_perl-module-encode-byte += "perl-module-encode" | 311 | RDEPENDS:perl-module-encode-byte += "perl-module-encode" |
312 | RDEPENDS_perl-module-encode-byte += "perl-module-strict" | 312 | RDEPENDS:perl-module-encode-byte += "perl-module-strict" |
313 | RDEPENDS_perl-module-encode-byte += "perl-module-warnings" | 313 | RDEPENDS:perl-module-encode-byte += "perl-module-warnings" |
314 | RDEPENDS_perl-module-encode-byte += "perl-module-xsloader" | 314 | RDEPENDS:perl-module-encode-byte += "perl-module-xsloader" |
315 | RDEPENDS_perl-module-encode-cjkconstants += "perl-module-exporter" | 315 | RDEPENDS:perl-module-encode-cjkconstants += "perl-module-exporter" |
316 | RDEPENDS_perl-module-encode-cjkconstants += "perl-module-strict" | 316 | RDEPENDS:perl-module-encode-cjkconstants += "perl-module-strict" |
317 | RDEPENDS_perl-module-encode-cjkconstants += "perl-module-warnings" | 317 | RDEPENDS:perl-module-encode-cjkconstants += "perl-module-warnings" |
318 | RDEPENDS_perl-module-encode-cn-hz += "perl-module-encode" | 318 | RDEPENDS:perl-module-encode-cn-hz += "perl-module-encode" |
319 | RDEPENDS_perl-module-encode-cn-hz += "perl-module-parent" | 319 | RDEPENDS:perl-module-encode-cn-hz += "perl-module-parent" |
320 | RDEPENDS_perl-module-encode-cn-hz += "perl-module-strict" | 320 | RDEPENDS:perl-module-encode-cn-hz += "perl-module-strict" |
321 | RDEPENDS_perl-module-encode-cn-hz += "perl-module-utf8" | 321 | RDEPENDS:perl-module-encode-cn-hz += "perl-module-utf8" |
322 | RDEPENDS_perl-module-encode-cn-hz += "perl-module-vars" | 322 | RDEPENDS:perl-module-encode-cn-hz += "perl-module-vars" |
323 | RDEPENDS_perl-module-encode-cn-hz += "perl-module-warnings" | 323 | RDEPENDS:perl-module-encode-cn-hz += "perl-module-warnings" |
324 | RDEPENDS_perl-module-encode-cn += "perl-module-encode" | 324 | RDEPENDS:perl-module-encode-cn += "perl-module-encode" |
325 | RDEPENDS_perl-module-encode-cn += "perl-module-encode-cn-hz" | 325 | RDEPENDS:perl-module-encode-cn += "perl-module-encode-cn-hz" |
326 | RDEPENDS_perl-module-encode-cn += "perl-module-strict" | 326 | RDEPENDS:perl-module-encode-cn += "perl-module-strict" |
327 | RDEPENDS_perl-module-encode-cn += "perl-module-warnings" | 327 | RDEPENDS:perl-module-encode-cn += "perl-module-warnings" |
328 | RDEPENDS_perl-module-encode-cn += "perl-module-xsloader" | 328 | RDEPENDS:perl-module-encode-cn += "perl-module-xsloader" |
329 | RDEPENDS_perl-module-encode-config += "perl-module-strict" | 329 | RDEPENDS:perl-module-encode-config += "perl-module-strict" |
330 | RDEPENDS_perl-module-encode-config += "perl-module-warnings" | 330 | RDEPENDS:perl-module-encode-config += "perl-module-warnings" |
331 | RDEPENDS_perl-module-encode-ebcdic += "perl-module-encode" | 331 | RDEPENDS:perl-module-encode-ebcdic += "perl-module-encode" |
332 | RDEPENDS_perl-module-encode-ebcdic += "perl-module-strict" | 332 | RDEPENDS:perl-module-encode-ebcdic += "perl-module-strict" |
333 | RDEPENDS_perl-module-encode-ebcdic += "perl-module-warnings" | 333 | RDEPENDS:perl-module-encode-ebcdic += "perl-module-warnings" |
334 | RDEPENDS_perl-module-encode-ebcdic += "perl-module-xsloader" | 334 | RDEPENDS:perl-module-encode-ebcdic += "perl-module-xsloader" |
335 | RDEPENDS_perl-module-encode-encoder += "perl-module-constant" | 335 | RDEPENDS:perl-module-encode-encoder += "perl-module-constant" |
336 | RDEPENDS_perl-module-encode-encoder += "perl-module-encode" | 336 | RDEPENDS:perl-module-encode-encoder += "perl-module-encode" |
337 | RDEPENDS_perl-module-encode-encoder += "perl-module-exporter" | 337 | RDEPENDS:perl-module-encode-encoder += "perl-module-exporter" |
338 | RDEPENDS_perl-module-encode-encoder += "perl-module-overload" | 338 | RDEPENDS:perl-module-encode-encoder += "perl-module-overload" |
339 | RDEPENDS_perl-module-encode-encoder += "perl-module-strict" | 339 | RDEPENDS:perl-module-encode-encoder += "perl-module-strict" |
340 | RDEPENDS_perl-module-encode-encoder += "perl-module-warnings" | 340 | RDEPENDS:perl-module-encode-encoder += "perl-module-warnings" |
341 | RDEPENDS_perl-module-encode-encoding += "perl-module-constant" | 341 | RDEPENDS:perl-module-encode-encoding += "perl-module-constant" |
342 | RDEPENDS_perl-module-encode-encoding += "perl-module-encode" | 342 | RDEPENDS:perl-module-encode-encoding += "perl-module-encode" |
343 | RDEPENDS_perl-module-encode-encoding += "perl-module-encode-mime-name" | 343 | RDEPENDS:perl-module-encode-encoding += "perl-module-encode-mime-name" |
344 | RDEPENDS_perl-module-encode-encoding += "perl-module-strict" | 344 | RDEPENDS:perl-module-encode-encoding += "perl-module-strict" |
345 | RDEPENDS_perl-module-encode-encoding += "perl-module-warnings" | 345 | RDEPENDS:perl-module-encode-encoding += "perl-module-warnings" |
346 | RDEPENDS_perl-module-encode-gsm0338 += "perl-module-encode" | 346 | RDEPENDS:perl-module-encode-gsm0338 += "perl-module-encode" |
347 | RDEPENDS_perl-module-encode-gsm0338 += "perl-module-parent" | 347 | RDEPENDS:perl-module-encode-gsm0338 += "perl-module-parent" |
348 | RDEPENDS_perl-module-encode-gsm0338 += "perl-module-strict" | 348 | RDEPENDS:perl-module-encode-gsm0338 += "perl-module-strict" |
349 | RDEPENDS_perl-module-encode-gsm0338 += "perl-module-utf8" | 349 | RDEPENDS:perl-module-encode-gsm0338 += "perl-module-utf8" |
350 | RDEPENDS_perl-module-encode-gsm0338 += "perl-module-vars" | 350 | RDEPENDS:perl-module-encode-gsm0338 += "perl-module-vars" |
351 | RDEPENDS_perl-module-encode-gsm0338 += "perl-module-warnings" | 351 | RDEPENDS:perl-module-encode-gsm0338 += "perl-module-warnings" |
352 | RDEPENDS_perl-module-encode-guess += "perl-module-bytes" | 352 | RDEPENDS:perl-module-encode-guess += "perl-module-bytes" |
353 | RDEPENDS_perl-module-encode-guess += "perl-module-constant" | 353 | RDEPENDS:perl-module-encode-guess += "perl-module-constant" |
354 | RDEPENDS_perl-module-encode-guess += "perl-module-encode" | 354 | RDEPENDS:perl-module-encode-guess += "perl-module-encode" |
355 | RDEPENDS_perl-module-encode-guess += "perl-module-encode-unicode" | 355 | RDEPENDS:perl-module-encode-guess += "perl-module-encode-unicode" |
356 | RDEPENDS_perl-module-encode-guess += "perl-module-parent" | 356 | RDEPENDS:perl-module-encode-guess += "perl-module-parent" |
357 | RDEPENDS_perl-module-encode-guess += "perl-module-strict" | 357 | RDEPENDS:perl-module-encode-guess += "perl-module-strict" |
358 | RDEPENDS_perl-module-encode-guess += "perl-module-warnings" | 358 | RDEPENDS:perl-module-encode-guess += "perl-module-warnings" |
359 | RDEPENDS_perl-module-encode-jp-h2z += "perl-module-encode-cjkconstants" | 359 | RDEPENDS:perl-module-encode-jp-h2z += "perl-module-encode-cjkconstants" |
360 | RDEPENDS_perl-module-encode-jp-h2z += "perl-module-strict" | 360 | RDEPENDS:perl-module-encode-jp-h2z += "perl-module-strict" |
361 | RDEPENDS_perl-module-encode-jp-h2z += "perl-module-vars" | 361 | RDEPENDS:perl-module-encode-jp-h2z += "perl-module-vars" |
362 | RDEPENDS_perl-module-encode-jp-h2z += "perl-module-warnings" | 362 | RDEPENDS:perl-module-encode-jp-h2z += "perl-module-warnings" |
363 | RDEPENDS_perl-module-encode-jp-jis7 += "perl-module-bytes" | 363 | RDEPENDS:perl-module-encode-jp-jis7 += "perl-module-bytes" |
364 | RDEPENDS_perl-module-encode-jp-jis7 += "perl-module-encode" | 364 | RDEPENDS:perl-module-encode-jp-jis7 += "perl-module-encode" |
365 | RDEPENDS_perl-module-encode-jp-jis7 += "perl-module-encode-cjkconstants" | 365 | RDEPENDS:perl-module-encode-jp-jis7 += "perl-module-encode-cjkconstants" |
366 | RDEPENDS_perl-module-encode-jp-jis7 += "perl-module-encode-jp-h2z" | 366 | RDEPENDS:perl-module-encode-jp-jis7 += "perl-module-encode-jp-h2z" |
367 | RDEPENDS_perl-module-encode-jp-jis7 += "perl-module-parent" | 367 | RDEPENDS:perl-module-encode-jp-jis7 += "perl-module-parent" |
368 | RDEPENDS_perl-module-encode-jp-jis7 += "perl-module-strict" | 368 | RDEPENDS:perl-module-encode-jp-jis7 += "perl-module-strict" |
369 | RDEPENDS_perl-module-encode-jp-jis7 += "perl-module-warnings" | 369 | RDEPENDS:perl-module-encode-jp-jis7 += "perl-module-warnings" |
370 | RDEPENDS_perl-module-encode-jp += "perl-module-encode" | 370 | RDEPENDS:perl-module-encode-jp += "perl-module-encode" |
371 | RDEPENDS_perl-module-encode-jp += "perl-module-encode-jp-jis7" | 371 | RDEPENDS:perl-module-encode-jp += "perl-module-encode-jp-jis7" |
372 | RDEPENDS_perl-module-encode-jp += "perl-module-strict" | 372 | RDEPENDS:perl-module-encode-jp += "perl-module-strict" |
373 | RDEPENDS_perl-module-encode-jp += "perl-module-warnings" | 373 | RDEPENDS:perl-module-encode-jp += "perl-module-warnings" |
374 | RDEPENDS_perl-module-encode-jp += "perl-module-xsloader" | 374 | RDEPENDS:perl-module-encode-jp += "perl-module-xsloader" |
375 | RDEPENDS_perl-module-encode-kr-2022-kr += "perl-module-encode" | 375 | RDEPENDS:perl-module-encode-kr-2022-kr += "perl-module-encode" |
376 | RDEPENDS_perl-module-encode-kr-2022-kr += "perl-module-encode-cjkconstants" | 376 | RDEPENDS:perl-module-encode-kr-2022-kr += "perl-module-encode-cjkconstants" |
377 | RDEPENDS_perl-module-encode-kr-2022-kr += "perl-module-parent" | 377 | RDEPENDS:perl-module-encode-kr-2022-kr += "perl-module-parent" |
378 | RDEPENDS_perl-module-encode-kr-2022-kr += "perl-module-strict" | 378 | RDEPENDS:perl-module-encode-kr-2022-kr += "perl-module-strict" |
379 | RDEPENDS_perl-module-encode-kr-2022-kr += "perl-module-warnings" | 379 | RDEPENDS:perl-module-encode-kr-2022-kr += "perl-module-warnings" |
380 | RDEPENDS_perl-module-encode-kr += "perl-module-encode" | 380 | RDEPENDS:perl-module-encode-kr += "perl-module-encode" |
381 | RDEPENDS_perl-module-encode-kr += "perl-module-encode-kr-2022-kr" | 381 | RDEPENDS:perl-module-encode-kr += "perl-module-encode-kr-2022-kr" |
382 | RDEPENDS_perl-module-encode-kr += "perl-module-strict" | 382 | RDEPENDS:perl-module-encode-kr += "perl-module-strict" |
383 | RDEPENDS_perl-module-encode-kr += "perl-module-warnings" | 383 | RDEPENDS:perl-module-encode-kr += "perl-module-warnings" |
384 | RDEPENDS_perl-module-encode-kr += "perl-module-xsloader" | 384 | RDEPENDS:perl-module-encode-kr += "perl-module-xsloader" |
385 | RDEPENDS_perl-module-encode-mime-header-iso-2022-jp += "perl-module-constant" | 385 | RDEPENDS:perl-module-encode-mime-header-iso-2022-jp += "perl-module-constant" |
386 | RDEPENDS_perl-module-encode-mime-header-iso-2022-jp += "perl-module-encode-cjkconstants" | 386 | RDEPENDS:perl-module-encode-mime-header-iso-2022-jp += "perl-module-encode-cjkconstants" |
387 | RDEPENDS_perl-module-encode-mime-header-iso-2022-jp += "perl-module-parent" | 387 | RDEPENDS:perl-module-encode-mime-header-iso-2022-jp += "perl-module-parent" |
388 | RDEPENDS_perl-module-encode-mime-header-iso-2022-jp += "perl-module-strict" | 388 | RDEPENDS:perl-module-encode-mime-header-iso-2022-jp += "perl-module-strict" |
389 | RDEPENDS_perl-module-encode-mime-header-iso-2022-jp += "perl-module-warnings" | 389 | RDEPENDS:perl-module-encode-mime-header-iso-2022-jp += "perl-module-warnings" |
390 | RDEPENDS_perl-module-encode-mime-header += "perl-module-encode" | 390 | RDEPENDS:perl-module-encode-mime-header += "perl-module-encode" |
391 | RDEPENDS_perl-module-encode-mime-header += "perl-module-mime-base64" | 391 | RDEPENDS:perl-module-encode-mime-header += "perl-module-mime-base64" |
392 | RDEPENDS_perl-module-encode-mime-header += "perl-module-parent" | 392 | RDEPENDS:perl-module-encode-mime-header += "perl-module-parent" |
393 | RDEPENDS_perl-module-encode-mime-header += "perl-module-strict" | 393 | RDEPENDS:perl-module-encode-mime-header += "perl-module-strict" |
394 | RDEPENDS_perl-module-encode-mime-header += "perl-module-warnings" | 394 | RDEPENDS:perl-module-encode-mime-header += "perl-module-warnings" |
395 | RDEPENDS_perl-module-encode-mime-name += "perl-module-strict" | 395 | RDEPENDS:perl-module-encode-mime-name += "perl-module-strict" |
396 | RDEPENDS_perl-module-encode-mime-name += "perl-module-warnings" | 396 | RDEPENDS:perl-module-encode-mime-name += "perl-module-warnings" |
397 | RDEPENDS_perl-module-encode += "perl-module-bytes" | 397 | RDEPENDS:perl-module-encode += "perl-module-bytes" |
398 | RDEPENDS_perl-module-encode += "perl-module-constant" | 398 | RDEPENDS:perl-module-encode += "perl-module-constant" |
399 | RDEPENDS_perl-module-encode += "perl-module-encode-alias" | 399 | RDEPENDS:perl-module-encode += "perl-module-encode-alias" |
400 | RDEPENDS_perl-module-encode += "perl-module-encode-config" | 400 | RDEPENDS:perl-module-encode += "perl-module-encode-config" |
401 | RDEPENDS_perl-module-encode += "perl-module-encode-configlocal-pm" | 401 | RDEPENDS:perl-module-encode += "perl-module-encode-configlocal-pm" |
402 | RDEPENDS_perl-module-encode += "perl-module-encode-mime-name" | 402 | RDEPENDS:perl-module-encode += "perl-module-encode-mime-name" |
403 | RDEPENDS_perl-module-encode += "perl-module-exporter" | 403 | RDEPENDS:perl-module-encode += "perl-module-exporter" |
404 | RDEPENDS_perl-module-encode += "perl-module-parent" | 404 | RDEPENDS:perl-module-encode += "perl-module-parent" |
405 | RDEPENDS_perl-module-encode += "perl-module-storable" | 405 | RDEPENDS:perl-module-encode += "perl-module-storable" |
406 | RDEPENDS_perl-module-encode += "perl-module-strict" | 406 | RDEPENDS:perl-module-encode += "perl-module-strict" |
407 | RDEPENDS_perl-module-encode += "perl-module-warnings" | 407 | RDEPENDS:perl-module-encode += "perl-module-warnings" |
408 | RDEPENDS_perl-module-encode += "perl-module-xsloader" | 408 | RDEPENDS:perl-module-encode += "perl-module-xsloader" |
409 | RDEPENDS_perl-module-encode-symbol += "perl-module-encode" | 409 | RDEPENDS:perl-module-encode-symbol += "perl-module-encode" |
410 | RDEPENDS_perl-module-encode-symbol += "perl-module-strict" | 410 | RDEPENDS:perl-module-encode-symbol += "perl-module-strict" |
411 | RDEPENDS_perl-module-encode-symbol += "perl-module-warnings" | 411 | RDEPENDS:perl-module-encode-symbol += "perl-module-warnings" |
412 | RDEPENDS_perl-module-encode-symbol += "perl-module-xsloader" | 412 | RDEPENDS:perl-module-encode-symbol += "perl-module-xsloader" |
413 | RDEPENDS_perl-module-encode-tw += "perl-module-encode" | 413 | RDEPENDS:perl-module-encode-tw += "perl-module-encode" |
414 | RDEPENDS_perl-module-encode-tw += "perl-module-strict" | 414 | RDEPENDS:perl-module-encode-tw += "perl-module-strict" |
415 | RDEPENDS_perl-module-encode-tw += "perl-module-warnings" | 415 | RDEPENDS:perl-module-encode-tw += "perl-module-warnings" |
416 | RDEPENDS_perl-module-encode-tw += "perl-module-xsloader" | 416 | RDEPENDS:perl-module-encode-tw += "perl-module-xsloader" |
417 | RDEPENDS_perl-module-encode-unicode += "perl-module-encode" | 417 | RDEPENDS:perl-module-encode-unicode += "perl-module-encode" |
418 | RDEPENDS_perl-module-encode-unicode += "perl-module-parent" | 418 | RDEPENDS:perl-module-encode-unicode += "perl-module-parent" |
419 | RDEPENDS_perl-module-encode-unicode += "perl-module-strict" | 419 | RDEPENDS:perl-module-encode-unicode += "perl-module-strict" |
420 | RDEPENDS_perl-module-encode-unicode += "perl-module-warnings" | 420 | RDEPENDS:perl-module-encode-unicode += "perl-module-warnings" |
421 | RDEPENDS_perl-module-encode-unicode += "perl-module-xsloader" | 421 | RDEPENDS:perl-module-encode-unicode += "perl-module-xsloader" |
422 | RDEPENDS_perl-module-encode-unicode-utf7 += "perl-module-encode" | 422 | RDEPENDS:perl-module-encode-unicode-utf7 += "perl-module-encode" |
423 | RDEPENDS_perl-module-encode-unicode-utf7 += "perl-module-mime-base64" | 423 | RDEPENDS:perl-module-encode-unicode-utf7 += "perl-module-mime-base64" |
424 | RDEPENDS_perl-module-encode-unicode-utf7 += "perl-module-parent" | 424 | RDEPENDS:perl-module-encode-unicode-utf7 += "perl-module-parent" |
425 | RDEPENDS_perl-module-encode-unicode-utf7 += "perl-module-re" | 425 | RDEPENDS:perl-module-encode-unicode-utf7 += "perl-module-re" |
426 | RDEPENDS_perl-module-encode-unicode-utf7 += "perl-module-strict" | 426 | RDEPENDS:perl-module-encode-unicode-utf7 += "perl-module-strict" |
427 | RDEPENDS_perl-module-encode-unicode-utf7 += "perl-module-warnings" | 427 | RDEPENDS:perl-module-encode-unicode-utf7 += "perl-module-warnings" |
428 | RDEPENDS_perl-module-encoding += "perl-module-config" | 428 | RDEPENDS:perl-module-encoding += "perl-module-config" |
429 | RDEPENDS_perl-module-encoding += "perl-module-constant" | 429 | RDEPENDS:perl-module-encoding += "perl-module-constant" |
430 | RDEPENDS_perl-module-encoding += "perl-module-encode" | 430 | RDEPENDS:perl-module-encoding += "perl-module-encode" |
431 | RDEPENDS_perl-module-encoding += "perl-module-filter-util-call" | 431 | RDEPENDS:perl-module-encoding += "perl-module-filter-util-call" |
432 | RDEPENDS_perl-module-encoding += "perl-module-i18n-langinfo" | 432 | RDEPENDS:perl-module-encoding += "perl-module-i18n-langinfo" |
433 | RDEPENDS_perl-module-encoding += "perl-module-posix" | 433 | RDEPENDS:perl-module-encoding += "perl-module-posix" |
434 | RDEPENDS_perl-module-encoding += "perl-module-strict" | 434 | RDEPENDS:perl-module-encoding += "perl-module-strict" |
435 | RDEPENDS_perl-module-encoding += "perl-module-utf8" | 435 | RDEPENDS:perl-module-encoding += "perl-module-utf8" |
436 | RDEPENDS_perl-module-encoding += "perl-module-warnings" | 436 | RDEPENDS:perl-module-encoding += "perl-module-warnings" |
437 | RDEPENDS_perl-module-encoding-warnings += "perl-module-strict" | 437 | RDEPENDS:perl-module-encoding-warnings += "perl-module-strict" |
438 | RDEPENDS_perl-module-encoding-warnings += "perl-module-warnings" | 438 | RDEPENDS:perl-module-encoding-warnings += "perl-module-warnings" |
439 | RDEPENDS_perl-module-english += "perl-module-exporter" | 439 | RDEPENDS:perl-module-english += "perl-module-exporter" |
440 | RDEPENDS_perl-module-env += "perl-module-config" | 440 | RDEPENDS:perl-module-env += "perl-module-config" |
441 | RDEPENDS_perl-module-env += "perl-module-tie-array" | 441 | RDEPENDS:perl-module-env += "perl-module-tie-array" |
442 | RDEPENDS_perl-module-errno += "perl-module-exporter" | 442 | RDEPENDS:perl-module-errno += "perl-module-exporter" |
443 | RDEPENDS_perl-module-errno += "perl-module-strict" | 443 | RDEPENDS:perl-module-errno += "perl-module-strict" |
444 | RDEPENDS_perl-module-experimental += "perl-module-strict" | 444 | RDEPENDS:perl-module-experimental += "perl-module-strict" |
445 | RDEPENDS_perl-module-experimental += "perl-module-version" | 445 | RDEPENDS:perl-module-experimental += "perl-module-version" |
446 | RDEPENDS_perl-module-experimental += "perl-module-warnings" | 446 | RDEPENDS:perl-module-experimental += "perl-module-warnings" |
447 | RDEPENDS_perl-module-exporter-heavy += "perl-module-exporter" | 447 | RDEPENDS:perl-module-exporter-heavy += "perl-module-exporter" |
448 | RDEPENDS_perl-module-exporter-heavy += "perl-module-strict" | 448 | RDEPENDS:perl-module-exporter-heavy += "perl-module-strict" |
449 | RDEPENDS_perl-module-exporter += "perl-module-exporter-heavy" | 449 | RDEPENDS:perl-module-exporter += "perl-module-exporter-heavy" |
450 | RDEPENDS_perl-module-extutils-cbuilder-base += "perl-module-config" | 450 | RDEPENDS:perl-module-extutils-cbuilder-base += "perl-module-config" |
451 | RDEPENDS_perl-module-extutils-cbuilder-base += "perl-module-cwd" | 451 | RDEPENDS:perl-module-extutils-cbuilder-base += "perl-module-cwd" |
452 | RDEPENDS_perl-module-extutils-cbuilder-base += "perl-module-dynaloader" | 452 | RDEPENDS:perl-module-extutils-cbuilder-base += "perl-module-dynaloader" |
453 | RDEPENDS_perl-module-extutils-cbuilder-base += "perl-module-extutils-mksymlists" | 453 | RDEPENDS:perl-module-extutils-cbuilder-base += "perl-module-extutils-mksymlists" |
454 | RDEPENDS_perl-module-extutils-cbuilder-base += "perl-module-file-basename" | 454 | RDEPENDS:perl-module-extutils-cbuilder-base += "perl-module-file-basename" |
455 | RDEPENDS_perl-module-extutils-cbuilder-base += "perl-module-file-temp" | 455 | RDEPENDS:perl-module-extutils-cbuilder-base += "perl-module-file-temp" |
456 | RDEPENDS_perl-module-extutils-cbuilder-base += "perl-module-ipc-cmd" | 456 | RDEPENDS:perl-module-extutils-cbuilder-base += "perl-module-ipc-cmd" |
457 | RDEPENDS_perl-module-extutils-cbuilder-base += "perl-module-strict" | 457 | RDEPENDS:perl-module-extutils-cbuilder-base += "perl-module-strict" |
458 | RDEPENDS_perl-module-extutils-cbuilder-base += "perl-module-text-parsewords" | 458 | RDEPENDS:perl-module-extutils-cbuilder-base += "perl-module-text-parsewords" |
459 | RDEPENDS_perl-module-extutils-cbuilder-base += "perl-module-warnings" | 459 | RDEPENDS:perl-module-extutils-cbuilder-base += "perl-module-warnings" |
460 | RDEPENDS_perl-module-extutils-cbuilder += "perl-module-file-basename" | 460 | RDEPENDS:perl-module-extutils-cbuilder += "perl-module-file-basename" |
461 | RDEPENDS_perl-module-extutils-cbuilder += "perl-module-file-path" | 461 | RDEPENDS:perl-module-extutils-cbuilder += "perl-module-file-path" |
462 | RDEPENDS_perl-module-extutils-cbuilder += "perl-module-strict" | 462 | RDEPENDS:perl-module-extutils-cbuilder += "perl-module-strict" |
463 | RDEPENDS_perl-module-extutils-cbuilder += "perl-module-warnings" | 463 | RDEPENDS:perl-module-extutils-cbuilder += "perl-module-warnings" |
464 | RDEPENDS_perl-module-extutils-cbuilder-platform-aix += "perl-module-extutils-cbuilder-platform-unix" | 464 | RDEPENDS:perl-module-extutils-cbuilder-platform-aix += "perl-module-extutils-cbuilder-platform-unix" |
465 | RDEPENDS_perl-module-extutils-cbuilder-platform-aix += "perl-module-strict" | 465 | RDEPENDS:perl-module-extutils-cbuilder-platform-aix += "perl-module-strict" |
466 | RDEPENDS_perl-module-extutils-cbuilder-platform-aix += "perl-module-warnings" | 466 | RDEPENDS:perl-module-extutils-cbuilder-platform-aix += "perl-module-warnings" |
467 | RDEPENDS_perl-module-extutils-cbuilder-platform-android += "perl-module-config" | 467 | RDEPENDS:perl-module-extutils-cbuilder-platform-android += "perl-module-config" |
468 | RDEPENDS_perl-module-extutils-cbuilder-platform-android += "perl-module-extutils-cbuilder-platform-unix" | 468 | RDEPENDS:perl-module-extutils-cbuilder-platform-android += "perl-module-extutils-cbuilder-platform-unix" |
469 | RDEPENDS_perl-module-extutils-cbuilder-platform-android += "perl-module-strict" | 469 | RDEPENDS:perl-module-extutils-cbuilder-platform-android += "perl-module-strict" |
470 | RDEPENDS_perl-module-extutils-cbuilder-platform-android += "perl-module-warnings" | 470 | RDEPENDS:perl-module-extutils-cbuilder-platform-android += "perl-module-warnings" |
471 | RDEPENDS_perl-module-extutils-cbuilder-platform-cygwin += "perl-module-extutils-cbuilder-platform-unix" | 471 | RDEPENDS:perl-module-extutils-cbuilder-platform-cygwin += "perl-module-extutils-cbuilder-platform-unix" |
472 | RDEPENDS_perl-module-extutils-cbuilder-platform-cygwin += "perl-module-strict" | 472 | RDEPENDS:perl-module-extutils-cbuilder-platform-cygwin += "perl-module-strict" |
473 | RDEPENDS_perl-module-extutils-cbuilder-platform-cygwin += "perl-module-warnings" | 473 | RDEPENDS:perl-module-extutils-cbuilder-platform-cygwin += "perl-module-warnings" |
474 | RDEPENDS_perl-module-extutils-cbuilder-platform-darwin += "perl-module-extutils-cbuilder-platform-unix" | 474 | RDEPENDS:perl-module-extutils-cbuilder-platform-darwin += "perl-module-extutils-cbuilder-platform-unix" |
475 | RDEPENDS_perl-module-extutils-cbuilder-platform-darwin += "perl-module-strict" | 475 | RDEPENDS:perl-module-extutils-cbuilder-platform-darwin += "perl-module-strict" |
476 | RDEPENDS_perl-module-extutils-cbuilder-platform-darwin += "perl-module-warnings" | 476 | RDEPENDS:perl-module-extutils-cbuilder-platform-darwin += "perl-module-warnings" |
477 | RDEPENDS_perl-module-extutils-cbuilder-platform-dec-osf += "perl-module-extutils-cbuilder-platform-unix" | 477 | RDEPENDS:perl-module-extutils-cbuilder-platform-dec-osf += "perl-module-extutils-cbuilder-platform-unix" |
478 | RDEPENDS_perl-module-extutils-cbuilder-platform-dec-osf += "perl-module-strict" | 478 | RDEPENDS:perl-module-extutils-cbuilder-platform-dec-osf += "perl-module-strict" |
479 | RDEPENDS_perl-module-extutils-cbuilder-platform-dec-osf += "perl-module-warnings" | 479 | RDEPENDS:perl-module-extutils-cbuilder-platform-dec-osf += "perl-module-warnings" |
480 | RDEPENDS_perl-module-extutils-cbuilder-platform-os2 += "perl-module-extutils-cbuilder-platform-unix" | 480 | RDEPENDS:perl-module-extutils-cbuilder-platform-os2 += "perl-module-extutils-cbuilder-platform-unix" |
481 | RDEPENDS_perl-module-extutils-cbuilder-platform-os2 += "perl-module-strict" | 481 | RDEPENDS:perl-module-extutils-cbuilder-platform-os2 += "perl-module-strict" |
482 | RDEPENDS_perl-module-extutils-cbuilder-platform-os2 += "perl-module-warnings" | 482 | RDEPENDS:perl-module-extutils-cbuilder-platform-os2 += "perl-module-warnings" |
483 | RDEPENDS_perl-module-extutils-cbuilder-platform-unix += "perl-module-extutils-cbuilder-base" | 483 | RDEPENDS:perl-module-extutils-cbuilder-platform-unix += "perl-module-extutils-cbuilder-base" |
484 | RDEPENDS_perl-module-extutils-cbuilder-platform-unix += "perl-module-strict" | 484 | RDEPENDS:perl-module-extutils-cbuilder-platform-unix += "perl-module-strict" |
485 | RDEPENDS_perl-module-extutils-cbuilder-platform-unix += "perl-module-warnings" | 485 | RDEPENDS:perl-module-extutils-cbuilder-platform-unix += "perl-module-warnings" |
486 | RDEPENDS_perl-module-extutils-cbuilder-platform-vms += "perl-module-config" | 486 | RDEPENDS:perl-module-extutils-cbuilder-platform-vms += "perl-module-config" |
487 | RDEPENDS_perl-module-extutils-cbuilder-platform-vms += "perl-module-extutils-cbuilder-base" | 487 | RDEPENDS:perl-module-extutils-cbuilder-platform-vms += "perl-module-extutils-cbuilder-base" |
488 | RDEPENDS_perl-module-extutils-cbuilder-platform-vms += "perl-module-strict" | 488 | RDEPENDS:perl-module-extutils-cbuilder-platform-vms += "perl-module-strict" |
489 | RDEPENDS_perl-module-extutils-cbuilder-platform-vms += "perl-module-warnings" | 489 | RDEPENDS:perl-module-extutils-cbuilder-platform-vms += "perl-module-warnings" |
490 | RDEPENDS_perl-module-extutils-cbuilder-platform-windows-bcc += "perl-module-strict" | 490 | RDEPENDS:perl-module-extutils-cbuilder-platform-windows-bcc += "perl-module-strict" |
491 | RDEPENDS_perl-module-extutils-cbuilder-platform-windows-bcc += "perl-module-warnings" | 491 | RDEPENDS:perl-module-extutils-cbuilder-platform-windows-bcc += "perl-module-warnings" |
492 | RDEPENDS_perl-module-extutils-cbuilder-platform-windows-gcc += "perl-module-strict" | 492 | RDEPENDS:perl-module-extutils-cbuilder-platform-windows-gcc += "perl-module-strict" |
493 | RDEPENDS_perl-module-extutils-cbuilder-platform-windows-gcc += "perl-module-warnings" | 493 | RDEPENDS:perl-module-extutils-cbuilder-platform-windows-gcc += "perl-module-warnings" |
494 | RDEPENDS_perl-module-extutils-cbuilder-platform-windows-msvc += "perl-module-strict" | 494 | RDEPENDS:perl-module-extutils-cbuilder-platform-windows-msvc += "perl-module-strict" |
495 | RDEPENDS_perl-module-extutils-cbuilder-platform-windows-msvc += "perl-module-warnings" | 495 | RDEPENDS:perl-module-extutils-cbuilder-platform-windows-msvc += "perl-module-warnings" |
496 | RDEPENDS_perl-module-extutils-cbuilder-platform-windows += "perl-module-extutils-cbuilder-base" | 496 | RDEPENDS:perl-module-extutils-cbuilder-platform-windows += "perl-module-extutils-cbuilder-base" |
497 | RDEPENDS_perl-module-extutils-cbuilder-platform-windows += "perl-module-file-basename" | 497 | RDEPENDS:perl-module-extutils-cbuilder-platform-windows += "perl-module-file-basename" |
498 | RDEPENDS_perl-module-extutils-cbuilder-platform-windows += "perl-module-io-file" | 498 | RDEPENDS:perl-module-extutils-cbuilder-platform-windows += "perl-module-io-file" |
499 | RDEPENDS_perl-module-extutils-cbuilder-platform-windows += "perl-module-strict" | 499 | RDEPENDS:perl-module-extutils-cbuilder-platform-windows += "perl-module-strict" |
500 | RDEPENDS_perl-module-extutils-cbuilder-platform-windows += "perl-module-warnings" | 500 | RDEPENDS:perl-module-extutils-cbuilder-platform-windows += "perl-module-warnings" |
501 | RDEPENDS_perl-module-extutils-command-mm += "perl-module-exporter" | 501 | RDEPENDS:perl-module-extutils-command-mm += "perl-module-exporter" |
502 | RDEPENDS_perl-module-extutils-command-mm += "perl-module-extutils-command" | 502 | RDEPENDS:perl-module-extutils-command-mm += "perl-module-extutils-command" |
503 | RDEPENDS_perl-module-extutils-command-mm += "perl-module-extutils-install" | 503 | RDEPENDS:perl-module-extutils-command-mm += "perl-module-extutils-install" |
504 | RDEPENDS_perl-module-extutils-command-mm += "perl-module-getopt-long" | 504 | RDEPENDS:perl-module-extutils-command-mm += "perl-module-getopt-long" |
505 | RDEPENDS_perl-module-extutils-command-mm += "perl-module-strict" | 505 | RDEPENDS:perl-module-extutils-command-mm += "perl-module-strict" |
506 | RDEPENDS_perl-module-extutils-command-mm += "perl-module-test-harness" | 506 | RDEPENDS:perl-module-extutils-command-mm += "perl-module-test-harness" |
507 | RDEPENDS_perl-module-extutils-command-mm += "perl-module-warnings" | 507 | RDEPENDS:perl-module-extutils-command-mm += "perl-module-warnings" |
508 | RDEPENDS_perl-module-extutils-command += "perl-module-exporter" | 508 | RDEPENDS:perl-module-extutils-command += "perl-module-exporter" |
509 | RDEPENDS_perl-module-extutils-command += "perl-module-file-copy" | 509 | RDEPENDS:perl-module-extutils-command += "perl-module-file-copy" |
510 | RDEPENDS_perl-module-extutils-command += "perl-module-file-find" | 510 | RDEPENDS:perl-module-extutils-command += "perl-module-file-find" |
511 | RDEPENDS_perl-module-extutils-command += "perl-module-file-path" | 511 | RDEPENDS:perl-module-extutils-command += "perl-module-file-path" |
512 | RDEPENDS_perl-module-extutils-command += "perl-module-strict" | 512 | RDEPENDS:perl-module-extutils-command += "perl-module-strict" |
513 | RDEPENDS_perl-module-extutils-command += "perl-module-vars" | 513 | RDEPENDS:perl-module-extutils-command += "perl-module-vars" |
514 | RDEPENDS_perl-module-extutils-constant-base += "perl-module-constant" | 514 | RDEPENDS:perl-module-extutils-constant-base += "perl-module-constant" |
515 | RDEPENDS_perl-module-extutils-constant-base += "perl-module-extutils-constant-utils" | 515 | RDEPENDS:perl-module-extutils-constant-base += "perl-module-extutils-constant-utils" |
516 | RDEPENDS_perl-module-extutils-constant-base += "perl-module-strict" | 516 | RDEPENDS:perl-module-extutils-constant-base += "perl-module-strict" |
517 | RDEPENDS_perl-module-extutils-constant-base += "perl-module-text-wrap" | 517 | RDEPENDS:perl-module-extutils-constant-base += "perl-module-text-wrap" |
518 | RDEPENDS_perl-module-extutils-constant-base += "perl-module-vars" | 518 | RDEPENDS:perl-module-extutils-constant-base += "perl-module-vars" |
519 | RDEPENDS_perl-module-extutils-constant += "perl-module-exporter" | 519 | RDEPENDS:perl-module-extutils-constant += "perl-module-exporter" |
520 | RDEPENDS_perl-module-extutils-constant += "perl-module-extutils-constant-proxysubs" | 520 | RDEPENDS:perl-module-extutils-constant += "perl-module-extutils-constant-proxysubs" |
521 | RDEPENDS_perl-module-extutils-constant += "perl-module-extutils-constant-utils" | 521 | RDEPENDS:perl-module-extutils-constant += "perl-module-extutils-constant-utils" |
522 | RDEPENDS_perl-module-extutils-constant += "perl-module-extutils-constant-xs" | 522 | RDEPENDS:perl-module-extutils-constant += "perl-module-extutils-constant-xs" |
523 | RDEPENDS_perl-module-extutils-constant += "perl-module-filehandle" | 523 | RDEPENDS:perl-module-extutils-constant += "perl-module-filehandle" |
524 | RDEPENDS_perl-module-extutils-constant += "perl-module-strict" | 524 | RDEPENDS:perl-module-extutils-constant += "perl-module-strict" |
525 | RDEPENDS_perl-module-extutils-constant += "perl-module-vars" | 525 | RDEPENDS:perl-module-extutils-constant += "perl-module-vars" |
526 | RDEPENDS_perl-module-extutils-constant-proxysubs += "perl-module-extutils-constant-utils" | 526 | RDEPENDS:perl-module-extutils-constant-proxysubs += "perl-module-extutils-constant-utils" |
527 | RDEPENDS_perl-module-extutils-constant-proxysubs += "perl-module-extutils-constant-xs" | 527 | RDEPENDS:perl-module-extutils-constant-proxysubs += "perl-module-extutils-constant-xs" |
528 | RDEPENDS_perl-module-extutils-constant-proxysubs += "perl-module-strict" | 528 | RDEPENDS:perl-module-extutils-constant-proxysubs += "perl-module-strict" |
529 | RDEPENDS_perl-module-extutils-constant-proxysubs += "perl-module-vars" | 529 | RDEPENDS:perl-module-extutils-constant-proxysubs += "perl-module-vars" |
530 | RDEPENDS_perl-module-extutils-constant-utils += "perl-module-constant" | 530 | RDEPENDS:perl-module-extutils-constant-utils += "perl-module-constant" |
531 | RDEPENDS_perl-module-extutils-constant-utils += "perl-module-posix" | 531 | RDEPENDS:perl-module-extutils-constant-utils += "perl-module-posix" |
532 | RDEPENDS_perl-module-extutils-constant-utils += "perl-module-strict" | 532 | RDEPENDS:perl-module-extutils-constant-utils += "perl-module-strict" |
533 | RDEPENDS_perl-module-extutils-constant-utils += "perl-module-vars" | 533 | RDEPENDS:perl-module-extutils-constant-utils += "perl-module-vars" |
534 | RDEPENDS_perl-module-extutils-constant-xs += "perl-module-data-dumper" | 534 | RDEPENDS:perl-module-extutils-constant-xs += "perl-module-data-dumper" |
535 | RDEPENDS_perl-module-extutils-constant-xs += "perl-module-extutils-constant" | 535 | RDEPENDS:perl-module-extutils-constant-xs += "perl-module-extutils-constant" |
536 | RDEPENDS_perl-module-extutils-constant-xs += "perl-module-extutils-constant-base" | 536 | RDEPENDS:perl-module-extutils-constant-xs += "perl-module-extutils-constant-base" |
537 | RDEPENDS_perl-module-extutils-constant-xs += "perl-module-extutils-constant-utils" | 537 | RDEPENDS:perl-module-extutils-constant-xs += "perl-module-extutils-constant-utils" |
538 | RDEPENDS_perl-module-extutils-constant-xs += "perl-module-strict" | 538 | RDEPENDS:perl-module-extutils-constant-xs += "perl-module-strict" |
539 | RDEPENDS_perl-module-extutils-constant-xs += "perl-module-vars" | 539 | RDEPENDS:perl-module-extutils-constant-xs += "perl-module-vars" |
540 | RDEPENDS_perl-module-extutils-embed += "perl-module-config" | 540 | RDEPENDS:perl-module-extutils-embed += "perl-module-config" |
541 | RDEPENDS_perl-module-extutils-embed += "perl-module-exporter" | 541 | RDEPENDS:perl-module-extutils-embed += "perl-module-exporter" |
542 | RDEPENDS_perl-module-extutils-embed += "perl-module-extutils-liblist" | 542 | RDEPENDS:perl-module-extutils-embed += "perl-module-extutils-liblist" |
543 | RDEPENDS_perl-module-extutils-embed += "perl-module-extutils-makemaker" | 543 | RDEPENDS:perl-module-extutils-embed += "perl-module-extutils-makemaker" |
544 | RDEPENDS_perl-module-extutils-embed += "perl-module-getopt-std" | 544 | RDEPENDS:perl-module-extutils-embed += "perl-module-getopt-std" |
545 | RDEPENDS_perl-module-extutils-embed += "perl-module-strict" | 545 | RDEPENDS:perl-module-extutils-embed += "perl-module-strict" |
546 | RDEPENDS_perl-module-extutils-installed += "perl-module-config" | 546 | RDEPENDS:perl-module-extutils-installed += "perl-module-config" |
547 | RDEPENDS_perl-module-extutils-installed += "perl-module-data-dumper" | 547 | RDEPENDS:perl-module-extutils-installed += "perl-module-data-dumper" |
548 | RDEPENDS_perl-module-extutils-installed += "perl-module-extutils-makemaker" | 548 | RDEPENDS:perl-module-extutils-installed += "perl-module-extutils-makemaker" |
549 | RDEPENDS_perl-module-extutils-installed += "perl-module-extutils-packlist" | 549 | RDEPENDS:perl-module-extutils-installed += "perl-module-extutils-packlist" |
550 | RDEPENDS_perl-module-extutils-installed += "perl-module-file-basename" | 550 | RDEPENDS:perl-module-extutils-installed += "perl-module-file-basename" |
551 | RDEPENDS_perl-module-extutils-installed += "perl-module-file-find" | 551 | RDEPENDS:perl-module-extutils-installed += "perl-module-file-find" |
552 | RDEPENDS_perl-module-extutils-installed += "perl-module-strict" | 552 | RDEPENDS:perl-module-extutils-installed += "perl-module-strict" |
553 | RDEPENDS_perl-module-extutils-installed += "perl-module-vars" | 553 | RDEPENDS:perl-module-extutils-installed += "perl-module-vars" |
554 | RDEPENDS_perl-module-extutils-install += "perl-module-autosplit" | 554 | RDEPENDS:perl-module-extutils-install += "perl-module-autosplit" |
555 | RDEPENDS_perl-module-extutils-install += "perl-module-config" | 555 | RDEPENDS:perl-module-extutils-install += "perl-module-config" |
556 | RDEPENDS_perl-module-extutils-install += "perl-module-cwd" | 556 | RDEPENDS:perl-module-extutils-install += "perl-module-cwd" |
557 | RDEPENDS_perl-module-extutils-install += "perl-module-exporter" | 557 | RDEPENDS:perl-module-extutils-install += "perl-module-exporter" |
558 | RDEPENDS_perl-module-extutils-install += "perl-module-extutils-packlist" | 558 | RDEPENDS:perl-module-extutils-install += "perl-module-extutils-packlist" |
559 | RDEPENDS_perl-module-extutils-install += "perl-module-file-basename" | 559 | RDEPENDS:perl-module-extutils-install += "perl-module-file-basename" |
560 | RDEPENDS_perl-module-extutils-install += "perl-module-file-compare" | 560 | RDEPENDS:perl-module-extutils-install += "perl-module-file-compare" |
561 | RDEPENDS_perl-module-extutils-install += "perl-module-file-copy" | 561 | RDEPENDS:perl-module-extutils-install += "perl-module-file-copy" |
562 | RDEPENDS_perl-module-extutils-install += "perl-module-file-find" | 562 | RDEPENDS:perl-module-extutils-install += "perl-module-file-find" |
563 | RDEPENDS_perl-module-extutils-install += "perl-module-file-path" | 563 | RDEPENDS:perl-module-extutils-install += "perl-module-file-path" |
564 | RDEPENDS_perl-module-extutils-install += "perl-module-strict" | 564 | RDEPENDS:perl-module-extutils-install += "perl-module-strict" |
565 | RDEPENDS_perl-module-extutils-liblist-kid += "perl-module-cwd" | 565 | RDEPENDS:perl-module-extutils-liblist-kid += "perl-module-cwd" |
566 | RDEPENDS_perl-module-extutils-liblist-kid += "perl-module-extutils-makemaker-config" | 566 | RDEPENDS:perl-module-extutils-liblist-kid += "perl-module-extutils-makemaker-config" |
567 | RDEPENDS_perl-module-extutils-liblist-kid += "perl-module-file-basename" | 567 | RDEPENDS:perl-module-extutils-liblist-kid += "perl-module-file-basename" |
568 | RDEPENDS_perl-module-extutils-liblist-kid += "perl-module-strict" | 568 | RDEPENDS:perl-module-extutils-liblist-kid += "perl-module-strict" |
569 | RDEPENDS_perl-module-extutils-liblist-kid += "perl-module-text-parsewords" | 569 | RDEPENDS:perl-module-extutils-liblist-kid += "perl-module-text-parsewords" |
570 | RDEPENDS_perl-module-extutils-liblist-kid += "perl-module-warnings" | 570 | RDEPENDS:perl-module-extutils-liblist-kid += "perl-module-warnings" |
571 | RDEPENDS_perl-module-extutils-liblist += "perl-module-extutils-liblist-kid" | 571 | RDEPENDS:perl-module-extutils-liblist += "perl-module-extutils-liblist-kid" |
572 | RDEPENDS_perl-module-extutils-liblist += "perl-module-strict" | 572 | RDEPENDS:perl-module-extutils-liblist += "perl-module-strict" |
573 | RDEPENDS_perl-module-extutils-makemaker-config += "perl-module-config" | 573 | RDEPENDS:perl-module-extutils-makemaker-config += "perl-module-config" |
574 | RDEPENDS_perl-module-extutils-makemaker-config += "perl-module-strict" | 574 | RDEPENDS:perl-module-extutils-makemaker-config += "perl-module-strict" |
575 | RDEPENDS_perl-module-extutils-makemaker-locale += "perl-module-base" | 575 | RDEPENDS:perl-module-extutils-makemaker-locale += "perl-module-base" |
576 | RDEPENDS_perl-module-extutils-makemaker-locale += "perl-module-encode" | 576 | RDEPENDS:perl-module-extutils-makemaker-locale += "perl-module-encode" |
577 | RDEPENDS_perl-module-extutils-makemaker-locale += "perl-module-encode-alias" | 577 | RDEPENDS:perl-module-extutils-makemaker-locale += "perl-module-encode-alias" |
578 | RDEPENDS_perl-module-extutils-makemaker-locale += "perl-module-i18n-langinfo" | 578 | RDEPENDS:perl-module-extutils-makemaker-locale += "perl-module-i18n-langinfo" |
579 | RDEPENDS_perl-module-extutils-makemaker-locale += "perl-module-strict" | 579 | RDEPENDS:perl-module-extutils-makemaker-locale += "perl-module-strict" |
580 | RDEPENDS_perl-module-extutils-makemaker += "perl-module-b" | 580 | RDEPENDS:perl-module-extutils-makemaker += "perl-module-b" |
581 | RDEPENDS_perl-module-extutils-makemaker += "perl-module-cpan" | 581 | RDEPENDS:perl-module-extutils-makemaker += "perl-module-cpan" |
582 | RDEPENDS_perl-module-extutils-makemaker += "perl-module-cwd" | 582 | RDEPENDS:perl-module-extutils-makemaker += "perl-module-cwd" |
583 | RDEPENDS_perl-module-extutils-makemaker += "perl-module-exporter" | 583 | RDEPENDS:perl-module-extutils-makemaker += "perl-module-exporter" |
584 | RDEPENDS_perl-module-extutils-makemaker += "perl-module-extutils-makemaker-config" | 584 | RDEPENDS:perl-module-extutils-makemaker += "perl-module-extutils-makemaker-config" |
585 | RDEPENDS_perl-module-extutils-makemaker += "perl-module-extutils-makemaker-version" | 585 | RDEPENDS:perl-module-extutils-makemaker += "perl-module-extutils-makemaker-version" |
586 | RDEPENDS_perl-module-extutils-makemaker += "perl-module-extutils-manifest" | 586 | RDEPENDS:perl-module-extutils-makemaker += "perl-module-extutils-manifest" |
587 | RDEPENDS_perl-module-extutils-makemaker += "perl-module-extutils-mm" | 587 | RDEPENDS:perl-module-extutils-makemaker += "perl-module-extutils-mm" |
588 | RDEPENDS_perl-module-extutils-makemaker += "perl-module-extutils-my" | 588 | RDEPENDS:perl-module-extutils-makemaker += "perl-module-extutils-my" |
589 | RDEPENDS_perl-module-extutils-makemaker += "perl-module-file-path" | 589 | RDEPENDS:perl-module-extutils-makemaker += "perl-module-file-path" |
590 | RDEPENDS_perl-module-extutils-makemaker += "perl-module-strict" | 590 | RDEPENDS:perl-module-extutils-makemaker += "perl-module-strict" |
591 | RDEPENDS_perl-module-extutils-makemaker += "perl-module-version" | 591 | RDEPENDS:perl-module-extutils-makemaker += "perl-module-version" |
592 | RDEPENDS_perl-module-extutils-makemaker-version += "perl-module-strict" | 592 | RDEPENDS:perl-module-extutils-makemaker-version += "perl-module-strict" |
593 | RDEPENDS_perl-module-extutils-makemaker-version += "perl-module-vars" | 593 | RDEPENDS:perl-module-extutils-makemaker-version += "perl-module-vars" |
594 | RDEPENDS_perl-module-extutils-manifest += "perl-module-config" | 594 | RDEPENDS:perl-module-extutils-manifest += "perl-module-config" |
595 | RDEPENDS_perl-module-extutils-manifest += "perl-module-exporter" | 595 | RDEPENDS:perl-module-extutils-manifest += "perl-module-exporter" |
596 | RDEPENDS_perl-module-extutils-manifest += "perl-module-file-basename" | 596 | RDEPENDS:perl-module-extutils-manifest += "perl-module-file-basename" |
597 | RDEPENDS_perl-module-extutils-manifest += "perl-module-file-copy" | 597 | RDEPENDS:perl-module-extutils-manifest += "perl-module-file-copy" |
598 | RDEPENDS_perl-module-extutils-manifest += "perl-module-file-find" | 598 | RDEPENDS:perl-module-extutils-manifest += "perl-module-file-find" |
599 | RDEPENDS_perl-module-extutils-manifest += "perl-module-file-path" | 599 | RDEPENDS:perl-module-extutils-manifest += "perl-module-file-path" |
600 | RDEPENDS_perl-module-extutils-manifest += "perl-module-strict" | 600 | RDEPENDS:perl-module-extutils-manifest += "perl-module-strict" |
601 | RDEPENDS_perl-module-extutils-manifest += "perl-module-warnings" | 601 | RDEPENDS:perl-module-extutils-manifest += "perl-module-warnings" |
602 | RDEPENDS_perl-module-extutils-miniperl += "perl-module-exporter" | 602 | RDEPENDS:perl-module-extutils-miniperl += "perl-module-exporter" |
603 | RDEPENDS_perl-module-extutils-miniperl += "perl-module-extutils-embed" | 603 | RDEPENDS:perl-module-extutils-miniperl += "perl-module-extutils-embed" |
604 | RDEPENDS_perl-module-extutils-miniperl += "perl-module-strict" | 604 | RDEPENDS:perl-module-extutils-miniperl += "perl-module-strict" |
605 | RDEPENDS_perl-module-extutils-mkbootstrap += "perl-module-config" | 605 | RDEPENDS:perl-module-extutils-mkbootstrap += "perl-module-config" |
606 | RDEPENDS_perl-module-extutils-mkbootstrap += "perl-module-dynaloader" | 606 | RDEPENDS:perl-module-extutils-mkbootstrap += "perl-module-dynaloader" |
607 | RDEPENDS_perl-module-extutils-mkbootstrap += "perl-module-exporter" | 607 | RDEPENDS:perl-module-extutils-mkbootstrap += "perl-module-exporter" |
608 | RDEPENDS_perl-module-extutils-mkbootstrap += "perl-module-strict" | 608 | RDEPENDS:perl-module-extutils-mkbootstrap += "perl-module-strict" |
609 | RDEPENDS_perl-module-extutils-mksymlists += "perl-module-config" | 609 | RDEPENDS:perl-module-extutils-mksymlists += "perl-module-config" |
610 | RDEPENDS_perl-module-extutils-mksymlists += "perl-module-exporter" | 610 | RDEPENDS:perl-module-extutils-mksymlists += "perl-module-exporter" |
611 | RDEPENDS_perl-module-extutils-mksymlists += "perl-module-strict" | 611 | RDEPENDS:perl-module-extutils-mksymlists += "perl-module-strict" |
612 | RDEPENDS_perl-module-extutils-mm-aix += "perl-module-extutils-makemaker-config" | 612 | RDEPENDS:perl-module-extutils-mm-aix += "perl-module-extutils-makemaker-config" |
613 | RDEPENDS_perl-module-extutils-mm-aix += "perl-module-extutils-mm-unix" | 613 | RDEPENDS:perl-module-extutils-mm-aix += "perl-module-extutils-mm-unix" |
614 | RDEPENDS_perl-module-extutils-mm-aix += "perl-module-strict" | 614 | RDEPENDS:perl-module-extutils-mm-aix += "perl-module-strict" |
615 | RDEPENDS_perl-module-extutils-mm-any += "perl-module-autosplit" | 615 | RDEPENDS:perl-module-extutils-mm-any += "perl-module-autosplit" |
616 | RDEPENDS_perl-module-extutils-mm-any += "perl-module-cpan" | 616 | RDEPENDS:perl-module-extutils-mm-any += "perl-module-cpan" |
617 | RDEPENDS_perl-module-extutils-mm-any += "perl-module-data-dumper" | 617 | RDEPENDS:perl-module-extutils-mm-any += "perl-module-data-dumper" |
618 | RDEPENDS_perl-module-extutils-mm-any += "perl-module-extutils-makemaker" | 618 | RDEPENDS:perl-module-extutils-mm-any += "perl-module-extutils-makemaker" |
619 | RDEPENDS_perl-module-extutils-mm-any += "perl-module-extutils-makemaker-config" | 619 | RDEPENDS:perl-module-extutils-mm-any += "perl-module-extutils-makemaker-config" |
620 | RDEPENDS_perl-module-extutils-mm-any += "perl-module-file-basename" | 620 | RDEPENDS:perl-module-extutils-mm-any += "perl-module-file-basename" |
621 | RDEPENDS_perl-module-extutils-mm-any += "perl-module-file-find" | 621 | RDEPENDS:perl-module-extutils-mm-any += "perl-module-file-find" |
622 | RDEPENDS_perl-module-extutils-mm-any += "perl-module-strict" | 622 | RDEPENDS:perl-module-extutils-mm-any += "perl-module-strict" |
623 | RDEPENDS_perl-module-extutils-mm-any += "perl-module-version" | 623 | RDEPENDS:perl-module-extutils-mm-any += "perl-module-version" |
624 | RDEPENDS_perl-module-extutils-mm-beos += "perl-module-extutils-makemaker-config" | 624 | RDEPENDS:perl-module-extutils-mm-beos += "perl-module-extutils-makemaker-config" |
625 | RDEPENDS_perl-module-extutils-mm-beos += "perl-module-extutils-mm-any" | 625 | RDEPENDS:perl-module-extutils-mm-beos += "perl-module-extutils-mm-any" |
626 | RDEPENDS_perl-module-extutils-mm-beos += "perl-module-extutils-mm-unix" | 626 | RDEPENDS:perl-module-extutils-mm-beos += "perl-module-extutils-mm-unix" |
627 | RDEPENDS_perl-module-extutils-mm-beos += "perl-module-strict" | 627 | RDEPENDS:perl-module-extutils-mm-beos += "perl-module-strict" |
628 | RDEPENDS_perl-module-extutils-mm-cygwin += "perl-module-extutils-makemaker-config" | 628 | RDEPENDS:perl-module-extutils-mm-cygwin += "perl-module-extutils-makemaker-config" |
629 | RDEPENDS_perl-module-extutils-mm-cygwin += "perl-module-extutils-mm-unix" | 629 | RDEPENDS:perl-module-extutils-mm-cygwin += "perl-module-extutils-mm-unix" |
630 | RDEPENDS_perl-module-extutils-mm-cygwin += "perl-module-extutils-mm-win32" | 630 | RDEPENDS:perl-module-extutils-mm-cygwin += "perl-module-extutils-mm-win32" |
631 | RDEPENDS_perl-module-extutils-mm-cygwin += "perl-module-strict" | 631 | RDEPENDS:perl-module-extutils-mm-cygwin += "perl-module-strict" |
632 | RDEPENDS_perl-module-extutils-mm-darwin += "perl-module-extutils-mm-unix" | 632 | RDEPENDS:perl-module-extutils-mm-darwin += "perl-module-extutils-mm-unix" |
633 | RDEPENDS_perl-module-extutils-mm-darwin += "perl-module-strict" | 633 | RDEPENDS:perl-module-extutils-mm-darwin += "perl-module-strict" |
634 | RDEPENDS_perl-module-extutils-mm-dos += "perl-module-extutils-mm-any" | 634 | RDEPENDS:perl-module-extutils-mm-dos += "perl-module-extutils-mm-any" |
635 | RDEPENDS_perl-module-extutils-mm-dos += "perl-module-extutils-mm-unix" | 635 | RDEPENDS:perl-module-extutils-mm-dos += "perl-module-extutils-mm-unix" |
636 | RDEPENDS_perl-module-extutils-mm-dos += "perl-module-strict" | 636 | RDEPENDS:perl-module-extutils-mm-dos += "perl-module-strict" |
637 | RDEPENDS_perl-module-extutils-mm-macos += "perl-module-strict" | 637 | RDEPENDS:perl-module-extutils-mm-macos += "perl-module-strict" |
638 | RDEPENDS_perl-module-extutils-mm-nw5 += "perl-module-extutils-makemaker" | 638 | RDEPENDS:perl-module-extutils-mm-nw5 += "perl-module-extutils-makemaker" |
639 | RDEPENDS_perl-module-extutils-mm-nw5 += "perl-module-extutils-makemaker-config" | 639 | RDEPENDS:perl-module-extutils-mm-nw5 += "perl-module-extutils-makemaker-config" |
640 | RDEPENDS_perl-module-extutils-mm-nw5 += "perl-module-extutils-mm-win32" | 640 | RDEPENDS:perl-module-extutils-mm-nw5 += "perl-module-extutils-mm-win32" |
641 | RDEPENDS_perl-module-extutils-mm-nw5 += "perl-module-file-basename" | 641 | RDEPENDS:perl-module-extutils-mm-nw5 += "perl-module-file-basename" |
642 | RDEPENDS_perl-module-extutils-mm-nw5 += "perl-module-strict" | 642 | RDEPENDS:perl-module-extutils-mm-nw5 += "perl-module-strict" |
643 | RDEPENDS_perl-module-extutils-mm-os2 += "perl-module-extutils-makemaker" | 643 | RDEPENDS:perl-module-extutils-mm-os2 += "perl-module-extutils-makemaker" |
644 | RDEPENDS_perl-module-extutils-mm-os2 += "perl-module-extutils-mm-any" | 644 | RDEPENDS:perl-module-extutils-mm-os2 += "perl-module-extutils-mm-any" |
645 | RDEPENDS_perl-module-extutils-mm-os2 += "perl-module-extutils-mm-unix" | 645 | RDEPENDS:perl-module-extutils-mm-os2 += "perl-module-extutils-mm-unix" |
646 | RDEPENDS_perl-module-extutils-mm-os2 += "perl-module-strict" | 646 | RDEPENDS:perl-module-extutils-mm-os2 += "perl-module-strict" |
647 | RDEPENDS_perl-module-extutils-mm += "perl-module-extutils-liblist" | 647 | RDEPENDS:perl-module-extutils-mm += "perl-module-extutils-liblist" |
648 | RDEPENDS_perl-module-extutils-mm += "perl-module-extutils-makemaker" | 648 | RDEPENDS:perl-module-extutils-mm += "perl-module-extutils-makemaker" |
649 | RDEPENDS_perl-module-extutils-mm += "perl-module-extutils-makemaker-config" | 649 | RDEPENDS:perl-module-extutils-mm += "perl-module-extutils-makemaker-config" |
650 | RDEPENDS_perl-module-extutils-mm += "perl-module-strict" | 650 | RDEPENDS:perl-module-extutils-mm += "perl-module-strict" |
651 | RDEPENDS_perl-module-extutils-mm-qnx += "perl-module-extutils-mm-unix" | 651 | RDEPENDS:perl-module-extutils-mm-qnx += "perl-module-extutils-mm-unix" |
652 | RDEPENDS_perl-module-extutils-mm-qnx += "perl-module-strict" | 652 | RDEPENDS:perl-module-extutils-mm-qnx += "perl-module-strict" |
653 | RDEPENDS_perl-module-extutils-mm-unix += "perl-module-cwd" | 653 | RDEPENDS:perl-module-extutils-mm-unix += "perl-module-cwd" |
654 | RDEPENDS_perl-module-extutils-mm-unix += "perl-module-encode" | 654 | RDEPENDS:perl-module-extutils-mm-unix += "perl-module-encode" |
655 | RDEPENDS_perl-module-extutils-mm-unix += "perl-module-extutils-liblist" | 655 | RDEPENDS:perl-module-extutils-mm-unix += "perl-module-extutils-liblist" |
656 | RDEPENDS_perl-module-extutils-mm-unix += "perl-module-extutils-makemaker" | 656 | RDEPENDS:perl-module-extutils-mm-unix += "perl-module-extutils-makemaker" |
657 | RDEPENDS_perl-module-extutils-mm-unix += "perl-module-extutils-makemaker-config" | 657 | RDEPENDS:perl-module-extutils-mm-unix += "perl-module-extutils-makemaker-config" |
658 | RDEPENDS_perl-module-extutils-mm-unix += "perl-module-extutils-mm-any" | 658 | RDEPENDS:perl-module-extutils-mm-unix += "perl-module-extutils-mm-any" |
659 | RDEPENDS_perl-module-extutils-mm-unix += "perl-module-file-basename" | 659 | RDEPENDS:perl-module-extutils-mm-unix += "perl-module-file-basename" |
660 | RDEPENDS_perl-module-extutils-mm-unix += "perl-module-file-find" | 660 | RDEPENDS:perl-module-extutils-mm-unix += "perl-module-file-find" |
661 | RDEPENDS_perl-module-extutils-mm-unix += "perl-module-strict" | 661 | RDEPENDS:perl-module-extutils-mm-unix += "perl-module-strict" |
662 | RDEPENDS_perl-module-extutils-mm-unix += "perl-module-vars" | 662 | RDEPENDS:perl-module-extutils-mm-unix += "perl-module-vars" |
663 | RDEPENDS_perl-module-extutils-mm-unix += "perl-module-version" | 663 | RDEPENDS:perl-module-extutils-mm-unix += "perl-module-version" |
664 | RDEPENDS_perl-module-extutils-mm-uwin += "perl-module-extutils-mm-unix" | 664 | RDEPENDS:perl-module-extutils-mm-uwin += "perl-module-extutils-mm-unix" |
665 | RDEPENDS_perl-module-extutils-mm-uwin += "perl-module-strict" | 665 | RDEPENDS:perl-module-extutils-mm-uwin += "perl-module-strict" |
666 | RDEPENDS_perl-module-extutils-mm-vms += "perl-module-exporter" | 666 | RDEPENDS:perl-module-extutils-mm-vms += "perl-module-exporter" |
667 | RDEPENDS_perl-module-extutils-mm-vms += "perl-module-extutils-liblist-kid" | 667 | RDEPENDS:perl-module-extutils-mm-vms += "perl-module-extutils-liblist-kid" |
668 | RDEPENDS_perl-module-extutils-mm-vms += "perl-module-extutils-makemaker" | 668 | RDEPENDS:perl-module-extutils-mm-vms += "perl-module-extutils-makemaker" |
669 | RDEPENDS_perl-module-extutils-mm-vms += "perl-module-extutils-makemaker-config" | 669 | RDEPENDS:perl-module-extutils-mm-vms += "perl-module-extutils-makemaker-config" |
670 | RDEPENDS_perl-module-extutils-mm-vms += "perl-module-extutils-mm-any" | 670 | RDEPENDS:perl-module-extutils-mm-vms += "perl-module-extutils-mm-any" |
671 | RDEPENDS_perl-module-extutils-mm-vms += "perl-module-extutils-mm-unix" | 671 | RDEPENDS:perl-module-extutils-mm-vms += "perl-module-extutils-mm-unix" |
672 | RDEPENDS_perl-module-extutils-mm-vms += "perl-module-file-basename" | 672 | RDEPENDS:perl-module-extutils-mm-vms += "perl-module-file-basename" |
673 | RDEPENDS_perl-module-extutils-mm-vms += "perl-module-file-find" | 673 | RDEPENDS:perl-module-extutils-mm-vms += "perl-module-file-find" |
674 | RDEPENDS_perl-module-extutils-mm-vms += "perl-module-strict" | 674 | RDEPENDS:perl-module-extutils-mm-vms += "perl-module-strict" |
675 | RDEPENDS_perl-module-extutils-mm-vos += "perl-module-extutils-mm-unix" | 675 | RDEPENDS:perl-module-extutils-mm-vos += "perl-module-extutils-mm-unix" |
676 | RDEPENDS_perl-module-extutils-mm-vos += "perl-module-strict" | 676 | RDEPENDS:perl-module-extutils-mm-vos += "perl-module-strict" |
677 | RDEPENDS_perl-module-extutils-mm-win32 += "perl-module-extutils-makemaker" | 677 | RDEPENDS:perl-module-extutils-mm-win32 += "perl-module-extutils-makemaker" |
678 | RDEPENDS_perl-module-extutils-mm-win32 += "perl-module-extutils-makemaker-config" | 678 | RDEPENDS:perl-module-extutils-mm-win32 += "perl-module-extutils-makemaker-config" |
679 | RDEPENDS_perl-module-extutils-mm-win32 += "perl-module-extutils-mm-any" | 679 | RDEPENDS:perl-module-extutils-mm-win32 += "perl-module-extutils-mm-any" |
680 | RDEPENDS_perl-module-extutils-mm-win32 += "perl-module-extutils-mm-unix" | 680 | RDEPENDS:perl-module-extutils-mm-win32 += "perl-module-extutils-mm-unix" |
681 | RDEPENDS_perl-module-extutils-mm-win32 += "perl-module-file-basename" | 681 | RDEPENDS:perl-module-extutils-mm-win32 += "perl-module-file-basename" |
682 | RDEPENDS_perl-module-extutils-mm-win32 += "perl-module-strict" | 682 | RDEPENDS:perl-module-extutils-mm-win32 += "perl-module-strict" |
683 | RDEPENDS_perl-module-extutils-mm-win95 += "perl-module-extutils-makemaker-config" | 683 | RDEPENDS:perl-module-extutils-mm-win95 += "perl-module-extutils-makemaker-config" |
684 | RDEPENDS_perl-module-extutils-mm-win95 += "perl-module-extutils-mm-win32" | 684 | RDEPENDS:perl-module-extutils-mm-win95 += "perl-module-extutils-mm-win32" |
685 | RDEPENDS_perl-module-extutils-mm-win95 += "perl-module-strict" | 685 | RDEPENDS:perl-module-extutils-mm-win95 += "perl-module-strict" |
686 | RDEPENDS_perl-module-extutils-my += "perl-module-extutils-mm" | 686 | RDEPENDS:perl-module-extutils-my += "perl-module-extutils-mm" |
687 | RDEPENDS_perl-module-extutils-my += "perl-module-strict" | 687 | RDEPENDS:perl-module-extutils-my += "perl-module-strict" |
688 | RDEPENDS_perl-module-extutils-packlist += "perl-module-config" | 688 | RDEPENDS:perl-module-extutils-packlist += "perl-module-config" |
689 | RDEPENDS_perl-module-extutils-packlist += "perl-module-cwd" | 689 | RDEPENDS:perl-module-extutils-packlist += "perl-module-cwd" |
690 | RDEPENDS_perl-module-extutils-packlist += "perl-module-strict" | 690 | RDEPENDS:perl-module-extutils-packlist += "perl-module-strict" |
691 | RDEPENDS_perl-module-extutils-packlist += "perl-module-vars" | 691 | RDEPENDS:perl-module-extutils-packlist += "perl-module-vars" |
692 | RDEPENDS_perl-module-extutils-parsexs-constants += "perl-module-strict" | 692 | RDEPENDS:perl-module-extutils-parsexs-constants += "perl-module-strict" |
693 | RDEPENDS_perl-module-extutils-parsexs-constants += "perl-module-warnings" | 693 | RDEPENDS:perl-module-extutils-parsexs-constants += "perl-module-warnings" |
694 | RDEPENDS_perl-module-extutils-parsexs-countlines += "perl-module-strict" | 694 | RDEPENDS:perl-module-extutils-parsexs-countlines += "perl-module-strict" |
695 | RDEPENDS_perl-module-extutils-parsexs-eval += "perl-module-strict" | 695 | RDEPENDS:perl-module-extutils-parsexs-eval += "perl-module-strict" |
696 | RDEPENDS_perl-module-extutils-parsexs-eval += "perl-module-warnings" | 696 | RDEPENDS:perl-module-extutils-parsexs-eval += "perl-module-warnings" |
697 | RDEPENDS_perl-module-extutils-parsexs += "perl-module-config" | 697 | RDEPENDS:perl-module-extutils-parsexs += "perl-module-config" |
698 | RDEPENDS_perl-module-extutils-parsexs += "perl-module-cwd" | 698 | RDEPENDS:perl-module-extutils-parsexs += "perl-module-cwd" |
699 | RDEPENDS_perl-module-extutils-parsexs += "perl-module-exporter" | 699 | RDEPENDS:perl-module-extutils-parsexs += "perl-module-exporter" |
700 | RDEPENDS_perl-module-extutils-parsexs += "perl-module-extutils-parsexs-constants" | 700 | RDEPENDS:perl-module-extutils-parsexs += "perl-module-extutils-parsexs-constants" |
701 | RDEPENDS_perl-module-extutils-parsexs += "perl-module-extutils-parsexs-countlines" | 701 | RDEPENDS:perl-module-extutils-parsexs += "perl-module-extutils-parsexs-countlines" |
702 | RDEPENDS_perl-module-extutils-parsexs += "perl-module-extutils-parsexs-eval" | 702 | RDEPENDS:perl-module-extutils-parsexs += "perl-module-extutils-parsexs-eval" |
703 | RDEPENDS_perl-module-extutils-parsexs += "perl-module-extutils-parsexs-utilities" | 703 | RDEPENDS:perl-module-extutils-parsexs += "perl-module-extutils-parsexs-utilities" |
704 | RDEPENDS_perl-module-extutils-parsexs += "perl-module-file-basename" | 704 | RDEPENDS:perl-module-extutils-parsexs += "perl-module-file-basename" |
705 | RDEPENDS_perl-module-extutils-parsexs += "perl-module-re" | 705 | RDEPENDS:perl-module-extutils-parsexs += "perl-module-re" |
706 | RDEPENDS_perl-module-extutils-parsexs += "perl-module-strict" | 706 | RDEPENDS:perl-module-extutils-parsexs += "perl-module-strict" |
707 | RDEPENDS_perl-module-extutils-parsexs-utilities += "perl-module-exporter" | 707 | RDEPENDS:perl-module-extutils-parsexs-utilities += "perl-module-exporter" |
708 | RDEPENDS_perl-module-extutils-parsexs-utilities += "perl-module-extutils-parsexs-constants" | 708 | RDEPENDS:perl-module-extutils-parsexs-utilities += "perl-module-extutils-parsexs-constants" |
709 | RDEPENDS_perl-module-extutils-parsexs-utilities += "perl-module-extutils-typemaps" | 709 | RDEPENDS:perl-module-extutils-parsexs-utilities += "perl-module-extutils-typemaps" |
710 | RDEPENDS_perl-module-extutils-parsexs-utilities += "perl-module-strict" | 710 | RDEPENDS:perl-module-extutils-parsexs-utilities += "perl-module-strict" |
711 | RDEPENDS_perl-module-extutils-parsexs-utilities += "perl-module-warnings" | 711 | RDEPENDS:perl-module-extutils-parsexs-utilities += "perl-module-warnings" |
712 | RDEPENDS_perl-module-extutils-testlib += "perl-module-cwd" | 712 | RDEPENDS:perl-module-extutils-testlib += "perl-module-cwd" |
713 | RDEPENDS_perl-module-extutils-testlib += "perl-module-lib" | 713 | RDEPENDS:perl-module-extutils-testlib += "perl-module-lib" |
714 | RDEPENDS_perl-module-extutils-testlib += "perl-module-strict" | 714 | RDEPENDS:perl-module-extutils-testlib += "perl-module-strict" |
715 | RDEPENDS_perl-module-extutils-testlib += "perl-module-warnings" | 715 | RDEPENDS:perl-module-extutils-testlib += "perl-module-warnings" |
716 | RDEPENDS_perl-module-extutils-typemaps-cmd += "perl-module-exporter" | 716 | RDEPENDS:perl-module-extutils-typemaps-cmd += "perl-module-exporter" |
717 | RDEPENDS_perl-module-extutils-typemaps-cmd += "perl-module-extutils-typemaps" | 717 | RDEPENDS:perl-module-extutils-typemaps-cmd += "perl-module-extutils-typemaps" |
718 | RDEPENDS_perl-module-extutils-typemaps-cmd += "perl-module-strict" | 718 | RDEPENDS:perl-module-extutils-typemaps-cmd += "perl-module-strict" |
719 | RDEPENDS_perl-module-extutils-typemaps-cmd += "perl-module-warnings" | 719 | RDEPENDS:perl-module-extutils-typemaps-cmd += "perl-module-warnings" |
720 | RDEPENDS_perl-module-extutils-typemaps-inputmap += "perl-module-strict" | 720 | RDEPENDS:perl-module-extutils-typemaps-inputmap += "perl-module-strict" |
721 | RDEPENDS_perl-module-extutils-typemaps-inputmap += "perl-module-warnings" | 721 | RDEPENDS:perl-module-extutils-typemaps-inputmap += "perl-module-warnings" |
722 | RDEPENDS_perl-module-extutils-typemaps-outputmap += "perl-module-re" | 722 | RDEPENDS:perl-module-extutils-typemaps-outputmap += "perl-module-re" |
723 | RDEPENDS_perl-module-extutils-typemaps-outputmap += "perl-module-strict" | 723 | RDEPENDS:perl-module-extutils-typemaps-outputmap += "perl-module-strict" |
724 | RDEPENDS_perl-module-extutils-typemaps-outputmap += "perl-module-warnings" | 724 | RDEPENDS:perl-module-extutils-typemaps-outputmap += "perl-module-warnings" |
725 | RDEPENDS_perl-module-extutils-typemaps += "perl-module-extutils-parsexs" | 725 | RDEPENDS:perl-module-extutils-typemaps += "perl-module-extutils-parsexs" |
726 | RDEPENDS_perl-module-extutils-typemaps += "perl-module-extutils-parsexs-constants" | 726 | RDEPENDS:perl-module-extutils-typemaps += "perl-module-extutils-parsexs-constants" |
727 | RDEPENDS_perl-module-extutils-typemaps += "perl-module-extutils-typemaps-inputmap" | 727 | RDEPENDS:perl-module-extutils-typemaps += "perl-module-extutils-typemaps-inputmap" |
728 | RDEPENDS_perl-module-extutils-typemaps += "perl-module-extutils-typemaps-outputmap" | 728 | RDEPENDS:perl-module-extutils-typemaps += "perl-module-extutils-typemaps-outputmap" |
729 | RDEPENDS_perl-module-extutils-typemaps += "perl-module-extutils-typemaps-type" | 729 | RDEPENDS:perl-module-extutils-typemaps += "perl-module-extutils-typemaps-type" |
730 | RDEPENDS_perl-module-extutils-typemaps += "perl-module-strict" | 730 | RDEPENDS:perl-module-extutils-typemaps += "perl-module-strict" |
731 | RDEPENDS_perl-module-extutils-typemaps += "perl-module-warnings" | 731 | RDEPENDS:perl-module-extutils-typemaps += "perl-module-warnings" |
732 | RDEPENDS_perl-module-extutils-typemaps-type += "perl-module-extutils-typemaps" | 732 | RDEPENDS:perl-module-extutils-typemaps-type += "perl-module-extutils-typemaps" |
733 | RDEPENDS_perl-module-extutils-typemaps-type += "perl-module-strict" | 733 | RDEPENDS:perl-module-extutils-typemaps-type += "perl-module-strict" |
734 | RDEPENDS_perl-module-extutils-typemaps-type += "perl-module-warnings" | 734 | RDEPENDS:perl-module-extutils-typemaps-type += "perl-module-warnings" |
735 | RDEPENDS_perl-module-fatal += "perl-module-autodie" | 735 | RDEPENDS:perl-module-fatal += "perl-module-autodie" |
736 | RDEPENDS_perl-module-fatal += "perl-module-autodie-exception-system" | 736 | RDEPENDS:perl-module-fatal += "perl-module-autodie-exception-system" |
737 | RDEPENDS_perl-module-fatal += "perl-module-autodie-hints" | 737 | RDEPENDS:perl-module-fatal += "perl-module-autodie-hints" |
738 | RDEPENDS_perl-module-fatal += "perl-module-autodie-util" | 738 | RDEPENDS:perl-module-fatal += "perl-module-autodie-util" |
739 | RDEPENDS_perl-module-fatal += "perl-module-config" | 739 | RDEPENDS:perl-module-fatal += "perl-module-config" |
740 | RDEPENDS_perl-module-fatal += "perl-module-constant" | 740 | RDEPENDS:perl-module-fatal += "perl-module-constant" |
741 | RDEPENDS_perl-module-fatal += "perl-module-fcntl" | 741 | RDEPENDS:perl-module-fatal += "perl-module-fcntl" |
742 | RDEPENDS_perl-module-fatal += "perl-module-posix" | 742 | RDEPENDS:perl-module-fatal += "perl-module-posix" |
743 | RDEPENDS_perl-module-fatal += "perl-module-strict" | 743 | RDEPENDS:perl-module-fatal += "perl-module-strict" |
744 | RDEPENDS_perl-module-fatal += "perl-module-tie-refhash" | 744 | RDEPENDS:perl-module-fatal += "perl-module-tie-refhash" |
745 | RDEPENDS_perl-module-fatal += "perl-module-warnings" | 745 | RDEPENDS:perl-module-fatal += "perl-module-warnings" |
746 | RDEPENDS_perl-module-fcntl += "perl-module-exporter" | 746 | RDEPENDS:perl-module-fcntl += "perl-module-exporter" |
747 | RDEPENDS_perl-module-fcntl += "perl-module-strict" | 747 | RDEPENDS:perl-module-fcntl += "perl-module-strict" |
748 | RDEPENDS_perl-module-fcntl += "perl-module-xsloader" | 748 | RDEPENDS:perl-module-fcntl += "perl-module-xsloader" |
749 | RDEPENDS_perl-module-fields += "perl-module-base" | 749 | RDEPENDS:perl-module-fields += "perl-module-base" |
750 | RDEPENDS_perl-module-fields += "perl-module-hash-util" | 750 | RDEPENDS:perl-module-fields += "perl-module-hash-util" |
751 | RDEPENDS_perl-module-fields += "perl-module-strict" | 751 | RDEPENDS:perl-module-fields += "perl-module-strict" |
752 | RDEPENDS_perl-module-file-basename += "perl-module-exporter" | 752 | RDEPENDS:perl-module-file-basename += "perl-module-exporter" |
753 | RDEPENDS_perl-module-file-basename += "perl-module-re" | 753 | RDEPENDS:perl-module-file-basename += "perl-module-re" |
754 | RDEPENDS_perl-module-file-basename += "perl-module-strict" | 754 | RDEPENDS:perl-module-file-basename += "perl-module-strict" |
755 | RDEPENDS_perl-module-file-basename += "perl-module-warnings" | 755 | RDEPENDS:perl-module-file-basename += "perl-module-warnings" |
756 | RDEPENDS_perl-module-filecache += "perl-module-parent" | 756 | RDEPENDS:perl-module-filecache += "perl-module-parent" |
757 | RDEPENDS_perl-module-filecache += "perl-module-strict" | 757 | RDEPENDS:perl-module-filecache += "perl-module-strict" |
758 | RDEPENDS_perl-module-file-compare += "perl-module-exporter" | 758 | RDEPENDS:perl-module-file-compare += "perl-module-exporter" |
759 | RDEPENDS_perl-module-file-compare += "perl-module-strict" | 759 | RDEPENDS:perl-module-file-compare += "perl-module-strict" |
760 | RDEPENDS_perl-module-file-compare += "perl-module-warnings" | 760 | RDEPENDS:perl-module-file-compare += "perl-module-warnings" |
761 | RDEPENDS_perl-module-file-copy += "perl-module-config" | 761 | RDEPENDS:perl-module-file-copy += "perl-module-config" |
762 | RDEPENDS_perl-module-file-copy += "perl-module-exporter" | 762 | RDEPENDS:perl-module-file-copy += "perl-module-exporter" |
763 | RDEPENDS_perl-module-file-copy += "perl-module-file-basename" | 763 | RDEPENDS:perl-module-file-copy += "perl-module-file-basename" |
764 | RDEPENDS_perl-module-file-copy += "perl-module-strict" | 764 | RDEPENDS:perl-module-file-copy += "perl-module-strict" |
765 | RDEPENDS_perl-module-file-copy += "perl-module-warnings" | 765 | RDEPENDS:perl-module-file-copy += "perl-module-warnings" |
766 | RDEPENDS_perl-module-file-dosglob += "perl-module-strict" | 766 | RDEPENDS:perl-module-file-dosglob += "perl-module-strict" |
767 | RDEPENDS_perl-module-file-dosglob += "perl-module-text-parsewords" | 767 | RDEPENDS:perl-module-file-dosglob += "perl-module-text-parsewords" |
768 | RDEPENDS_perl-module-file-dosglob += "perl-module-warnings" | 768 | RDEPENDS:perl-module-file-dosglob += "perl-module-warnings" |
769 | RDEPENDS_perl-module-file-dosglob += "perl-module-xsloader" | 769 | RDEPENDS:perl-module-file-dosglob += "perl-module-xsloader" |
770 | RDEPENDS_perl-module-file-fetch += "perl-module-constant" | 770 | RDEPENDS:perl-module-file-fetch += "perl-module-constant" |
771 | RDEPENDS_perl-module-file-fetch += "perl-module-cwd" | 771 | RDEPENDS:perl-module-file-fetch += "perl-module-cwd" |
772 | RDEPENDS_perl-module-file-fetch += "perl-module-file-basename" | 772 | RDEPENDS:perl-module-file-fetch += "perl-module-file-basename" |
773 | RDEPENDS_perl-module-file-fetch += "perl-module-file-copy" | 773 | RDEPENDS:perl-module-file-fetch += "perl-module-file-copy" |
774 | RDEPENDS_perl-module-file-fetch += "perl-module-filehandle" | 774 | RDEPENDS:perl-module-file-fetch += "perl-module-filehandle" |
775 | RDEPENDS_perl-module-file-fetch += "perl-module-file-path" | 775 | RDEPENDS:perl-module-file-fetch += "perl-module-file-path" |
776 | RDEPENDS_perl-module-file-fetch += "perl-module-file-temp" | 776 | RDEPENDS:perl-module-file-fetch += "perl-module-file-temp" |
777 | RDEPENDS_perl-module-file-fetch += "perl-module-ipc-cmd" | 777 | RDEPENDS:perl-module-file-fetch += "perl-module-ipc-cmd" |
778 | RDEPENDS_perl-module-file-fetch += "perl-module-locale-maketext-simple" | 778 | RDEPENDS:perl-module-file-fetch += "perl-module-locale-maketext-simple" |
779 | RDEPENDS_perl-module-file-fetch += "perl-module-load" | 779 | RDEPENDS:perl-module-file-fetch += "perl-module-load" |
780 | RDEPENDS_perl-module-file-fetch += "perl-module-params-check" | 780 | RDEPENDS:perl-module-file-fetch += "perl-module-params-check" |
781 | RDEPENDS_perl-module-file-fetch += "perl-module-strict" | 781 | RDEPENDS:perl-module-file-fetch += "perl-module-strict" |
782 | RDEPENDS_perl-module-file-fetch += "perl-module-vars" | 782 | RDEPENDS:perl-module-file-fetch += "perl-module-vars" |
783 | RDEPENDS_perl-module-file-find += "perl-module-cwd" | 783 | RDEPENDS:perl-module-file-find += "perl-module-cwd" |
784 | RDEPENDS_perl-module-file-find += "perl-module-exporter" | 784 | RDEPENDS:perl-module-file-find += "perl-module-exporter" |
785 | RDEPENDS_perl-module-file-find += "perl-module-file-basename" | 785 | RDEPENDS:perl-module-file-find += "perl-module-file-basename" |
786 | RDEPENDS_perl-module-file-find += "perl-module-strict" | 786 | RDEPENDS:perl-module-file-find += "perl-module-strict" |
787 | RDEPENDS_perl-module-file-find += "perl-module-warnings" | 787 | RDEPENDS:perl-module-file-find += "perl-module-warnings" |
788 | RDEPENDS_perl-module-file-find += "perl-module-warnings-register" | 788 | RDEPENDS:perl-module-file-find += "perl-module-warnings-register" |
789 | RDEPENDS_perl-module-file-globmapper += "perl-module-file-glob" | 789 | RDEPENDS:perl-module-file-globmapper += "perl-module-file-glob" |
790 | RDEPENDS_perl-module-file-globmapper += "perl-module-strict" | 790 | RDEPENDS:perl-module-file-globmapper += "perl-module-strict" |
791 | RDEPENDS_perl-module-file-globmapper += "perl-module-warnings" | 791 | RDEPENDS:perl-module-file-globmapper += "perl-module-warnings" |
792 | RDEPENDS_perl-module-file-glob += "perl-module-exporter" | 792 | RDEPENDS:perl-module-file-glob += "perl-module-exporter" |
793 | RDEPENDS_perl-module-file-glob += "perl-module-strict" | 793 | RDEPENDS:perl-module-file-glob += "perl-module-strict" |
794 | RDEPENDS_perl-module-file-glob += "perl-module-xsloader" | 794 | RDEPENDS:perl-module-file-glob += "perl-module-xsloader" |
795 | RDEPENDS_perl-module-filehandle += "perl-module-exporter" | 795 | RDEPENDS:perl-module-filehandle += "perl-module-exporter" |
796 | RDEPENDS_perl-module-filehandle += "perl-module-fcntl" | 796 | RDEPENDS:perl-module-filehandle += "perl-module-fcntl" |
797 | RDEPENDS_perl-module-filehandle += "perl-module-io-file" | 797 | RDEPENDS:perl-module-filehandle += "perl-module-io-file" |
798 | RDEPENDS_perl-module-filehandle += "perl-module-strict" | 798 | RDEPENDS:perl-module-filehandle += "perl-module-strict" |
799 | RDEPENDS_perl-module-file-path += "perl-module-cwd" | 799 | RDEPENDS:perl-module-file-path += "perl-module-cwd" |
800 | RDEPENDS_perl-module-file-path += "perl-module-exporter" | 800 | RDEPENDS:perl-module-file-path += "perl-module-exporter" |
801 | RDEPENDS_perl-module-file-path += "perl-module-file-basename" | 801 | RDEPENDS:perl-module-file-path += "perl-module-file-basename" |
802 | RDEPENDS_perl-module-file-path += "perl-module-strict" | 802 | RDEPENDS:perl-module-file-path += "perl-module-strict" |
803 | RDEPENDS_perl-module-file-path += "perl-module-vars" | 803 | RDEPENDS:perl-module-file-path += "perl-module-vars" |
804 | RDEPENDS_perl-module-file-stat += "perl-module-class-struct" | 804 | RDEPENDS:perl-module-file-stat += "perl-module-class-struct" |
805 | RDEPENDS_perl-module-file-stat += "perl-module-constant" | 805 | RDEPENDS:perl-module-file-stat += "perl-module-constant" |
806 | RDEPENDS_perl-module-file-stat += "perl-module-exporter" | 806 | RDEPENDS:perl-module-file-stat += "perl-module-exporter" |
807 | RDEPENDS_perl-module-file-stat += "perl-module-fcntl" | 807 | RDEPENDS:perl-module-file-stat += "perl-module-fcntl" |
808 | RDEPENDS_perl-module-file-stat += "perl-module-overload " | 808 | RDEPENDS:perl-module-file-stat += "perl-module-overload " |
809 | RDEPENDS_perl-module-file-stat += "perl-module-strict" | 809 | RDEPENDS:perl-module-file-stat += "perl-module-strict" |
810 | RDEPENDS_perl-module-file-stat += "perl-module-warnings" | 810 | RDEPENDS:perl-module-file-stat += "perl-module-warnings" |
811 | RDEPENDS_perl-module-file-stat += "perl-module-warnings-register" | 811 | RDEPENDS:perl-module-file-stat += "perl-module-warnings-register" |
812 | RDEPENDS_perl-module-file-temp += "perl-module-constant" | 812 | RDEPENDS:perl-module-file-temp += "perl-module-constant" |
813 | RDEPENDS_perl-module-file-temp += "perl-module-cwd" | 813 | RDEPENDS:perl-module-file-temp += "perl-module-cwd" |
814 | RDEPENDS_perl-module-file-temp += "perl-module-errno" | 814 | RDEPENDS:perl-module-file-temp += "perl-module-errno" |
815 | RDEPENDS_perl-module-file-temp += "perl-module-exporter" | 815 | RDEPENDS:perl-module-file-temp += "perl-module-exporter" |
816 | RDEPENDS_perl-module-file-temp += "perl-module-fcntl" | 816 | RDEPENDS:perl-module-file-temp += "perl-module-fcntl" |
817 | RDEPENDS_perl-module-file-temp += "perl-module-file-path" | 817 | RDEPENDS:perl-module-file-temp += "perl-module-file-path" |
818 | RDEPENDS_perl-module-file-temp += "perl-module-io-seekable" | 818 | RDEPENDS:perl-module-file-temp += "perl-module-io-seekable" |
819 | RDEPENDS_perl-module-file-temp += "perl-module-overload" | 819 | RDEPENDS:perl-module-file-temp += "perl-module-overload" |
820 | RDEPENDS_perl-module-file-temp += "perl-module-parent" | 820 | RDEPENDS:perl-module-file-temp += "perl-module-parent" |
821 | RDEPENDS_perl-module-file-temp += "perl-module-posix" | 821 | RDEPENDS:perl-module-file-temp += "perl-module-posix" |
822 | RDEPENDS_perl-module-file-temp += "perl-module-strict" | 822 | RDEPENDS:perl-module-file-temp += "perl-module-strict" |
823 | RDEPENDS_perl-module-filter-simple += "perl-module-filter-util-call" | 823 | RDEPENDS:perl-module-filter-simple += "perl-module-filter-util-call" |
824 | RDEPENDS_perl-module-filter-simple += "perl-module-text-balanced" | 824 | RDEPENDS:perl-module-filter-simple += "perl-module-text-balanced" |
825 | RDEPENDS_perl-module-filter-util-call += "perl-module-exporter" | 825 | RDEPENDS:perl-module-filter-util-call += "perl-module-exporter" |
826 | RDEPENDS_perl-module-filter-util-call += "perl-module-strict" | 826 | RDEPENDS:perl-module-filter-util-call += "perl-module-strict" |
827 | RDEPENDS_perl-module-filter-util-call += "perl-module-warnings" | 827 | RDEPENDS:perl-module-filter-util-call += "perl-module-warnings" |
828 | RDEPENDS_perl-module-filter-util-call += "perl-module-xsloader" | 828 | RDEPENDS:perl-module-filter-util-call += "perl-module-xsloader" |
829 | RDEPENDS_perl-module-findbin += "perl-module-cwd" | 829 | RDEPENDS:perl-module-findbin += "perl-module-cwd" |
830 | RDEPENDS_perl-module-findbin += "perl-module-exporter" | 830 | RDEPENDS:perl-module-findbin += "perl-module-exporter" |
831 | RDEPENDS_perl-module-findbin += "perl-module-file-basename" | 831 | RDEPENDS:perl-module-findbin += "perl-module-file-basename" |
832 | RDEPENDS_perl-module-gdbm-file += "perl-module-exporter" | 832 | RDEPENDS:perl-module-gdbm-file += "perl-module-exporter" |
833 | RDEPENDS_perl-module-gdbm-file += "perl-module-strict" | 833 | RDEPENDS:perl-module-gdbm-file += "perl-module-strict" |
834 | RDEPENDS_perl-module-gdbm-file += "perl-module-tie-hash" | 834 | RDEPENDS:perl-module-gdbm-file += "perl-module-tie-hash" |
835 | RDEPENDS_perl-module-gdbm-file += "perl-module-warnings" | 835 | RDEPENDS:perl-module-gdbm-file += "perl-module-warnings" |
836 | RDEPENDS_perl-module-gdbm-file += "perl-module-xsloader" | 836 | RDEPENDS:perl-module-gdbm-file += "perl-module-xsloader" |
837 | RDEPENDS_perl-module-getopt-long += "perl-module-constant" | 837 | RDEPENDS:perl-module-getopt-long += "perl-module-constant" |
838 | RDEPENDS_perl-module-getopt-long += "perl-module-exporter" | 838 | RDEPENDS:perl-module-getopt-long += "perl-module-exporter" |
839 | RDEPENDS_perl-module-getopt-long += "perl-module-overload" | 839 | RDEPENDS:perl-module-getopt-long += "perl-module-overload" |
840 | RDEPENDS_perl-module-getopt-long += "perl-module-pod-usage" | 840 | RDEPENDS:perl-module-getopt-long += "perl-module-pod-usage" |
841 | RDEPENDS_perl-module-getopt-long += "perl-module-strict" | 841 | RDEPENDS:perl-module-getopt-long += "perl-module-strict" |
842 | RDEPENDS_perl-module-getopt-long += "perl-module-text-parsewords" | 842 | RDEPENDS:perl-module-getopt-long += "perl-module-text-parsewords" |
843 | RDEPENDS_perl-module-getopt-long += "perl-module-vars" | 843 | RDEPENDS:perl-module-getopt-long += "perl-module-vars" |
844 | RDEPENDS_perl-module-getopt-long += "perl-module-warnings" | 844 | RDEPENDS:perl-module-getopt-long += "perl-module-warnings" |
845 | RDEPENDS_perl-module-getopt-std += "perl-module-exporter" | 845 | RDEPENDS:perl-module-getopt-std += "perl-module-exporter" |
846 | RDEPENDS_perl-module-hash-util-fieldhash += "perl-module-exporter" | 846 | RDEPENDS:perl-module-hash-util-fieldhash += "perl-module-exporter" |
847 | RDEPENDS_perl-module-hash-util-fieldhash += "perl-module-strict" | 847 | RDEPENDS:perl-module-hash-util-fieldhash += "perl-module-strict" |
848 | RDEPENDS_perl-module-hash-util-fieldhash += "perl-module-warnings" | 848 | RDEPENDS:perl-module-hash-util-fieldhash += "perl-module-warnings" |
849 | RDEPENDS_perl-module-hash-util-fieldhash += "perl-module-xsloader" | 849 | RDEPENDS:perl-module-hash-util-fieldhash += "perl-module-xsloader" |
850 | RDEPENDS_perl-module-hash-util += "perl-module-exporter" | 850 | RDEPENDS:perl-module-hash-util += "perl-module-exporter" |
851 | RDEPENDS_perl-module-hash-util += "perl-module-hash-util-fieldhash" | 851 | RDEPENDS:perl-module-hash-util += "perl-module-hash-util-fieldhash" |
852 | RDEPENDS_perl-module-hash-util += "perl-module-strict" | 852 | RDEPENDS:perl-module-hash-util += "perl-module-strict" |
853 | RDEPENDS_perl-module-hash-util += "perl-module-warnings" | 853 | RDEPENDS:perl-module-hash-util += "perl-module-warnings" |
854 | RDEPENDS_perl-module-hash-util += "perl-module-warnings-register" | 854 | RDEPENDS:perl-module-hash-util += "perl-module-warnings-register" |
855 | RDEPENDS_perl-module-hash-util += "perl-module-xsloader" | 855 | RDEPENDS:perl-module-hash-util += "perl-module-xsloader" |
856 | RDEPENDS_perl-module-i18n-collate += "perl-module-exporter" | 856 | RDEPENDS:perl-module-i18n-collate += "perl-module-exporter" |
857 | RDEPENDS_perl-module-i18n-collate += "perl-module-overload" | 857 | RDEPENDS:perl-module-i18n-collate += "perl-module-overload" |
858 | RDEPENDS_perl-module-i18n-collate += "perl-module-posix" | 858 | RDEPENDS:perl-module-i18n-collate += "perl-module-posix" |
859 | RDEPENDS_perl-module-i18n-collate += "perl-module-strict" | 859 | RDEPENDS:perl-module-i18n-collate += "perl-module-strict" |
860 | RDEPENDS_perl-module-i18n-collate += "perl-module-warnings-register" | 860 | RDEPENDS:perl-module-i18n-collate += "perl-module-warnings-register" |
861 | RDEPENDS_perl-module-i18n-langinfo += "perl-module-exporter" | 861 | RDEPENDS:perl-module-i18n-langinfo += "perl-module-exporter" |
862 | RDEPENDS_perl-module-i18n-langinfo += "perl-module-strict" | 862 | RDEPENDS:perl-module-i18n-langinfo += "perl-module-strict" |
863 | RDEPENDS_perl-module-i18n-langinfo += "perl-module-warnings" | 863 | RDEPENDS:perl-module-i18n-langinfo += "perl-module-warnings" |
864 | RDEPENDS_perl-module-i18n-langinfo += "perl-module-xsloader" | 864 | RDEPENDS:perl-module-i18n-langinfo += "perl-module-xsloader" |
865 | RDEPENDS_perl-module-i18n-langtags-detect += "perl-module-i18n-langtags" | 865 | RDEPENDS:perl-module-i18n-langtags-detect += "perl-module-i18n-langtags" |
866 | RDEPENDS_perl-module-i18n-langtags-detect += "perl-module-strict" | 866 | RDEPENDS:perl-module-i18n-langtags-detect += "perl-module-strict" |
867 | RDEPENDS_perl-module-i18n-langtags-list += "perl-module-strict" | 867 | RDEPENDS:perl-module-i18n-langtags-list += "perl-module-strict" |
868 | RDEPENDS_perl-module-i18n-langtags += "perl-module-exporter" | 868 | RDEPENDS:perl-module-i18n-langtags += "perl-module-exporter" |
869 | RDEPENDS_perl-module-i18n-langtags += "perl-module-strict" | 869 | RDEPENDS:perl-module-i18n-langtags += "perl-module-strict" |
870 | RDEPENDS_perl-module-io-compress-adapter-bzip2 += "perl-module-bytes" | 870 | RDEPENDS:perl-module-io-compress-adapter-bzip2 += "perl-module-bytes" |
871 | RDEPENDS_perl-module-io-compress-adapter-bzip2 += "perl-module-compress-raw-bzip2" | 871 | RDEPENDS:perl-module-io-compress-adapter-bzip2 += "perl-module-compress-raw-bzip2" |
872 | RDEPENDS_perl-module-io-compress-adapter-bzip2 += "perl-module-io-compress-base-common" | 872 | RDEPENDS:perl-module-io-compress-adapter-bzip2 += "perl-module-io-compress-base-common" |
873 | RDEPENDS_perl-module-io-compress-adapter-bzip2 += "perl-module-strict" | 873 | RDEPENDS:perl-module-io-compress-adapter-bzip2 += "perl-module-strict" |
874 | RDEPENDS_perl-module-io-compress-adapter-bzip2 += "perl-module-warnings" | 874 | RDEPENDS:perl-module-io-compress-adapter-bzip2 += "perl-module-warnings" |
875 | RDEPENDS_perl-module-io-compress-adapter-deflate += "perl-module-bytes" | 875 | RDEPENDS:perl-module-io-compress-adapter-deflate += "perl-module-bytes" |
876 | RDEPENDS_perl-module-io-compress-adapter-deflate += "perl-module-compress-raw-zlib" | 876 | RDEPENDS:perl-module-io-compress-adapter-deflate += "perl-module-compress-raw-zlib" |
877 | RDEPENDS_perl-module-io-compress-adapter-deflate += "perl-module-exporter" | 877 | RDEPENDS:perl-module-io-compress-adapter-deflate += "perl-module-exporter" |
878 | RDEPENDS_perl-module-io-compress-adapter-deflate += "perl-module-io-compress-base-common" | 878 | RDEPENDS:perl-module-io-compress-adapter-deflate += "perl-module-io-compress-base-common" |
879 | RDEPENDS_perl-module-io-compress-adapter-deflate += "perl-module-strict" | 879 | RDEPENDS:perl-module-io-compress-adapter-deflate += "perl-module-strict" |
880 | RDEPENDS_perl-module-io-compress-adapter-deflate += "perl-module-warnings" | 880 | RDEPENDS:perl-module-io-compress-adapter-deflate += "perl-module-warnings" |
881 | RDEPENDS_perl-module-io-compress-adapter-identity += "perl-module-bytes" | 881 | RDEPENDS:perl-module-io-compress-adapter-identity += "perl-module-bytes" |
882 | RDEPENDS_perl-module-io-compress-adapter-identity += "perl-module-io-compress-base-common" | 882 | RDEPENDS:perl-module-io-compress-adapter-identity += "perl-module-io-compress-base-common" |
883 | RDEPENDS_perl-module-io-compress-adapter-identity += "perl-module-strict" | 883 | RDEPENDS:perl-module-io-compress-adapter-identity += "perl-module-strict" |
884 | RDEPENDS_perl-module-io-compress-adapter-identity += "perl-module-warnings" | 884 | RDEPENDS:perl-module-io-compress-adapter-identity += "perl-module-warnings" |
885 | RDEPENDS_perl-module-io-compress-base-common += "perl-module-bytes" | 885 | RDEPENDS:perl-module-io-compress-base-common += "perl-module-bytes" |
886 | RDEPENDS_perl-module-io-compress-base-common += "perl-module-constant" | 886 | RDEPENDS:perl-module-io-compress-base-common += "perl-module-constant" |
887 | RDEPENDS_perl-module-io-compress-base-common += "perl-module-encode" | 887 | RDEPENDS:perl-module-io-compress-base-common += "perl-module-encode" |
888 | RDEPENDS_perl-module-io-compress-base-common += "perl-module-exporter" | 888 | RDEPENDS:perl-module-io-compress-base-common += "perl-module-exporter" |
889 | RDEPENDS_perl-module-io-compress-base-common += "perl-module-file-globmapper" | 889 | RDEPENDS:perl-module-io-compress-base-common += "perl-module-file-globmapper" |
890 | RDEPENDS_perl-module-io-compress-base-common += "perl-module-strict " | 890 | RDEPENDS:perl-module-io-compress-base-common += "perl-module-strict " |
891 | RDEPENDS_perl-module-io-compress-base-common += "perl-module-strict" | 891 | RDEPENDS:perl-module-io-compress-base-common += "perl-module-strict" |
892 | RDEPENDS_perl-module-io-compress-base-common += "perl-module-utf8" | 892 | RDEPENDS:perl-module-io-compress-base-common += "perl-module-utf8" |
893 | RDEPENDS_perl-module-io-compress-base-common += "perl-module-warnings" | 893 | RDEPENDS:perl-module-io-compress-base-common += "perl-module-warnings" |
894 | RDEPENDS_perl-module-io-compress-base += "perl-module-io-compress-base-common" | 894 | RDEPENDS:perl-module-io-compress-base += "perl-module-io-compress-base-common" |
895 | RDEPENDS_perl-module-io-compress-base += "perl-module-io-file" | 895 | RDEPENDS:perl-module-io-compress-base += "perl-module-io-file" |
896 | RDEPENDS_perl-module-io-compress-base += "perl-module-io-handle " | 896 | RDEPENDS:perl-module-io-compress-base += "perl-module-io-handle " |
897 | RDEPENDS_perl-module-io-compress-base += "perl-module-strict " | 897 | RDEPENDS:perl-module-io-compress-base += "perl-module-strict " |
898 | RDEPENDS_perl-module-io-compress-base += "perl-module-warnings" | 898 | RDEPENDS:perl-module-io-compress-base += "perl-module-warnings" |
899 | RDEPENDS_perl-module-io-compress-bzip2 += "perl-module-bytes" | 899 | RDEPENDS:perl-module-io-compress-bzip2 += "perl-module-bytes" |
900 | RDEPENDS_perl-module-io-compress-bzip2 += "perl-module-exporter " | 900 | RDEPENDS:perl-module-io-compress-bzip2 += "perl-module-exporter " |
901 | RDEPENDS_perl-module-io-compress-bzip2 += "perl-module-io-compress-adapter-bzip2" | 901 | RDEPENDS:perl-module-io-compress-bzip2 += "perl-module-io-compress-adapter-bzip2" |
902 | RDEPENDS_perl-module-io-compress-bzip2 += "perl-module-io-compress-base" | 902 | RDEPENDS:perl-module-io-compress-bzip2 += "perl-module-io-compress-base" |
903 | RDEPENDS_perl-module-io-compress-bzip2 += "perl-module-io-compress-base-common" | 903 | RDEPENDS:perl-module-io-compress-bzip2 += "perl-module-io-compress-base-common" |
904 | RDEPENDS_perl-module-io-compress-bzip2 += "perl-module-strict " | 904 | RDEPENDS:perl-module-io-compress-bzip2 += "perl-module-strict " |
905 | RDEPENDS_perl-module-io-compress-bzip2 += "perl-module-warnings" | 905 | RDEPENDS:perl-module-io-compress-bzip2 += "perl-module-warnings" |
906 | RDEPENDS_perl-module-io-compress-deflate += "perl-module-bytes" | 906 | RDEPENDS:perl-module-io-compress-deflate += "perl-module-bytes" |
907 | RDEPENDS_perl-module-io-compress-deflate += "perl-module-exporter " | 907 | RDEPENDS:perl-module-io-compress-deflate += "perl-module-exporter " |
908 | RDEPENDS_perl-module-io-compress-deflate += "perl-module-io-compress-adapter-deflate" | 908 | RDEPENDS:perl-module-io-compress-deflate += "perl-module-io-compress-adapter-deflate" |
909 | RDEPENDS_perl-module-io-compress-deflate += "perl-module-io-compress-base-common" | 909 | RDEPENDS:perl-module-io-compress-deflate += "perl-module-io-compress-base-common" |
910 | RDEPENDS_perl-module-io-compress-deflate += "perl-module-io-compress-rawdeflate" | 910 | RDEPENDS:perl-module-io-compress-deflate += "perl-module-io-compress-rawdeflate" |
911 | RDEPENDS_perl-module-io-compress-deflate += "perl-module-io-compress-zlib-constants" | 911 | RDEPENDS:perl-module-io-compress-deflate += "perl-module-io-compress-zlib-constants" |
912 | RDEPENDS_perl-module-io-compress-deflate += "perl-module-strict " | 912 | RDEPENDS:perl-module-io-compress-deflate += "perl-module-strict " |
913 | RDEPENDS_perl-module-io-compress-deflate += "perl-module-warnings" | 913 | RDEPENDS:perl-module-io-compress-deflate += "perl-module-warnings" |
914 | RDEPENDS_perl-module-io-compress-gzip-constants += "perl-module-bytes" | 914 | RDEPENDS:perl-module-io-compress-gzip-constants += "perl-module-bytes" |
915 | RDEPENDS_perl-module-io-compress-gzip-constants += "perl-module-constant" | 915 | RDEPENDS:perl-module-io-compress-gzip-constants += "perl-module-constant" |
916 | RDEPENDS_perl-module-io-compress-gzip-constants += "perl-module-exporter" | 916 | RDEPENDS:perl-module-io-compress-gzip-constants += "perl-module-exporter" |
917 | RDEPENDS_perl-module-io-compress-gzip-constants += "perl-module-strict " | 917 | RDEPENDS:perl-module-io-compress-gzip-constants += "perl-module-strict " |
918 | RDEPENDS_perl-module-io-compress-gzip-constants += "perl-module-warnings" | 918 | RDEPENDS:perl-module-io-compress-gzip-constants += "perl-module-warnings" |
919 | RDEPENDS_perl-module-io-compress-gzip += "perl-module-bytes" | 919 | RDEPENDS:perl-module-io-compress-gzip += "perl-module-bytes" |
920 | RDEPENDS_perl-module-io-compress-gzip += "perl-module-exporter " | 920 | RDEPENDS:perl-module-io-compress-gzip += "perl-module-exporter " |
921 | RDEPENDS_perl-module-io-compress-gzip += "perl-module-io-compress-adapter-deflate" | 921 | RDEPENDS:perl-module-io-compress-gzip += "perl-module-io-compress-adapter-deflate" |
922 | RDEPENDS_perl-module-io-compress-gzip += "perl-module-io-compress-base-common" | 922 | RDEPENDS:perl-module-io-compress-gzip += "perl-module-io-compress-base-common" |
923 | RDEPENDS_perl-module-io-compress-gzip += "perl-module-io-compress-gzip-constants" | 923 | RDEPENDS:perl-module-io-compress-gzip += "perl-module-io-compress-gzip-constants" |
924 | RDEPENDS_perl-module-io-compress-gzip += "perl-module-io-compress-rawdeflate" | 924 | RDEPENDS:perl-module-io-compress-gzip += "perl-module-io-compress-rawdeflate" |
925 | RDEPENDS_perl-module-io-compress-gzip += "perl-module-io-compress-zlib-extra" | 925 | RDEPENDS:perl-module-io-compress-gzip += "perl-module-io-compress-zlib-extra" |
926 | RDEPENDS_perl-module-io-compress-gzip += "perl-module-strict " | 926 | RDEPENDS:perl-module-io-compress-gzip += "perl-module-strict " |
927 | RDEPENDS_perl-module-io-compress-gzip += "perl-module-warnings" | 927 | RDEPENDS:perl-module-io-compress-gzip += "perl-module-warnings" |
928 | RDEPENDS_perl-module-io-compress-rawdeflate += "perl-module-bytes" | 928 | RDEPENDS:perl-module-io-compress-rawdeflate += "perl-module-bytes" |
929 | RDEPENDS_perl-module-io-compress-rawdeflate += "perl-module-compress-raw-zlib" | 929 | RDEPENDS:perl-module-io-compress-rawdeflate += "perl-module-compress-raw-zlib" |
930 | RDEPENDS_perl-module-io-compress-rawdeflate += "perl-module-exporter " | 930 | RDEPENDS:perl-module-io-compress-rawdeflate += "perl-module-exporter " |
931 | RDEPENDS_perl-module-io-compress-rawdeflate += "perl-module-fcntl" | 931 | RDEPENDS:perl-module-io-compress-rawdeflate += "perl-module-fcntl" |
932 | RDEPENDS_perl-module-io-compress-rawdeflate += "perl-module-io-compress-adapter-deflate" | 932 | RDEPENDS:perl-module-io-compress-rawdeflate += "perl-module-io-compress-adapter-deflate" |
933 | RDEPENDS_perl-module-io-compress-rawdeflate += "perl-module-io-compress-base" | 933 | RDEPENDS:perl-module-io-compress-rawdeflate += "perl-module-io-compress-base" |
934 | RDEPENDS_perl-module-io-compress-rawdeflate += "perl-module-io-compress-base-common" | 934 | RDEPENDS:perl-module-io-compress-rawdeflate += "perl-module-io-compress-base-common" |
935 | RDEPENDS_perl-module-io-compress-rawdeflate += "perl-module-strict " | 935 | RDEPENDS:perl-module-io-compress-rawdeflate += "perl-module-strict " |
936 | RDEPENDS_perl-module-io-compress-rawdeflate += "perl-module-warnings" | 936 | RDEPENDS:perl-module-io-compress-rawdeflate += "perl-module-warnings" |
937 | RDEPENDS_perl-module-io-compress-zip-constants += "perl-module-constant" | 937 | RDEPENDS:perl-module-io-compress-zip-constants += "perl-module-constant" |
938 | RDEPENDS_perl-module-io-compress-zip-constants += "perl-module-exporter" | 938 | RDEPENDS:perl-module-io-compress-zip-constants += "perl-module-exporter" |
939 | RDEPENDS_perl-module-io-compress-zip-constants += "perl-module-strict " | 939 | RDEPENDS:perl-module-io-compress-zip-constants += "perl-module-strict " |
940 | RDEPENDS_perl-module-io-compress-zip-constants += "perl-module-warnings" | 940 | RDEPENDS:perl-module-io-compress-zip-constants += "perl-module-warnings" |
941 | RDEPENDS_perl-module-io-compress-zip += "perl-module-bytes" | 941 | RDEPENDS:perl-module-io-compress-zip += "perl-module-bytes" |
942 | RDEPENDS_perl-module-io-compress-zip += "perl-module-compress-raw-zlib" | 942 | RDEPENDS:perl-module-io-compress-zip += "perl-module-compress-raw-zlib" |
943 | RDEPENDS_perl-module-io-compress-zip += "perl-module-config" | 943 | RDEPENDS:perl-module-io-compress-zip += "perl-module-config" |
944 | RDEPENDS_perl-module-io-compress-zip += "perl-module-exporter " | 944 | RDEPENDS:perl-module-io-compress-zip += "perl-module-exporter " |
945 | RDEPENDS_perl-module-io-compress-zip += "perl-module-fcntl" | 945 | RDEPENDS:perl-module-io-compress-zip += "perl-module-fcntl" |
946 | RDEPENDS_perl-module-io-compress-zip += "perl-module-io-compress-adapter-deflate" | 946 | RDEPENDS:perl-module-io-compress-zip += "perl-module-io-compress-adapter-deflate" |
947 | RDEPENDS_perl-module-io-compress-zip += "perl-module-io-compress-adapter-identity" | 947 | RDEPENDS:perl-module-io-compress-zip += "perl-module-io-compress-adapter-identity" |
948 | RDEPENDS_perl-module-io-compress-zip += "perl-module-io-compress-base-common" | 948 | RDEPENDS:perl-module-io-compress-zip += "perl-module-io-compress-base-common" |
949 | RDEPENDS_perl-module-io-compress-zip += "perl-module-io-compress-bzip2 " | 949 | RDEPENDS:perl-module-io-compress-zip += "perl-module-io-compress-bzip2 " |
950 | RDEPENDS_perl-module-io-compress-zip += "perl-module-io-compress-rawdeflate" | 950 | RDEPENDS:perl-module-io-compress-zip += "perl-module-io-compress-rawdeflate" |
951 | RDEPENDS_perl-module-io-compress-zip += "perl-module-io-compress-zip-constants" | 951 | RDEPENDS:perl-module-io-compress-zip += "perl-module-io-compress-zip-constants" |
952 | RDEPENDS_perl-module-io-compress-zip += "perl-module-io-compress-zlib-extra" | 952 | RDEPENDS:perl-module-io-compress-zip += "perl-module-io-compress-zlib-extra" |
953 | RDEPENDS_perl-module-io-compress-zip += "perl-module-strict " | 953 | RDEPENDS:perl-module-io-compress-zip += "perl-module-strict " |
954 | RDEPENDS_perl-module-io-compress-zip += "perl-module-warnings" | 954 | RDEPENDS:perl-module-io-compress-zip += "perl-module-warnings" |
955 | RDEPENDS_perl-module-io-compress-zlib-constants += "perl-module-bytes" | 955 | RDEPENDS:perl-module-io-compress-zlib-constants += "perl-module-bytes" |
956 | RDEPENDS_perl-module-io-compress-zlib-constants += "perl-module-constant" | 956 | RDEPENDS:perl-module-io-compress-zlib-constants += "perl-module-constant" |
957 | RDEPENDS_perl-module-io-compress-zlib-constants += "perl-module-exporter" | 957 | RDEPENDS:perl-module-io-compress-zlib-constants += "perl-module-exporter" |
958 | RDEPENDS_perl-module-io-compress-zlib-constants += "perl-module-strict " | 958 | RDEPENDS:perl-module-io-compress-zlib-constants += "perl-module-strict " |
959 | RDEPENDS_perl-module-io-compress-zlib-constants += "perl-module-warnings" | 959 | RDEPENDS:perl-module-io-compress-zlib-constants += "perl-module-warnings" |
960 | RDEPENDS_perl-module-io-compress-zlib-extra += "perl-module-bytes" | 960 | RDEPENDS:perl-module-io-compress-zlib-extra += "perl-module-bytes" |
961 | RDEPENDS_perl-module-io-compress-zlib-extra += "perl-module-io-compress-gzip-constants" | 961 | RDEPENDS:perl-module-io-compress-zlib-extra += "perl-module-io-compress-gzip-constants" |
962 | RDEPENDS_perl-module-io-compress-zlib-extra += "perl-module-strict " | 962 | RDEPENDS:perl-module-io-compress-zlib-extra += "perl-module-strict " |
963 | RDEPENDS_perl-module-io-compress-zlib-extra += "perl-module-warnings" | 963 | RDEPENDS:perl-module-io-compress-zlib-extra += "perl-module-warnings" |
964 | RDEPENDS_perl-module-io-dir += "perl-module-exporter" | 964 | RDEPENDS:perl-module-io-dir += "perl-module-exporter" |
965 | RDEPENDS_perl-module-io-dir += "perl-module-file-stat" | 965 | RDEPENDS:perl-module-io-dir += "perl-module-file-stat" |
966 | RDEPENDS_perl-module-io-dir += "perl-module-io-file" | 966 | RDEPENDS:perl-module-io-dir += "perl-module-io-file" |
967 | RDEPENDS_perl-module-io-dir += "perl-module-strict" | 967 | RDEPENDS:perl-module-io-dir += "perl-module-strict" |
968 | RDEPENDS_perl-module-io-dir += "perl-module-tie-hash" | 968 | RDEPENDS:perl-module-io-dir += "perl-module-tie-hash" |
969 | RDEPENDS_perl-module-io-file += "perl-module-exporter" | 969 | RDEPENDS:perl-module-io-file += "perl-module-exporter" |
970 | RDEPENDS_perl-module-io-file += "perl-module-fcntl" | 970 | RDEPENDS:perl-module-io-file += "perl-module-fcntl" |
971 | RDEPENDS_perl-module-io-file += "perl-module-io-seekable" | 971 | RDEPENDS:perl-module-io-file += "perl-module-io-seekable" |
972 | RDEPENDS_perl-module-io-file += "perl-module-selectsaver" | 972 | RDEPENDS:perl-module-io-file += "perl-module-selectsaver" |
973 | RDEPENDS_perl-module-io-file += "perl-module-strict" | 973 | RDEPENDS:perl-module-io-file += "perl-module-strict" |
974 | RDEPENDS_perl-module-io-handle += "perl-module-exporter" | 974 | RDEPENDS:perl-module-io-handle += "perl-module-exporter" |
975 | RDEPENDS_perl-module-io-handle += "perl-module-io" | 975 | RDEPENDS:perl-module-io-handle += "perl-module-io" |
976 | RDEPENDS_perl-module-io-handle += "perl-module-io-file" | 976 | RDEPENDS:perl-module-io-handle += "perl-module-io-file" |
977 | RDEPENDS_perl-module-io-handle += "perl-module-selectsaver" | 977 | RDEPENDS:perl-module-io-handle += "perl-module-selectsaver" |
978 | RDEPENDS_perl-module-io-handle += "perl-module-strict" | 978 | RDEPENDS:perl-module-io-handle += "perl-module-strict" |
979 | RDEPENDS_perl-module-io += "perl-module-strict" | 979 | RDEPENDS:perl-module-io += "perl-module-strict" |
980 | RDEPENDS_perl-module-io += "perl-module-warnings" | 980 | RDEPENDS:perl-module-io += "perl-module-warnings" |
981 | RDEPENDS_perl-module-io += "perl-module-xsloader" | 981 | RDEPENDS:perl-module-io += "perl-module-xsloader" |
982 | RDEPENDS_perl-module-io-pipe += "perl-module-fcntl" | 982 | RDEPENDS:perl-module-io-pipe += "perl-module-fcntl" |
983 | RDEPENDS_perl-module-io-pipe += "perl-module-io-handle" | 983 | RDEPENDS:perl-module-io-pipe += "perl-module-io-handle" |
984 | RDEPENDS_perl-module-io-pipe += "perl-module-strict" | 984 | RDEPENDS:perl-module-io-pipe += "perl-module-strict" |
985 | RDEPENDS_perl-module-io-poll += "perl-module-exporter" | 985 | RDEPENDS:perl-module-io-poll += "perl-module-exporter" |
986 | RDEPENDS_perl-module-io-poll += "perl-module-io-handle" | 986 | RDEPENDS:perl-module-io-poll += "perl-module-io-handle" |
987 | RDEPENDS_perl-module-io-poll += "perl-module-strict" | 987 | RDEPENDS:perl-module-io-poll += "perl-module-strict" |
988 | RDEPENDS_perl-module-io-seekable += "perl-module-exporter" | 988 | RDEPENDS:perl-module-io-seekable += "perl-module-exporter" |
989 | RDEPENDS_perl-module-io-seekable += "perl-module-fcntl" | 989 | RDEPENDS:perl-module-io-seekable += "perl-module-fcntl" |
990 | RDEPENDS_perl-module-io-seekable += "perl-module-io-handle" | 990 | RDEPENDS:perl-module-io-seekable += "perl-module-io-handle" |
991 | RDEPENDS_perl-module-io-seekable += "perl-module-strict" | 991 | RDEPENDS:perl-module-io-seekable += "perl-module-strict" |
992 | RDEPENDS_perl-module-io-select += "perl-module-exporter" | 992 | RDEPENDS:perl-module-io-select += "perl-module-exporter" |
993 | RDEPENDS_perl-module-io-select += "perl-module-strict" | 993 | RDEPENDS:perl-module-io-select += "perl-module-strict" |
994 | RDEPENDS_perl-module-io-select += "perl-module-warnings-register" | 994 | RDEPENDS:perl-module-io-select += "perl-module-warnings-register" |
995 | RDEPENDS_perl-module-io-socket-inet += "perl-module-errno" | 995 | RDEPENDS:perl-module-io-socket-inet += "perl-module-errno" |
996 | RDEPENDS_perl-module-io-socket-inet += "perl-module-exporter" | 996 | RDEPENDS:perl-module-io-socket-inet += "perl-module-exporter" |
997 | RDEPENDS_perl-module-io-socket-inet += "perl-module-io-socket" | 997 | RDEPENDS:perl-module-io-socket-inet += "perl-module-io-socket" |
998 | RDEPENDS_perl-module-io-socket-inet += "perl-module-socket" | 998 | RDEPENDS:perl-module-io-socket-inet += "perl-module-socket" |
999 | RDEPENDS_perl-module-io-socket-inet += "perl-module-strict" | 999 | RDEPENDS:perl-module-io-socket-inet += "perl-module-strict" |
1000 | RDEPENDS_perl-module-io-socket-ip += "perl-module-base" | 1000 | RDEPENDS:perl-module-io-socket-ip += "perl-module-base" |
1001 | RDEPENDS_perl-module-io-socket-ip += "perl-module-constant" | 1001 | RDEPENDS:perl-module-io-socket-ip += "perl-module-constant" |
1002 | RDEPENDS_perl-module-io-socket-ip += "perl-module-errno" | 1002 | RDEPENDS:perl-module-io-socket-ip += "perl-module-errno" |
1003 | RDEPENDS_perl-module-io-socket-ip += "perl-module-posix" | 1003 | RDEPENDS:perl-module-io-socket-ip += "perl-module-posix" |
1004 | RDEPENDS_perl-module-io-socket-ip += "perl-module-socket" | 1004 | RDEPENDS:perl-module-io-socket-ip += "perl-module-socket" |
1005 | RDEPENDS_perl-module-io-socket-ip += "perl-module-strict" | 1005 | RDEPENDS:perl-module-io-socket-ip += "perl-module-strict" |
1006 | RDEPENDS_perl-module-io-socket-ip += "perl-module-warnings" | 1006 | RDEPENDS:perl-module-io-socket-ip += "perl-module-warnings" |
1007 | RDEPENDS_perl-module-io-socket += "perl-module-errno" | 1007 | RDEPENDS:perl-module-io-socket += "perl-module-errno" |
1008 | RDEPENDS_perl-module-io-socket += "perl-module-exporter" | 1008 | RDEPENDS:perl-module-io-socket += "perl-module-exporter" |
1009 | RDEPENDS_perl-module-io-socket += "perl-module-io-handle" | 1009 | RDEPENDS:perl-module-io-socket += "perl-module-io-handle" |
1010 | RDEPENDS_perl-module-io-socket += "perl-module-io-select" | 1010 | RDEPENDS:perl-module-io-socket += "perl-module-io-select" |
1011 | RDEPENDS_perl-module-io-socket += "perl-module-io-socket-inet" | 1011 | RDEPENDS:perl-module-io-socket += "perl-module-io-socket-inet" |
1012 | RDEPENDS_perl-module-io-socket += "perl-module-io-socket-unix" | 1012 | RDEPENDS:perl-module-io-socket += "perl-module-io-socket-unix" |
1013 | RDEPENDS_perl-module-io-socket += "perl-module-socket" | 1013 | RDEPENDS:perl-module-io-socket += "perl-module-socket" |
1014 | RDEPENDS_perl-module-io-socket += "perl-module-strict" | 1014 | RDEPENDS:perl-module-io-socket += "perl-module-strict" |
1015 | RDEPENDS_perl-module-io-socket-unix += "perl-module-io-socket" | 1015 | RDEPENDS:perl-module-io-socket-unix += "perl-module-io-socket" |
1016 | RDEPENDS_perl-module-io-socket-unix += "perl-module-strict" | 1016 | RDEPENDS:perl-module-io-socket-unix += "perl-module-strict" |
1017 | RDEPENDS_perl-module-io-uncompress-adapter-bunzip2 += "perl-module-bytes" | 1017 | RDEPENDS:perl-module-io-uncompress-adapter-bunzip2 += "perl-module-bytes" |
1018 | RDEPENDS_perl-module-io-uncompress-adapter-bunzip2 += "perl-module-compress-raw-bzip2" | 1018 | RDEPENDS:perl-module-io-uncompress-adapter-bunzip2 += "perl-module-compress-raw-bzip2" |
1019 | RDEPENDS_perl-module-io-uncompress-adapter-bunzip2 += "perl-module-io-compress-base-common" | 1019 | RDEPENDS:perl-module-io-uncompress-adapter-bunzip2 += "perl-module-io-compress-base-common" |
1020 | RDEPENDS_perl-module-io-uncompress-adapter-bunzip2 += "perl-module-strict" | 1020 | RDEPENDS:perl-module-io-uncompress-adapter-bunzip2 += "perl-module-strict" |
1021 | RDEPENDS_perl-module-io-uncompress-adapter-bunzip2 += "perl-module-warnings" | 1021 | RDEPENDS:perl-module-io-uncompress-adapter-bunzip2 += "perl-module-warnings" |
1022 | RDEPENDS_perl-module-io-uncompress-adapter-identity += "perl-module-bytes" | 1022 | RDEPENDS:perl-module-io-uncompress-adapter-identity += "perl-module-bytes" |
1023 | RDEPENDS_perl-module-io-uncompress-adapter-identity += "perl-module-compress-raw-zlib" | 1023 | RDEPENDS:perl-module-io-uncompress-adapter-identity += "perl-module-compress-raw-zlib" |
1024 | RDEPENDS_perl-module-io-uncompress-adapter-identity += "perl-module-io-compress-base-common" | 1024 | RDEPENDS:perl-module-io-uncompress-adapter-identity += "perl-module-io-compress-base-common" |
1025 | RDEPENDS_perl-module-io-uncompress-adapter-identity += "perl-module-io-compress-zip-constants " | 1025 | RDEPENDS:perl-module-io-uncompress-adapter-identity += "perl-module-io-compress-zip-constants " |
1026 | RDEPENDS_perl-module-io-uncompress-adapter-identity += "perl-module-strict" | 1026 | RDEPENDS:perl-module-io-uncompress-adapter-identity += "perl-module-strict" |
1027 | RDEPENDS_perl-module-io-uncompress-adapter-identity += "perl-module-warnings" | 1027 | RDEPENDS:perl-module-io-uncompress-adapter-identity += "perl-module-warnings" |
1028 | RDEPENDS_perl-module-io-uncompress-adapter-inflate += "perl-module-bytes" | 1028 | RDEPENDS:perl-module-io-uncompress-adapter-inflate += "perl-module-bytes" |
1029 | RDEPENDS_perl-module-io-uncompress-adapter-inflate += "perl-module-compress-raw-zlib" | 1029 | RDEPENDS:perl-module-io-uncompress-adapter-inflate += "perl-module-compress-raw-zlib" |
1030 | RDEPENDS_perl-module-io-uncompress-adapter-inflate += "perl-module-io-compress-base-common" | 1030 | RDEPENDS:perl-module-io-uncompress-adapter-inflate += "perl-module-io-compress-base-common" |
1031 | RDEPENDS_perl-module-io-uncompress-adapter-inflate += "perl-module-strict" | 1031 | RDEPENDS:perl-module-io-uncompress-adapter-inflate += "perl-module-strict" |
1032 | RDEPENDS_perl-module-io-uncompress-adapter-inflate += "perl-module-warnings" | 1032 | RDEPENDS:perl-module-io-uncompress-adapter-inflate += "perl-module-warnings" |
1033 | RDEPENDS_perl-module-io-uncompress-anyinflate += "perl-module-bytes" | 1033 | RDEPENDS:perl-module-io-uncompress-anyinflate += "perl-module-bytes" |
1034 | RDEPENDS_perl-module-io-uncompress-anyinflate += "perl-module-exporter " | 1034 | RDEPENDS:perl-module-io-uncompress-anyinflate += "perl-module-exporter " |
1035 | RDEPENDS_perl-module-io-uncompress-anyinflate += "perl-module-io-compress-base-common" | 1035 | RDEPENDS:perl-module-io-uncompress-anyinflate += "perl-module-io-compress-base-common" |
1036 | RDEPENDS_perl-module-io-uncompress-anyinflate += "perl-module-io-uncompress-adapter-inflate" | 1036 | RDEPENDS:perl-module-io-uncompress-anyinflate += "perl-module-io-uncompress-adapter-inflate" |
1037 | RDEPENDS_perl-module-io-uncompress-anyinflate += "perl-module-io-uncompress-base" | 1037 | RDEPENDS:perl-module-io-uncompress-anyinflate += "perl-module-io-uncompress-base" |
1038 | RDEPENDS_perl-module-io-uncompress-anyinflate += "perl-module-io-uncompress-gunzip" | 1038 | RDEPENDS:perl-module-io-uncompress-anyinflate += "perl-module-io-uncompress-gunzip" |
1039 | RDEPENDS_perl-module-io-uncompress-anyinflate += "perl-module-io-uncompress-inflate" | 1039 | RDEPENDS:perl-module-io-uncompress-anyinflate += "perl-module-io-uncompress-inflate" |
1040 | RDEPENDS_perl-module-io-uncompress-anyinflate += "perl-module-io-uncompress-rawinflate" | 1040 | RDEPENDS:perl-module-io-uncompress-anyinflate += "perl-module-io-uncompress-rawinflate" |
1041 | RDEPENDS_perl-module-io-uncompress-anyinflate += "perl-module-io-uncompress-unzip" | 1041 | RDEPENDS:perl-module-io-uncompress-anyinflate += "perl-module-io-uncompress-unzip" |
1042 | RDEPENDS_perl-module-io-uncompress-anyinflate += "perl-module-strict" | 1042 | RDEPENDS:perl-module-io-uncompress-anyinflate += "perl-module-strict" |
1043 | RDEPENDS_perl-module-io-uncompress-anyinflate += "perl-module-warnings" | 1043 | RDEPENDS:perl-module-io-uncompress-anyinflate += "perl-module-warnings" |
1044 | RDEPENDS_perl-module-io-uncompress-anyuncompress += "perl-module-bytes" | 1044 | RDEPENDS:perl-module-io-uncompress-anyuncompress += "perl-module-bytes" |
1045 | RDEPENDS_perl-module-io-uncompress-anyuncompress += "perl-module-exporter " | 1045 | RDEPENDS:perl-module-io-uncompress-anyuncompress += "perl-module-exporter " |
1046 | RDEPENDS_perl-module-io-uncompress-anyuncompress += "perl-module-io-compress-base-common" | 1046 | RDEPENDS:perl-module-io-uncompress-anyuncompress += "perl-module-io-compress-base-common" |
1047 | RDEPENDS_perl-module-io-uncompress-anyuncompress += "perl-module-io-uncompress-base" | 1047 | RDEPENDS:perl-module-io-uncompress-anyuncompress += "perl-module-io-uncompress-base" |
1048 | RDEPENDS_perl-module-io-uncompress-anyuncompress += "perl-module-strict" | 1048 | RDEPENDS:perl-module-io-uncompress-anyuncompress += "perl-module-strict" |
1049 | RDEPENDS_perl-module-io-uncompress-anyuncompress += "perl-module-warnings" | 1049 | RDEPENDS:perl-module-io-uncompress-anyuncompress += "perl-module-warnings" |
1050 | RDEPENDS_perl-module-io-uncompress-base += "perl-module-bytes" | 1050 | RDEPENDS:perl-module-io-uncompress-base += "perl-module-bytes" |
1051 | RDEPENDS_perl-module-io-uncompress-base += "perl-module-constant" | 1051 | RDEPENDS:perl-module-io-uncompress-base += "perl-module-constant" |
1052 | RDEPENDS_perl-module-io-uncompress-base += "perl-module-io-compress-base-common" | 1052 | RDEPENDS:perl-module-io-uncompress-base += "perl-module-io-compress-base-common" |
1053 | RDEPENDS_perl-module-io-uncompress-base += "perl-module-io-file " | 1053 | RDEPENDS:perl-module-io-uncompress-base += "perl-module-io-file " |
1054 | RDEPENDS_perl-module-io-uncompress-base += "perl-module-list-util" | 1054 | RDEPENDS:perl-module-io-uncompress-base += "perl-module-list-util" |
1055 | RDEPENDS_perl-module-io-uncompress-base += "perl-module-strict " | 1055 | RDEPENDS:perl-module-io-uncompress-base += "perl-module-strict " |
1056 | RDEPENDS_perl-module-io-uncompress-base += "perl-module-warnings" | 1056 | RDEPENDS:perl-module-io-uncompress-base += "perl-module-warnings" |
1057 | RDEPENDS_perl-module-io-uncompress-bunzip2 += "perl-module-bytes" | 1057 | RDEPENDS:perl-module-io-uncompress-bunzip2 += "perl-module-bytes" |
1058 | RDEPENDS_perl-module-io-uncompress-bunzip2 += "perl-module-exporter " | 1058 | RDEPENDS:perl-module-io-uncompress-bunzip2 += "perl-module-exporter " |
1059 | RDEPENDS_perl-module-io-uncompress-bunzip2 += "perl-module-io-compress-base-common" | 1059 | RDEPENDS:perl-module-io-uncompress-bunzip2 += "perl-module-io-compress-base-common" |
1060 | RDEPENDS_perl-module-io-uncompress-bunzip2 += "perl-module-io-uncompress-adapter-bunzip2" | 1060 | RDEPENDS:perl-module-io-uncompress-bunzip2 += "perl-module-io-uncompress-adapter-bunzip2" |
1061 | RDEPENDS_perl-module-io-uncompress-bunzip2 += "perl-module-io-uncompress-base" | 1061 | RDEPENDS:perl-module-io-uncompress-bunzip2 += "perl-module-io-uncompress-base" |
1062 | RDEPENDS_perl-module-io-uncompress-bunzip2 += "perl-module-strict " | 1062 | RDEPENDS:perl-module-io-uncompress-bunzip2 += "perl-module-strict " |
1063 | RDEPENDS_perl-module-io-uncompress-bunzip2 += "perl-module-warnings" | 1063 | RDEPENDS:perl-module-io-uncompress-bunzip2 += "perl-module-warnings" |
1064 | RDEPENDS_perl-module-io-uncompress-gunzip += "perl-module-bytes" | 1064 | RDEPENDS:perl-module-io-uncompress-gunzip += "perl-module-bytes" |
1065 | RDEPENDS_perl-module-io-uncompress-gunzip += "perl-module-compress-raw-zlib" | 1065 | RDEPENDS:perl-module-io-uncompress-gunzip += "perl-module-compress-raw-zlib" |
1066 | RDEPENDS_perl-module-io-uncompress-gunzip += "perl-module-exporter " | 1066 | RDEPENDS:perl-module-io-uncompress-gunzip += "perl-module-exporter " |
1067 | RDEPENDS_perl-module-io-uncompress-gunzip += "perl-module-io-compress-base-common" | 1067 | RDEPENDS:perl-module-io-uncompress-gunzip += "perl-module-io-compress-base-common" |
1068 | RDEPENDS_perl-module-io-uncompress-gunzip += "perl-module-io-compress-gzip-constants" | 1068 | RDEPENDS:perl-module-io-uncompress-gunzip += "perl-module-io-compress-gzip-constants" |
1069 | RDEPENDS_perl-module-io-uncompress-gunzip += "perl-module-io-compress-zlib-extra" | 1069 | RDEPENDS:perl-module-io-uncompress-gunzip += "perl-module-io-compress-zlib-extra" |
1070 | RDEPENDS_perl-module-io-uncompress-gunzip += "perl-module-io-uncompress-rawinflate" | 1070 | RDEPENDS:perl-module-io-uncompress-gunzip += "perl-module-io-uncompress-rawinflate" |
1071 | RDEPENDS_perl-module-io-uncompress-gunzip += "perl-module-strict " | 1071 | RDEPENDS:perl-module-io-uncompress-gunzip += "perl-module-strict " |
1072 | RDEPENDS_perl-module-io-uncompress-gunzip += "perl-module-warnings" | 1072 | RDEPENDS:perl-module-io-uncompress-gunzip += "perl-module-warnings" |
1073 | RDEPENDS_perl-module-io-uncompress-inflate += "perl-module-bytes" | 1073 | RDEPENDS:perl-module-io-uncompress-inflate += "perl-module-bytes" |
1074 | RDEPENDS_perl-module-io-uncompress-inflate += "perl-module-exporter " | 1074 | RDEPENDS:perl-module-io-uncompress-inflate += "perl-module-exporter " |
1075 | RDEPENDS_perl-module-io-uncompress-inflate += "perl-module-io-compress-base-common" | 1075 | RDEPENDS:perl-module-io-uncompress-inflate += "perl-module-io-compress-base-common" |
1076 | RDEPENDS_perl-module-io-uncompress-inflate += "perl-module-io-compress-zlib-constants" | 1076 | RDEPENDS:perl-module-io-uncompress-inflate += "perl-module-io-compress-zlib-constants" |
1077 | RDEPENDS_perl-module-io-uncompress-inflate += "perl-module-io-uncompress-rawinflate" | 1077 | RDEPENDS:perl-module-io-uncompress-inflate += "perl-module-io-uncompress-rawinflate" |
1078 | RDEPENDS_perl-module-io-uncompress-inflate += "perl-module-strict " | 1078 | RDEPENDS:perl-module-io-uncompress-inflate += "perl-module-strict " |
1079 | RDEPENDS_perl-module-io-uncompress-inflate += "perl-module-warnings" | 1079 | RDEPENDS:perl-module-io-uncompress-inflate += "perl-module-warnings" |
1080 | RDEPENDS_perl-module-io-uncompress-rawinflate += "perl-module-bytes" | 1080 | RDEPENDS:perl-module-io-uncompress-rawinflate += "perl-module-bytes" |
1081 | RDEPENDS_perl-module-io-uncompress-rawinflate += "perl-module-compress-raw-zlib" | 1081 | RDEPENDS:perl-module-io-uncompress-rawinflate += "perl-module-compress-raw-zlib" |
1082 | RDEPENDS_perl-module-io-uncompress-rawinflate += "perl-module-exporter " | 1082 | RDEPENDS:perl-module-io-uncompress-rawinflate += "perl-module-exporter " |
1083 | RDEPENDS_perl-module-io-uncompress-rawinflate += "perl-module-io-compress-base-common" | 1083 | RDEPENDS:perl-module-io-uncompress-rawinflate += "perl-module-io-compress-base-common" |
1084 | RDEPENDS_perl-module-io-uncompress-rawinflate += "perl-module-io-uncompress-adapter-inflate" | 1084 | RDEPENDS:perl-module-io-uncompress-rawinflate += "perl-module-io-uncompress-adapter-inflate" |
1085 | RDEPENDS_perl-module-io-uncompress-rawinflate += "perl-module-io-uncompress-base" | 1085 | RDEPENDS:perl-module-io-uncompress-rawinflate += "perl-module-io-uncompress-base" |
1086 | RDEPENDS_perl-module-io-uncompress-rawinflate += "perl-module-strict " | 1086 | RDEPENDS:perl-module-io-uncompress-rawinflate += "perl-module-strict " |
1087 | RDEPENDS_perl-module-io-uncompress-rawinflate += "perl-module-warnings" | 1087 | RDEPENDS:perl-module-io-uncompress-rawinflate += "perl-module-warnings" |
1088 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-bytes" | 1088 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-bytes" |
1089 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-compress-raw-zlib" | 1089 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-compress-raw-zlib" |
1090 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-constant" | 1090 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-constant" |
1091 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-encode" | 1091 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-encode" |
1092 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-exporter " | 1092 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-exporter " |
1093 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-fcntl" | 1093 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-fcntl" |
1094 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-io-compress-base-common" | 1094 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-io-compress-base-common" |
1095 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-io-compress-zip-constants" | 1095 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-io-compress-zip-constants" |
1096 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-io-compress-zlib-extra" | 1096 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-io-compress-zlib-extra" |
1097 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-io-file" | 1097 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-io-file" |
1098 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-io-uncompress-adapter-identity" | 1098 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-io-uncompress-adapter-identity" |
1099 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-io-uncompress-adapter-inflate" | 1099 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-io-uncompress-adapter-inflate" |
1100 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-io-uncompress-rawinflate" | 1100 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-io-uncompress-rawinflate" |
1101 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-posix" | 1101 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-posix" |
1102 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-strict " | 1102 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-strict " |
1103 | RDEPENDS_perl-module-io-uncompress-unzip += "perl-module-warnings" | 1103 | RDEPENDS:perl-module-io-uncompress-unzip += "perl-module-warnings" |
1104 | RDEPENDS_perl-module-io-zlib += "perl-module-fcntl" | 1104 | RDEPENDS:perl-module-io-zlib += "perl-module-fcntl" |
1105 | RDEPENDS_perl-module-io-zlib += "perl-module-io-handle" | 1105 | RDEPENDS:perl-module-io-zlib += "perl-module-io-handle" |
1106 | RDEPENDS_perl-module-io-zlib += "perl-module-strict" | 1106 | RDEPENDS:perl-module-io-zlib += "perl-module-strict" |
1107 | RDEPENDS_perl-module-io-zlib += "perl-module-tie-handle" | 1107 | RDEPENDS:perl-module-io-zlib += "perl-module-tie-handle" |
1108 | RDEPENDS_perl-module-io-zlib += "perl-module-vars" | 1108 | RDEPENDS:perl-module-io-zlib += "perl-module-vars" |
1109 | RDEPENDS_perl-module-ipc-cmd += "perl-module-constant" | 1109 | RDEPENDS:perl-module-ipc-cmd += "perl-module-constant" |
1110 | RDEPENDS_perl-module-ipc-cmd += "perl-module-exporter" | 1110 | RDEPENDS:perl-module-ipc-cmd += "perl-module-exporter" |
1111 | RDEPENDS_perl-module-ipc-cmd += "perl-module-extutils-makemaker" | 1111 | RDEPENDS:perl-module-ipc-cmd += "perl-module-extutils-makemaker" |
1112 | RDEPENDS_perl-module-ipc-cmd += "perl-module-filehandle" | 1112 | RDEPENDS:perl-module-ipc-cmd += "perl-module-filehandle" |
1113 | RDEPENDS_perl-module-ipc-cmd += "perl-module-io-handle" | 1113 | RDEPENDS:perl-module-ipc-cmd += "perl-module-io-handle" |
1114 | RDEPENDS_perl-module-ipc-cmd += "perl-module-io-select" | 1114 | RDEPENDS:perl-module-ipc-cmd += "perl-module-io-select" |
1115 | RDEPENDS_perl-module-ipc-cmd += "perl-module-ipc-open3" | 1115 | RDEPENDS:perl-module-ipc-cmd += "perl-module-ipc-open3" |
1116 | RDEPENDS_perl-module-ipc-cmd += "perl-module-locale-maketext-simple" | 1116 | RDEPENDS:perl-module-ipc-cmd += "perl-module-locale-maketext-simple" |
1117 | RDEPENDS_perl-module-ipc-cmd += "perl-module-load" | 1117 | RDEPENDS:perl-module-ipc-cmd += "perl-module-load" |
1118 | RDEPENDS_perl-module-ipc-cmd += "perl-module-params-check" | 1118 | RDEPENDS:perl-module-ipc-cmd += "perl-module-params-check" |
1119 | RDEPENDS_perl-module-ipc-cmd += "perl-module-posix" | 1119 | RDEPENDS:perl-module-ipc-cmd += "perl-module-posix" |
1120 | RDEPENDS_perl-module-ipc-cmd += "perl-module-socket" | 1120 | RDEPENDS:perl-module-ipc-cmd += "perl-module-socket" |
1121 | RDEPENDS_perl-module-ipc-cmd += "perl-module-strict" | 1121 | RDEPENDS:perl-module-ipc-cmd += "perl-module-strict" |
1122 | RDEPENDS_perl-module-ipc-cmd += "perl-module-text-parsewords" | 1122 | RDEPENDS:perl-module-ipc-cmd += "perl-module-text-parsewords" |
1123 | RDEPENDS_perl-module-ipc-cmd += "perl-module-time-hires" | 1123 | RDEPENDS:perl-module-ipc-cmd += "perl-module-time-hires" |
1124 | RDEPENDS_perl-module-ipc-cmd += "perl-module-vars" | 1124 | RDEPENDS:perl-module-ipc-cmd += "perl-module-vars" |
1125 | RDEPENDS_perl-module-ipc-msg += "perl-module-class-struct" | 1125 | RDEPENDS:perl-module-ipc-msg += "perl-module-class-struct" |
1126 | RDEPENDS_perl-module-ipc-msg += "perl-module-ipc-sysv" | 1126 | RDEPENDS:perl-module-ipc-msg += "perl-module-ipc-sysv" |
1127 | RDEPENDS_perl-module-ipc-msg += "perl-module-strict" | 1127 | RDEPENDS:perl-module-ipc-msg += "perl-module-strict" |
1128 | RDEPENDS_perl-module-ipc-msg += "perl-module-vars" | 1128 | RDEPENDS:perl-module-ipc-msg += "perl-module-vars" |
1129 | RDEPENDS_perl-module-ipc-open2 += "perl-module-exporter" | 1129 | RDEPENDS:perl-module-ipc-open2 += "perl-module-exporter" |
1130 | RDEPENDS_perl-module-ipc-open2 += "perl-module-ipc-open3" | 1130 | RDEPENDS:perl-module-ipc-open2 += "perl-module-ipc-open3" |
1131 | RDEPENDS_perl-module-ipc-open2 += "perl-module-strict" | 1131 | RDEPENDS:perl-module-ipc-open2 += "perl-module-strict" |
1132 | RDEPENDS_perl-module-ipc-open3 += "perl-module-constant" | 1132 | RDEPENDS:perl-module-ipc-open3 += "perl-module-constant" |
1133 | RDEPENDS_perl-module-ipc-open3 += "perl-module-exporter" | 1133 | RDEPENDS:perl-module-ipc-open3 += "perl-module-exporter" |
1134 | RDEPENDS_perl-module-ipc-open3 += "perl-module-fcntl" | 1134 | RDEPENDS:perl-module-ipc-open3 += "perl-module-fcntl" |
1135 | RDEPENDS_perl-module-ipc-open3 += "perl-module-io-pipe" | 1135 | RDEPENDS:perl-module-ipc-open3 += "perl-module-io-pipe" |
1136 | RDEPENDS_perl-module-ipc-open3 += "perl-module-posix" | 1136 | RDEPENDS:perl-module-ipc-open3 += "perl-module-posix" |
1137 | RDEPENDS_perl-module-ipc-open3 += "perl-module-strict" | 1137 | RDEPENDS:perl-module-ipc-open3 += "perl-module-strict" |
1138 | RDEPENDS_perl-module-ipc-semaphore += "perl-module-class-struct" | 1138 | RDEPENDS:perl-module-ipc-semaphore += "perl-module-class-struct" |
1139 | RDEPENDS_perl-module-ipc-semaphore += "perl-module-ipc-sysv" | 1139 | RDEPENDS:perl-module-ipc-semaphore += "perl-module-ipc-sysv" |
1140 | RDEPENDS_perl-module-ipc-semaphore += "perl-module-strict" | 1140 | RDEPENDS:perl-module-ipc-semaphore += "perl-module-strict" |
1141 | RDEPENDS_perl-module-ipc-semaphore += "perl-module-vars" | 1141 | RDEPENDS:perl-module-ipc-semaphore += "perl-module-vars" |
1142 | RDEPENDS_perl-module-ipc-sharedmem += "perl-module-class-struct" | 1142 | RDEPENDS:perl-module-ipc-sharedmem += "perl-module-class-struct" |
1143 | RDEPENDS_perl-module-ipc-sharedmem += "perl-module-ipc-sysv" | 1143 | RDEPENDS:perl-module-ipc-sharedmem += "perl-module-ipc-sysv" |
1144 | RDEPENDS_perl-module-ipc-sharedmem += "perl-module-strict" | 1144 | RDEPENDS:perl-module-ipc-sharedmem += "perl-module-strict" |
1145 | RDEPENDS_perl-module-ipc-sharedmem += "perl-module-vars" | 1145 | RDEPENDS:perl-module-ipc-sharedmem += "perl-module-vars" |
1146 | RDEPENDS_perl-module-ipc-sysv += "perl-module-config" | 1146 | RDEPENDS:perl-module-ipc-sysv += "perl-module-config" |
1147 | RDEPENDS_perl-module-ipc-sysv += "perl-module-dynaloader" | 1147 | RDEPENDS:perl-module-ipc-sysv += "perl-module-dynaloader" |
1148 | RDEPENDS_perl-module-ipc-sysv += "perl-module-exporter" | 1148 | RDEPENDS:perl-module-ipc-sysv += "perl-module-exporter" |
1149 | RDEPENDS_perl-module-ipc-sysv += "perl-module-strict" | 1149 | RDEPENDS:perl-module-ipc-sysv += "perl-module-strict" |
1150 | RDEPENDS_perl-module-ipc-sysv += "perl-module-vars" | 1150 | RDEPENDS:perl-module-ipc-sysv += "perl-module-vars" |
1151 | RDEPENDS_perl-module-json-pp-boolean += "perl-module-overload" | 1151 | RDEPENDS:perl-module-json-pp-boolean += "perl-module-overload" |
1152 | RDEPENDS_perl-module-json-pp-boolean += "perl-module-strict" | 1152 | RDEPENDS:perl-module-json-pp-boolean += "perl-module-strict" |
1153 | RDEPENDS_perl-module-json-pp += "perl-module-b" | 1153 | RDEPENDS:perl-module-json-pp += "perl-module-b" |
1154 | RDEPENDS_perl-module-json-pp += "perl-module-bytes" | 1154 | RDEPENDS:perl-module-json-pp += "perl-module-bytes" |
1155 | RDEPENDS_perl-module-json-pp += "perl-module-constant" | 1155 | RDEPENDS:perl-module-json-pp += "perl-module-constant" |
1156 | RDEPENDS_perl-module-json-pp += "perl-module-encode" | 1156 | RDEPENDS:perl-module-json-pp += "perl-module-encode" |
1157 | RDEPENDS_perl-module-json-pp += "perl-module-exporter" | 1157 | RDEPENDS:perl-module-json-pp += "perl-module-exporter" |
1158 | RDEPENDS_perl-module-json-pp += "perl-module-json-pp-boolean" | 1158 | RDEPENDS:perl-module-json-pp += "perl-module-json-pp-boolean" |
1159 | RDEPENDS_perl-module-json-pp += "perl-module-math-bigfloat" | 1159 | RDEPENDS:perl-module-json-pp += "perl-module-math-bigfloat" |
1160 | RDEPENDS_perl-module-json-pp += "perl-module-math-bigint" | 1160 | RDEPENDS:perl-module-json-pp += "perl-module-math-bigint" |
1161 | RDEPENDS_perl-module-json-pp += "perl-module-overload" | 1161 | RDEPENDS:perl-module-json-pp += "perl-module-overload" |
1162 | RDEPENDS_perl-module-json-pp += "perl-module-strict" | 1162 | RDEPENDS:perl-module-json-pp += "perl-module-strict" |
1163 | RDEPENDS_perl-module-json-pp += "perl-module-subs" | 1163 | RDEPENDS:perl-module-json-pp += "perl-module-subs" |
1164 | RDEPENDS_perl-module-less += "perl-module-strict" | 1164 | RDEPENDS:perl-module-less += "perl-module-strict" |
1165 | RDEPENDS_perl-module-less += "perl-module-warnings" | 1165 | RDEPENDS:perl-module-less += "perl-module-warnings" |
1166 | RDEPENDS_perl-module-lib += "perl-module-config" | 1166 | RDEPENDS:perl-module-lib += "perl-module-config" |
1167 | RDEPENDS_perl-module-lib += "perl-module-strict" | 1167 | RDEPENDS:perl-module-lib += "perl-module-strict" |
1168 | RDEPENDS_perl-module-list-util += "perl-module-exporter" | 1168 | RDEPENDS:perl-module-list-util += "perl-module-exporter" |
1169 | RDEPENDS_perl-module-list-util += "perl-module-strict" | 1169 | RDEPENDS:perl-module-list-util += "perl-module-strict" |
1170 | RDEPENDS_perl-module-list-util += "perl-module-warnings" | 1170 | RDEPENDS:perl-module-list-util += "perl-module-warnings" |
1171 | RDEPENDS_perl-module-list-util += "perl-module-xsloader" | 1171 | RDEPENDS:perl-module-list-util += "perl-module-xsloader" |
1172 | RDEPENDS_perl-module-list-util-xs += "perl-module-list-util" | 1172 | RDEPENDS:perl-module-list-util-xs += "perl-module-list-util" |
1173 | RDEPENDS_perl-module-list-util-xs += "perl-module-strict" | 1173 | RDEPENDS:perl-module-list-util-xs += "perl-module-strict" |
1174 | RDEPENDS_perl-module-list-util-xs += "perl-module-warnings" | 1174 | RDEPENDS:perl-module-list-util-xs += "perl-module-warnings" |
1175 | RDEPENDS_perl-module-loaded += "perl-module-strict" | 1175 | RDEPENDS:perl-module-loaded += "perl-module-strict" |
1176 | RDEPENDS_perl-module-loaded += "perl-module-vars" | 1176 | RDEPENDS:perl-module-loaded += "perl-module-vars" |
1177 | RDEPENDS_perl-module-load += "perl-module-config" | 1177 | RDEPENDS:perl-module-load += "perl-module-config" |
1178 | RDEPENDS_perl-module-load += "perl-module-constant" | 1178 | RDEPENDS:perl-module-load += "perl-module-constant" |
1179 | RDEPENDS_perl-module-load += "perl-module-exporter" | 1179 | RDEPENDS:perl-module-load += "perl-module-exporter" |
1180 | RDEPENDS_perl-module-load += "perl-module-filehandle" | 1180 | RDEPENDS:perl-module-load += "perl-module-filehandle" |
1181 | RDEPENDS_perl-module-load += "perl-module-locale-maketext-simple" | 1181 | RDEPENDS:perl-module-load += "perl-module-locale-maketext-simple" |
1182 | RDEPENDS_perl-module-load += "perl-module-corelist" | 1182 | RDEPENDS:perl-module-load += "perl-module-corelist" |
1183 | RDEPENDS_perl-module-load += "perl-module-load" | 1183 | RDEPENDS:perl-module-load += "perl-module-load" |
1184 | RDEPENDS_perl-module-load += "perl-module-params-check" | 1184 | RDEPENDS:perl-module-load += "perl-module-params-check" |
1185 | RDEPENDS_perl-module-load += "perl-module-strict" | 1185 | RDEPENDS:perl-module-load += "perl-module-strict" |
1186 | RDEPENDS_perl-module-load += "perl-module-vars" | 1186 | RDEPENDS:perl-module-load += "perl-module-vars" |
1187 | RDEPENDS_perl-module-load += "perl-module-version" | 1187 | RDEPENDS:perl-module-load += "perl-module-version" |
1188 | RDEPENDS_perl-module-load += "perl-module-warnings" | 1188 | RDEPENDS:perl-module-load += "perl-module-warnings" |
1189 | RDEPENDS_perl-module-locale-maketext-gutsloader += "perl-module-locale-maketext" | 1189 | RDEPENDS:perl-module-locale-maketext-gutsloader += "perl-module-locale-maketext" |
1190 | RDEPENDS_perl-module-locale-maketext-guts += "perl-module-locale-maketext" | 1190 | RDEPENDS:perl-module-locale-maketext-guts += "perl-module-locale-maketext" |
1191 | RDEPENDS_perl-module-locale-maketext += "perl-module-i18n-langtags" | 1191 | RDEPENDS:perl-module-locale-maketext += "perl-module-i18n-langtags" |
1192 | RDEPENDS_perl-module-locale-maketext += "perl-module-i18n-langtags-detect" | 1192 | RDEPENDS:perl-module-locale-maketext += "perl-module-i18n-langtags-detect" |
1193 | RDEPENDS_perl-module-locale-maketext += "perl-module-integer" | 1193 | RDEPENDS:perl-module-locale-maketext += "perl-module-integer" |
1194 | RDEPENDS_perl-module-locale-maketext += "perl-module-strict" | 1194 | RDEPENDS:perl-module-locale-maketext += "perl-module-strict" |
1195 | RDEPENDS_perl-module-locale-maketext-simple += "perl-module-base" | 1195 | RDEPENDS:perl-module-locale-maketext-simple += "perl-module-base" |
1196 | RDEPENDS_perl-module-locale-maketext-simple += "perl-module-strict" | 1196 | RDEPENDS:perl-module-locale-maketext-simple += "perl-module-strict" |
1197 | RDEPENDS_perl-module-locale += "perl-module-config" | 1197 | RDEPENDS:perl-module-locale += "perl-module-config" |
1198 | RDEPENDS_perl-module-math-bigfloat += "perl-module-exporter" | 1198 | RDEPENDS:perl-module-math-bigfloat += "perl-module-exporter" |
1199 | RDEPENDS_perl-module-math-bigfloat += "perl-module-math-bigint" | 1199 | RDEPENDS:perl-module-math-bigfloat += "perl-module-math-bigint" |
1200 | RDEPENDS_perl-module-math-bigfloat += "perl-module-math-complex" | 1200 | RDEPENDS:perl-module-math-bigfloat += "perl-module-math-complex" |
1201 | RDEPENDS_perl-module-math-bigfloat += "perl-module-overload" | 1201 | RDEPENDS:perl-module-math-bigfloat += "perl-module-overload" |
1202 | RDEPENDS_perl-module-math-bigfloat += "perl-module-strict" | 1202 | RDEPENDS:perl-module-math-bigfloat += "perl-module-strict" |
1203 | RDEPENDS_perl-module-math-bigfloat += "perl-module-warnings" | 1203 | RDEPENDS:perl-module-math-bigfloat += "perl-module-warnings" |
1204 | RDEPENDS_perl-module-math-bigfloat-trace += "perl-module-exporter" | 1204 | RDEPENDS:perl-module-math-bigfloat-trace += "perl-module-exporter" |
1205 | RDEPENDS_perl-module-math-bigfloat-trace += "perl-module-math-bigfloat" | 1205 | RDEPENDS:perl-module-math-bigfloat-trace += "perl-module-math-bigfloat" |
1206 | RDEPENDS_perl-module-math-bigfloat-trace += "perl-module-overload" | 1206 | RDEPENDS:perl-module-math-bigfloat-trace += "perl-module-overload" |
1207 | RDEPENDS_perl-module-math-bigfloat-trace += "perl-module-strict" | 1207 | RDEPENDS:perl-module-math-bigfloat-trace += "perl-module-strict" |
1208 | RDEPENDS_perl-module-math-bigfloat-trace += "perl-module-warnings" | 1208 | RDEPENDS:perl-module-math-bigfloat-trace += "perl-module-warnings" |
1209 | RDEPENDS_perl-module-math-bigint-calc += "perl-module-constant" | 1209 | RDEPENDS:perl-module-math-bigint-calc += "perl-module-constant" |
1210 | RDEPENDS_perl-module-math-bigint-calc += "perl-module-integer" | 1210 | RDEPENDS:perl-module-math-bigint-calc += "perl-module-integer" |
1211 | RDEPENDS_perl-module-math-bigint-calc += "perl-module-math-bigint-lib" | 1211 | RDEPENDS:perl-module-math-bigint-calc += "perl-module-math-bigint-lib" |
1212 | RDEPENDS_perl-module-math-bigint-calc += "perl-module-strict" | 1212 | RDEPENDS:perl-module-math-bigint-calc += "perl-module-strict" |
1213 | RDEPENDS_perl-module-math-bigint-calc += "perl-module-warnings" | 1213 | RDEPENDS:perl-module-math-bigint-calc += "perl-module-warnings" |
1214 | RDEPENDS_perl-module-math-bigint-fastcalc += "perl-module-math-bigint-calc" | 1214 | RDEPENDS:perl-module-math-bigint-fastcalc += "perl-module-math-bigint-calc" |
1215 | RDEPENDS_perl-module-math-bigint-fastcalc += "perl-module-strict" | 1215 | RDEPENDS:perl-module-math-bigint-fastcalc += "perl-module-strict" |
1216 | RDEPENDS_perl-module-math-bigint-fastcalc += "perl-module-warnings" | 1216 | RDEPENDS:perl-module-math-bigint-fastcalc += "perl-module-warnings" |
1217 | RDEPENDS_perl-module-math-bigint-fastcalc += "perl-module-xsloader" | 1217 | RDEPENDS:perl-module-math-bigint-fastcalc += "perl-module-xsloader" |
1218 | RDEPENDS_perl-module-math-bigint-lib += "perl-module-overload" | 1218 | RDEPENDS:perl-module-math-bigint-lib += "perl-module-overload" |
1219 | RDEPENDS_perl-module-math-bigint-lib += "perl-module-strict" | 1219 | RDEPENDS:perl-module-math-bigint-lib += "perl-module-strict" |
1220 | RDEPENDS_perl-module-math-bigint-lib += "perl-module-warnings" | 1220 | RDEPENDS:perl-module-math-bigint-lib += "perl-module-warnings" |
1221 | RDEPENDS_perl-module-math-bigint += "perl-module-exporter" | 1221 | RDEPENDS:perl-module-math-bigint += "perl-module-exporter" |
1222 | RDEPENDS_perl-module-math-bigint += "perl-module-math-bigfloat" | 1222 | RDEPENDS:perl-module-math-bigint += "perl-module-math-bigfloat" |
1223 | RDEPENDS_perl-module-math-bigint += "perl-module-math-complex" | 1223 | RDEPENDS:perl-module-math-bigint += "perl-module-math-complex" |
1224 | RDEPENDS_perl-module-math-bigint += "perl-module-overload" | 1224 | RDEPENDS:perl-module-math-bigint += "perl-module-overload" |
1225 | RDEPENDS_perl-module-math-bigint += "perl-module-strict" | 1225 | RDEPENDS:perl-module-math-bigint += "perl-module-strict" |
1226 | RDEPENDS_perl-module-math-bigint += "perl-module-warnings" | 1226 | RDEPENDS:perl-module-math-bigint += "perl-module-warnings" |
1227 | RDEPENDS_perl-module-math-bigint-trace += "perl-module-exporter" | 1227 | RDEPENDS:perl-module-math-bigint-trace += "perl-module-exporter" |
1228 | RDEPENDS_perl-module-math-bigint-trace += "perl-module-math-bigint" | 1228 | RDEPENDS:perl-module-math-bigint-trace += "perl-module-math-bigint" |
1229 | RDEPENDS_perl-module-math-bigint-trace += "perl-module-overload" | 1229 | RDEPENDS:perl-module-math-bigint-trace += "perl-module-overload" |
1230 | RDEPENDS_perl-module-math-bigint-trace += "perl-module-strict" | 1230 | RDEPENDS:perl-module-math-bigint-trace += "perl-module-strict" |
1231 | RDEPENDS_perl-module-math-bigint-trace += "perl-module-warnings" | 1231 | RDEPENDS:perl-module-math-bigint-trace += "perl-module-warnings" |
1232 | RDEPENDS_perl-module-math-bigrat += "perl-module-math-bigfloat" | 1232 | RDEPENDS:perl-module-math-bigrat += "perl-module-math-bigfloat" |
1233 | RDEPENDS_perl-module-math-bigrat += "perl-module-math-bigint" | 1233 | RDEPENDS:perl-module-math-bigrat += "perl-module-math-bigint" |
1234 | RDEPENDS_perl-module-math-bigrat += "perl-module-overload" | 1234 | RDEPENDS:perl-module-math-bigrat += "perl-module-overload" |
1235 | RDEPENDS_perl-module-math-bigrat += "perl-module-strict" | 1235 | RDEPENDS:perl-module-math-bigrat += "perl-module-strict" |
1236 | RDEPENDS_perl-module-math-bigrat += "perl-module-warnings" | 1236 | RDEPENDS:perl-module-math-bigrat += "perl-module-warnings" |
1237 | RDEPENDS_perl-module-math-complex += "perl-module-config" | 1237 | RDEPENDS:perl-module-math-complex += "perl-module-config" |
1238 | RDEPENDS_perl-module-math-complex += "perl-module-exporter" | 1238 | RDEPENDS:perl-module-math-complex += "perl-module-exporter" |
1239 | RDEPENDS_perl-module-math-complex += "perl-module-overload" | 1239 | RDEPENDS:perl-module-math-complex += "perl-module-overload" |
1240 | RDEPENDS_perl-module-math-complex += "perl-module-strict" | 1240 | RDEPENDS:perl-module-math-complex += "perl-module-strict" |
1241 | RDEPENDS_perl-module-math-complex += "perl-module-warnings" | 1241 | RDEPENDS:perl-module-math-complex += "perl-module-warnings" |
1242 | RDEPENDS_perl-module-math-trig += "perl-module-exporter" | 1242 | RDEPENDS:perl-module-math-trig += "perl-module-exporter" |
1243 | RDEPENDS_perl-module-math-trig += "perl-module-math-complex" | 1243 | RDEPENDS:perl-module-math-trig += "perl-module-math-complex" |
1244 | RDEPENDS_perl-module-math-trig += "perl-module-strict" | 1244 | RDEPENDS:perl-module-math-trig += "perl-module-strict" |
1245 | RDEPENDS_perl-module-memoize-anydbm-file += "perl-module-vars" | 1245 | RDEPENDS:perl-module-memoize-anydbm-file += "perl-module-vars" |
1246 | RDEPENDS_perl-module-memoize += "perl-module-config" | 1246 | RDEPENDS:perl-module-memoize += "perl-module-config" |
1247 | RDEPENDS_perl-module-memoize += "perl-module-exporter" | 1247 | RDEPENDS:perl-module-memoize += "perl-module-exporter" |
1248 | RDEPENDS_perl-module-memoize += "perl-module-strict" | 1248 | RDEPENDS:perl-module-memoize += "perl-module-strict" |
1249 | RDEPENDS_perl-module-memoize += "perl-module-vars" | 1249 | RDEPENDS:perl-module-memoize += "perl-module-vars" |
1250 | RDEPENDS_perl-module-memoize-sdbm-file += "perl-module-sdbm-file" | 1250 | RDEPENDS:perl-module-memoize-sdbm-file += "perl-module-sdbm-file" |
1251 | RDEPENDS_perl-module-memoize-storable += "perl-module-storable" | 1251 | RDEPENDS:perl-module-memoize-storable += "perl-module-storable" |
1252 | RDEPENDS_perl-module-mime-base64 += "perl-module-exporter" | 1252 | RDEPENDS:perl-module-mime-base64 += "perl-module-exporter" |
1253 | RDEPENDS_perl-module-mime-base64 += "perl-module-strict" | 1253 | RDEPENDS:perl-module-mime-base64 += "perl-module-strict" |
1254 | RDEPENDS_perl-module-mime-base64 += "perl-module-vars" | 1254 | RDEPENDS:perl-module-mime-base64 += "perl-module-vars" |
1255 | RDEPENDS_perl-module-mime-base64 += "perl-module-xsloader" | 1255 | RDEPENDS:perl-module-mime-base64 += "perl-module-xsloader" |
1256 | RDEPENDS_perl-module-mime-quotedprint += "perl-module-exporter" | 1256 | RDEPENDS:perl-module-mime-quotedprint += "perl-module-exporter" |
1257 | RDEPENDS_perl-module-mime-quotedprint += "perl-module-mime-base64" | 1257 | RDEPENDS:perl-module-mime-quotedprint += "perl-module-mime-base64" |
1258 | RDEPENDS_perl-module-mime-quotedprint += "perl-module-strict" | 1258 | RDEPENDS:perl-module-mime-quotedprint += "perl-module-strict" |
1259 | RDEPENDS_perl-module-mime-quotedprint += "perl-module-vars" | 1259 | RDEPENDS:perl-module-mime-quotedprint += "perl-module-vars" |
1260 | RDEPENDS_perl-module-mro += "perl-module-strict" | 1260 | RDEPENDS:perl-module-mro += "perl-module-strict" |
1261 | RDEPENDS_perl-module-mro += "perl-module-warnings" | 1261 | RDEPENDS:perl-module-mro += "perl-module-warnings" |
1262 | RDEPENDS_perl-module-mro += "perl-module-xsloader" | 1262 | RDEPENDS:perl-module-mro += "perl-module-xsloader" |
1263 | RDEPENDS_perl-module-net-cmd += "perl-module-constant" | 1263 | RDEPENDS:perl-module-net-cmd += "perl-module-constant" |
1264 | RDEPENDS_perl-module-net-cmd += "perl-module-errno" | 1264 | RDEPENDS:perl-module-net-cmd += "perl-module-errno" |
1265 | RDEPENDS_perl-module-net-cmd += "perl-module-exporter" | 1265 | RDEPENDS:perl-module-net-cmd += "perl-module-exporter" |
1266 | RDEPENDS_perl-module-net-cmd += "perl-module-strict" | 1266 | RDEPENDS:perl-module-net-cmd += "perl-module-strict" |
1267 | RDEPENDS_perl-module-net-cmd += "perl-module-warnings" | 1267 | RDEPENDS:perl-module-net-cmd += "perl-module-warnings" |
1268 | RDEPENDS_perl-module-net-config += "perl-module-exporter" | 1268 | RDEPENDS:perl-module-net-config += "perl-module-exporter" |
1269 | RDEPENDS_perl-module-net-config += "perl-module-socket" | 1269 | RDEPENDS:perl-module-net-config += "perl-module-socket" |
1270 | RDEPENDS_perl-module-net-config += "perl-module-strict" | 1270 | RDEPENDS:perl-module-net-config += "perl-module-strict" |
1271 | RDEPENDS_perl-module-net-config += "perl-module-warnings" | 1271 | RDEPENDS:perl-module-net-config += "perl-module-warnings" |
1272 | RDEPENDS_perl-module-net-domain += "perl-module-exporter" | 1272 | RDEPENDS:perl-module-net-domain += "perl-module-exporter" |
1273 | RDEPENDS_perl-module-net-domain += "perl-module-net-config" | 1273 | RDEPENDS:perl-module-net-domain += "perl-module-net-config" |
1274 | RDEPENDS_perl-module-net-domain += "perl-module-posix" | 1274 | RDEPENDS:perl-module-net-domain += "perl-module-posix" |
1275 | RDEPENDS_perl-module-net-domain += "perl-module-socket" | 1275 | RDEPENDS:perl-module-net-domain += "perl-module-socket" |
1276 | RDEPENDS_perl-module-net-domain += "perl-module-strict" | 1276 | RDEPENDS:perl-module-net-domain += "perl-module-strict" |
1277 | RDEPENDS_perl-module-net-domain += "perl-module-warnings" | 1277 | RDEPENDS:perl-module-net-domain += "perl-module-warnings" |
1278 | RDEPENDS_perl-module-net-ftp-a += "perl-module-net-ftp-dataconn" | 1278 | RDEPENDS:perl-module-net-ftp-a += "perl-module-net-ftp-dataconn" |
1279 | RDEPENDS_perl-module-net-ftp-a += "perl-module-strict" | 1279 | RDEPENDS:perl-module-net-ftp-a += "perl-module-strict" |
1280 | RDEPENDS_perl-module-net-ftp-a += "perl-module-warnings" | 1280 | RDEPENDS:perl-module-net-ftp-a += "perl-module-warnings" |
1281 | RDEPENDS_perl-module-net-ftp-dataconn += "perl-module-errno" | 1281 | RDEPENDS:perl-module-net-ftp-dataconn += "perl-module-errno" |
1282 | RDEPENDS_perl-module-net-ftp-dataconn += "perl-module-net-cmd" | 1282 | RDEPENDS:perl-module-net-ftp-dataconn += "perl-module-net-cmd" |
1283 | RDEPENDS_perl-module-net-ftp-dataconn += "perl-module-strict" | 1283 | RDEPENDS:perl-module-net-ftp-dataconn += "perl-module-strict" |
1284 | RDEPENDS_perl-module-net-ftp-dataconn += "perl-module-warnings" | 1284 | RDEPENDS:perl-module-net-ftp-dataconn += "perl-module-warnings" |
1285 | RDEPENDS_perl-module-net-ftp-e += "perl-module-net-ftp-i" | 1285 | RDEPENDS:perl-module-net-ftp-e += "perl-module-net-ftp-i" |
1286 | RDEPENDS_perl-module-net-ftp-e += "perl-module-strict" | 1286 | RDEPENDS:perl-module-net-ftp-e += "perl-module-strict" |
1287 | RDEPENDS_perl-module-net-ftp-e += "perl-module-warnings" | 1287 | RDEPENDS:perl-module-net-ftp-e += "perl-module-warnings" |
1288 | RDEPENDS_perl-module-net-ftp-i += "perl-module-net-ftp-dataconn" | 1288 | RDEPENDS:perl-module-net-ftp-i += "perl-module-net-ftp-dataconn" |
1289 | RDEPENDS_perl-module-net-ftp-i += "perl-module-strict" | 1289 | RDEPENDS:perl-module-net-ftp-i += "perl-module-strict" |
1290 | RDEPENDS_perl-module-net-ftp-i += "perl-module-warnings" | 1290 | RDEPENDS:perl-module-net-ftp-i += "perl-module-warnings" |
1291 | RDEPENDS_perl-module-net-ftp-l += "perl-module-net-ftp-i" | 1291 | RDEPENDS:perl-module-net-ftp-l += "perl-module-net-ftp-i" |
1292 | RDEPENDS_perl-module-net-ftp-l += "perl-module-strict" | 1292 | RDEPENDS:perl-module-net-ftp-l += "perl-module-strict" |
1293 | RDEPENDS_perl-module-net-ftp-l += "perl-module-warnings" | 1293 | RDEPENDS:perl-module-net-ftp-l += "perl-module-warnings" |
1294 | RDEPENDS_perl-module-net-ftp += "perl-module-constant" | 1294 | RDEPENDS:perl-module-net-ftp += "perl-module-constant" |
1295 | RDEPENDS_perl-module-net-ftp += "perl-module-fcntl" | 1295 | RDEPENDS:perl-module-net-ftp += "perl-module-fcntl" |
1296 | RDEPENDS_perl-module-net-ftp += "perl-module-file-basename" | 1296 | RDEPENDS:perl-module-net-ftp += "perl-module-file-basename" |
1297 | RDEPENDS_perl-module-net-ftp += "perl-module-io-socket" | 1297 | RDEPENDS:perl-module-net-ftp += "perl-module-io-socket" |
1298 | RDEPENDS_perl-module-net-ftp += "perl-module-io-socket-ip" | 1298 | RDEPENDS:perl-module-net-ftp += "perl-module-io-socket-ip" |
1299 | RDEPENDS_perl-module-net-ftp += "perl-module-net-cmd" | 1299 | RDEPENDS:perl-module-net-ftp += "perl-module-net-cmd" |
1300 | RDEPENDS_perl-module-net-ftp += "perl-module-net-config" | 1300 | RDEPENDS:perl-module-net-ftp += "perl-module-net-config" |
1301 | RDEPENDS_perl-module-net-ftp += "perl-module-net-ftp-a" | 1301 | RDEPENDS:perl-module-net-ftp += "perl-module-net-ftp-a" |
1302 | RDEPENDS_perl-module-net-ftp += "perl-module-net-netrc" | 1302 | RDEPENDS:perl-module-net-ftp += "perl-module-net-netrc" |
1303 | RDEPENDS_perl-module-net-ftp += "perl-module-socket" | 1303 | RDEPENDS:perl-module-net-ftp += "perl-module-socket" |
1304 | RDEPENDS_perl-module-net-ftp += "perl-module-strict" | 1304 | RDEPENDS:perl-module-net-ftp += "perl-module-strict" |
1305 | RDEPENDS_perl-module-net-ftp += "perl-module-time-local" | 1305 | RDEPENDS:perl-module-net-ftp += "perl-module-time-local" |
1306 | RDEPENDS_perl-module-net-ftp += "perl-module-warnings" | 1306 | RDEPENDS:perl-module-net-ftp += "perl-module-warnings" |
1307 | RDEPENDS_perl-module-net-hostent += "perl-module-class-struct" | 1307 | RDEPENDS:perl-module-net-hostent += "perl-module-class-struct" |
1308 | RDEPENDS_perl-module-net-hostent += "perl-module-exporter" | 1308 | RDEPENDS:perl-module-net-hostent += "perl-module-exporter" |
1309 | RDEPENDS_perl-module-net-hostent += "perl-module-socket" | 1309 | RDEPENDS:perl-module-net-hostent += "perl-module-socket" |
1310 | RDEPENDS_perl-module-net-hostent += "perl-module-strict" | 1310 | RDEPENDS:perl-module-net-hostent += "perl-module-strict" |
1311 | RDEPENDS_perl-module-net-netent += "perl-module-class-struct" | 1311 | RDEPENDS:perl-module-net-netent += "perl-module-class-struct" |
1312 | RDEPENDS_perl-module-net-netent += "perl-module-exporter" | 1312 | RDEPENDS:perl-module-net-netent += "perl-module-exporter" |
1313 | RDEPENDS_perl-module-net-netent += "perl-module-socket" | 1313 | RDEPENDS:perl-module-net-netent += "perl-module-socket" |
1314 | RDEPENDS_perl-module-net-netent += "perl-module-strict" | 1314 | RDEPENDS:perl-module-net-netent += "perl-module-strict" |
1315 | RDEPENDS_perl-module-net-netrc += "perl-module-filehandle" | 1315 | RDEPENDS:perl-module-net-netrc += "perl-module-filehandle" |
1316 | RDEPENDS_perl-module-net-netrc += "perl-module-strict" | 1316 | RDEPENDS:perl-module-net-netrc += "perl-module-strict" |
1317 | RDEPENDS_perl-module-net-netrc += "perl-module-warnings" | 1317 | RDEPENDS:perl-module-net-netrc += "perl-module-warnings" |
1318 | RDEPENDS_perl-module-net-nntp += "perl-module-io-socket" | 1318 | RDEPENDS:perl-module-net-nntp += "perl-module-io-socket" |
1319 | RDEPENDS_perl-module-net-nntp += "perl-module-io-socket-ip" | 1319 | RDEPENDS:perl-module-net-nntp += "perl-module-io-socket-ip" |
1320 | RDEPENDS_perl-module-net-nntp += "perl-module-net-cmd" | 1320 | RDEPENDS:perl-module-net-nntp += "perl-module-net-cmd" |
1321 | RDEPENDS_perl-module-net-nntp += "perl-module-net-config" | 1321 | RDEPENDS:perl-module-net-nntp += "perl-module-net-config" |
1322 | RDEPENDS_perl-module-net-nntp += "perl-module-strict" | 1322 | RDEPENDS:perl-module-net-nntp += "perl-module-strict" |
1323 | RDEPENDS_perl-module-net-nntp += "perl-module-time-local" | 1323 | RDEPENDS:perl-module-net-nntp += "perl-module-time-local" |
1324 | RDEPENDS_perl-module-net-nntp += "perl-module-warnings" | 1324 | RDEPENDS:perl-module-net-nntp += "perl-module-warnings" |
1325 | RDEPENDS_perl-module-net-ping += "perl-module-constant" | 1325 | RDEPENDS:perl-module-net-ping += "perl-module-constant" |
1326 | RDEPENDS_perl-module-net-ping += "perl-module-exporter" | 1326 | RDEPENDS:perl-module-net-ping += "perl-module-exporter" |
1327 | RDEPENDS_perl-module-net-ping += "perl-module-fcntl" | 1327 | RDEPENDS:perl-module-net-ping += "perl-module-fcntl" |
1328 | RDEPENDS_perl-module-net-ping += "perl-module-filehandle" | 1328 | RDEPENDS:perl-module-net-ping += "perl-module-filehandle" |
1329 | RDEPENDS_perl-module-net-ping += "perl-module-io-socket-inet" | 1329 | RDEPENDS:perl-module-net-ping += "perl-module-io-socket-inet" |
1330 | RDEPENDS_perl-module-net-ping += "perl-module-posix" | 1330 | RDEPENDS:perl-module-net-ping += "perl-module-posix" |
1331 | RDEPENDS_perl-module-net-ping += "perl-module-socket" | 1331 | RDEPENDS:perl-module-net-ping += "perl-module-socket" |
1332 | RDEPENDS_perl-module-net-ping += "perl-module-strict" | 1332 | RDEPENDS:perl-module-net-ping += "perl-module-strict" |
1333 | RDEPENDS_perl-module-net-ping += "perl-module-time-hires" | 1333 | RDEPENDS:perl-module-net-ping += "perl-module-time-hires" |
1334 | RDEPENDS_perl-module-net-pop3 += "perl-module-io-socket" | 1334 | RDEPENDS:perl-module-net-pop3 += "perl-module-io-socket" |
1335 | RDEPENDS_perl-module-net-pop3 += "perl-module-io-socket-ip" | 1335 | RDEPENDS:perl-module-net-pop3 += "perl-module-io-socket-ip" |
1336 | RDEPENDS_perl-module-net-pop3 += "perl-module-mime-base64" | 1336 | RDEPENDS:perl-module-net-pop3 += "perl-module-mime-base64" |
1337 | RDEPENDS_perl-module-net-pop3 += "perl-module-net-cmd" | 1337 | RDEPENDS:perl-module-net-pop3 += "perl-module-net-cmd" |
1338 | RDEPENDS_perl-module-net-pop3 += "perl-module-net-config" | 1338 | RDEPENDS:perl-module-net-pop3 += "perl-module-net-config" |
1339 | RDEPENDS_perl-module-net-pop3 += "perl-module-net-netrc" | 1339 | RDEPENDS:perl-module-net-pop3 += "perl-module-net-netrc" |
1340 | RDEPENDS_perl-module-net-pop3 += "perl-module-strict" | 1340 | RDEPENDS:perl-module-net-pop3 += "perl-module-strict" |
1341 | RDEPENDS_perl-module-net-pop3 += "perl-module-warnings" | 1341 | RDEPENDS:perl-module-net-pop3 += "perl-module-warnings" |
1342 | RDEPENDS_perl-module-net-protoent += "perl-module-class-struct" | 1342 | RDEPENDS:perl-module-net-protoent += "perl-module-class-struct" |
1343 | RDEPENDS_perl-module-net-protoent += "perl-module-exporter" | 1343 | RDEPENDS:perl-module-net-protoent += "perl-module-exporter" |
1344 | RDEPENDS_perl-module-net-protoent += "perl-module-strict" | 1344 | RDEPENDS:perl-module-net-protoent += "perl-module-strict" |
1345 | RDEPENDS_perl-module-net-servent += "perl-module-class-struct" | 1345 | RDEPENDS:perl-module-net-servent += "perl-module-class-struct" |
1346 | RDEPENDS_perl-module-net-servent += "perl-module-exporter" | 1346 | RDEPENDS:perl-module-net-servent += "perl-module-exporter" |
1347 | RDEPENDS_perl-module-net-servent += "perl-module-strict" | 1347 | RDEPENDS:perl-module-net-servent += "perl-module-strict" |
1348 | RDEPENDS_perl-module-net-smtp += "perl-module-io-socket" | 1348 | RDEPENDS:perl-module-net-smtp += "perl-module-io-socket" |
1349 | RDEPENDS_perl-module-net-smtp += "perl-module-io-socket-ip" | 1349 | RDEPENDS:perl-module-net-smtp += "perl-module-io-socket-ip" |
1350 | RDEPENDS_perl-module-net-smtp += "perl-module-mime-base64" | 1350 | RDEPENDS:perl-module-net-smtp += "perl-module-mime-base64" |
1351 | RDEPENDS_perl-module-net-smtp += "perl-module-net-cmd" | 1351 | RDEPENDS:perl-module-net-smtp += "perl-module-net-cmd" |
1352 | RDEPENDS_perl-module-net-smtp += "perl-module-net-config" | 1352 | RDEPENDS:perl-module-net-smtp += "perl-module-net-config" |
1353 | RDEPENDS_perl-module-net-smtp += "perl-module-socket" | 1353 | RDEPENDS:perl-module-net-smtp += "perl-module-socket" |
1354 | RDEPENDS_perl-module-net-smtp += "perl-module-strict" | 1354 | RDEPENDS:perl-module-net-smtp += "perl-module-strict" |
1355 | RDEPENDS_perl-module-net-smtp += "perl-module-warnings" | 1355 | RDEPENDS:perl-module-net-smtp += "perl-module-warnings" |
1356 | RDEPENDS_perl-module-net-time += "perl-module-exporter" | 1356 | RDEPENDS:perl-module-net-time += "perl-module-exporter" |
1357 | RDEPENDS_perl-module-net-time += "perl-module-io-select" | 1357 | RDEPENDS:perl-module-net-time += "perl-module-io-select" |
1358 | RDEPENDS_perl-module-net-time += "perl-module-io-socket" | 1358 | RDEPENDS:perl-module-net-time += "perl-module-io-socket" |
1359 | RDEPENDS_perl-module-net-time += "perl-module-net-config" | 1359 | RDEPENDS:perl-module-net-time += "perl-module-net-config" |
1360 | RDEPENDS_perl-module-net-time += "perl-module-strict" | 1360 | RDEPENDS:perl-module-net-time += "perl-module-strict" |
1361 | RDEPENDS_perl-module-net-time += "perl-module-warnings" | 1361 | RDEPENDS:perl-module-net-time += "perl-module-warnings" |
1362 | RDEPENDS_perl-module-next += "perl-module-overload" | 1362 | RDEPENDS:perl-module-next += "perl-module-overload" |
1363 | RDEPENDS_perl-module-next += "perl-module-strict" | 1363 | RDEPENDS:perl-module-next += "perl-module-strict" |
1364 | RDEPENDS_perl-module-next += "perl-module-warnings" | 1364 | RDEPENDS:perl-module-next += "perl-module-warnings" |
1365 | RDEPENDS_perl-module-ok += "perl-module-strict" | 1365 | RDEPENDS:perl-module-ok += "perl-module-strict" |
1366 | RDEPENDS_perl-module-ok += "perl-module-test-more" | 1366 | RDEPENDS:perl-module-ok += "perl-module-test-more" |
1367 | RDEPENDS_perl-module-opcode += "perl-module-exporter" | 1367 | RDEPENDS:perl-module-opcode += "perl-module-exporter" |
1368 | RDEPENDS_perl-module-opcode += "perl-module-strict" | 1368 | RDEPENDS:perl-module-opcode += "perl-module-strict" |
1369 | RDEPENDS_perl-module-opcode += "perl-module-subs" | 1369 | RDEPENDS:perl-module-opcode += "perl-module-subs" |
1370 | RDEPENDS_perl-module-opcode += "perl-module-xsloader" | 1370 | RDEPENDS:perl-module-opcode += "perl-module-xsloader" |
1371 | RDEPENDS_perl-module-open += "perl-module-encode" | 1371 | RDEPENDS:perl-module-open += "perl-module-encode" |
1372 | RDEPENDS_perl-module-open += "perl-module-encoding" | 1372 | RDEPENDS:perl-module-open += "perl-module-encoding" |
1373 | RDEPENDS_perl-module-open += "perl-module-warnings" | 1373 | RDEPENDS:perl-module-open += "perl-module-warnings" |
1374 | RDEPENDS_perl-module-o += "perl-module-b" | 1374 | RDEPENDS:perl-module-o += "perl-module-b" |
1375 | RDEPENDS_perl-module-ops += "perl-module-opcode" | 1375 | RDEPENDS:perl-module-ops += "perl-module-opcode" |
1376 | RDEPENDS_perl-module-overloading += "perl-module-overload-numbers" | 1376 | RDEPENDS:perl-module-overloading += "perl-module-overload-numbers" |
1377 | RDEPENDS_perl-module-overloading += "perl-module-warnings" | 1377 | RDEPENDS:perl-module-overloading += "perl-module-warnings" |
1378 | RDEPENDS_perl-module-overload += "perl-module-mro" | 1378 | RDEPENDS:perl-module-overload += "perl-module-mro" |
1379 | RDEPENDS_perl-module-overload += "perl-module-warnings-register" | 1379 | RDEPENDS:perl-module-overload += "perl-module-warnings-register" |
1380 | RDEPENDS_perl-module-params-check += "perl-module-exporter" | 1380 | RDEPENDS:perl-module-params-check += "perl-module-exporter" |
1381 | RDEPENDS_perl-module-params-check += "perl-module-locale-maketext-simple" | 1381 | RDEPENDS:perl-module-params-check += "perl-module-locale-maketext-simple" |
1382 | RDEPENDS_perl-module-params-check += "perl-module-strict" | 1382 | RDEPENDS:perl-module-params-check += "perl-module-strict" |
1383 | RDEPENDS_perl-module-params-check += "perl-module-vars" | 1383 | RDEPENDS:perl-module-params-check += "perl-module-vars" |
1384 | RDEPENDS_perl-module-parent += "perl-module-strict" | 1384 | RDEPENDS:perl-module-parent += "perl-module-strict" |
1385 | RDEPENDS_perl-module-perlfaq += "perl-module-strict" | 1385 | RDEPENDS:perl-module-perlfaq += "perl-module-strict" |
1386 | RDEPENDS_perl-module-perlfaq += "perl-module-warnings" | 1386 | RDEPENDS:perl-module-perlfaq += "perl-module-warnings" |
1387 | RDEPENDS_perl-module-perlio-encoding += "perl-module-strict" | 1387 | RDEPENDS:perl-module-perlio-encoding += "perl-module-strict" |
1388 | RDEPENDS_perl-module-perlio-encoding += "perl-module-xsloader" | 1388 | RDEPENDS:perl-module-perlio-encoding += "perl-module-xsloader" |
1389 | RDEPENDS_perl-module-perlio-mmap += "perl-module-strict" | 1389 | RDEPENDS:perl-module-perlio-mmap += "perl-module-strict" |
1390 | RDEPENDS_perl-module-perlio-mmap += "perl-module-warnings" | 1390 | RDEPENDS:perl-module-perlio-mmap += "perl-module-warnings" |
1391 | RDEPENDS_perl-module-perlio-mmap += "perl-module-xsloader" | 1391 | RDEPENDS:perl-module-perlio-mmap += "perl-module-xsloader" |
1392 | RDEPENDS_perl-module-perlio-scalar += "perl-module-xsloader" | 1392 | RDEPENDS:perl-module-perlio-scalar += "perl-module-xsloader" |
1393 | RDEPENDS_perl-module-perlio-via += "perl-module-xsloader" | 1393 | RDEPENDS:perl-module-perlio-via += "perl-module-xsloader" |
1394 | RDEPENDS_perl-module-perlio-via-quotedprint += "perl-module-mime-quotedprint" | 1394 | RDEPENDS:perl-module-perlio-via-quotedprint += "perl-module-mime-quotedprint" |
1395 | RDEPENDS_perl-module-perlio-via-quotedprint += "perl-module-strict" | 1395 | RDEPENDS:perl-module-perlio-via-quotedprint += "perl-module-strict" |
1396 | RDEPENDS_perl-module-pod-checker += "perl-module-base" | 1396 | RDEPENDS:perl-module-pod-checker += "perl-module-base" |
1397 | RDEPENDS_perl-module-pod-checker += "perl-module-exporter" | 1397 | RDEPENDS:perl-module-pod-checker += "perl-module-exporter" |
1398 | RDEPENDS_perl-module-pod-checker += "perl-module-strict" | 1398 | RDEPENDS:perl-module-pod-checker += "perl-module-strict" |
1399 | RDEPENDS_perl-module-pod-checker += "perl-module-warnings" | 1399 | RDEPENDS:perl-module-pod-checker += "perl-module-warnings" |
1400 | RDEPENDS_perl-module-pod-escapes += "perl-module-exporter" | 1400 | RDEPENDS:perl-module-pod-escapes += "perl-module-exporter" |
1401 | RDEPENDS_perl-module-pod-escapes += "perl-module-strict" | 1401 | RDEPENDS:perl-module-pod-escapes += "perl-module-strict" |
1402 | RDEPENDS_perl-module-pod-escapes += "perl-module-vars" | 1402 | RDEPENDS:perl-module-pod-escapes += "perl-module-vars" |
1403 | RDEPENDS_perl-module-pod-escapes += "perl-module-warnings" | 1403 | RDEPENDS:perl-module-pod-escapes += "perl-module-warnings" |
1404 | RDEPENDS_perl-module-pod-functions += "perl-module-exporter" | 1404 | RDEPENDS:perl-module-pod-functions += "perl-module-exporter" |
1405 | RDEPENDS_perl-module-pod-functions += "perl-module-strict" | 1405 | RDEPENDS:perl-module-pod-functions += "perl-module-strict" |
1406 | RDEPENDS_perl-module-pod-man += "perl-module-file-basename" | 1406 | RDEPENDS:perl-module-pod-man += "perl-module-file-basename" |
1407 | RDEPENDS_perl-module-pod-man += "perl-module-pod-simple" | 1407 | RDEPENDS:perl-module-pod-man += "perl-module-pod-simple" |
1408 | RDEPENDS_perl-module-pod-man += "perl-module-strict" | 1408 | RDEPENDS:perl-module-pod-man += "perl-module-strict" |
1409 | RDEPENDS_perl-module-pod-man += "perl-module-subs" | 1409 | RDEPENDS:perl-module-pod-man += "perl-module-subs" |
1410 | RDEPENDS_perl-module-pod-man += "perl-module-vars" | 1410 | RDEPENDS:perl-module-pod-man += "perl-module-vars" |
1411 | RDEPENDS_perl-module-pod-man += "perl-module-warnings" | 1411 | RDEPENDS:perl-module-pod-man += "perl-module-warnings" |
1412 | RDEPENDS_perl-module-pod-parselink += "perl-module-exporter" | 1412 | RDEPENDS:perl-module-pod-parselink += "perl-module-exporter" |
1413 | RDEPENDS_perl-module-pod-parselink += "perl-module-strict" | 1413 | RDEPENDS:perl-module-pod-parselink += "perl-module-strict" |
1414 | RDEPENDS_perl-module-pod-parselink += "perl-module-vars" | 1414 | RDEPENDS:perl-module-pod-parselink += "perl-module-vars" |
1415 | RDEPENDS_perl-module-pod-parselink += "perl-module-warnings" | 1415 | RDEPENDS:perl-module-pod-parselink += "perl-module-warnings" |
1416 | RDEPENDS_perl-module-pod-perldoc-baseto += "perl-module-config" | 1416 | RDEPENDS:perl-module-pod-perldoc-baseto += "perl-module-config" |
1417 | RDEPENDS_perl-module-pod-perldoc-baseto += "perl-module-strict" | 1417 | RDEPENDS:perl-module-pod-perldoc-baseto += "perl-module-strict" |
1418 | RDEPENDS_perl-module-pod-perldoc-baseto += "perl-module-vars" | 1418 | RDEPENDS:perl-module-pod-perldoc-baseto += "perl-module-vars" |
1419 | RDEPENDS_perl-module-pod-perldoc-baseto += "perl-module-warnings" | 1419 | RDEPENDS:perl-module-pod-perldoc-baseto += "perl-module-warnings" |
1420 | RDEPENDS_perl-module-pod-perldoc-getoptsoo += "perl-module-strict" | 1420 | RDEPENDS:perl-module-pod-perldoc-getoptsoo += "perl-module-strict" |
1421 | RDEPENDS_perl-module-pod-perldoc-getoptsoo += "perl-module-vars" | 1421 | RDEPENDS:perl-module-pod-perldoc-getoptsoo += "perl-module-vars" |
1422 | RDEPENDS_perl-module-pod-perldoc += "perl-module-config" | 1422 | RDEPENDS:perl-module-pod-perldoc += "perl-module-config" |
1423 | RDEPENDS_perl-module-pod-perldoc += "perl-module-encode" | 1423 | RDEPENDS:perl-module-pod-perldoc += "perl-module-encode" |
1424 | RDEPENDS_perl-module-pod-perldoc += "perl-module-fcntl" | 1424 | RDEPENDS:perl-module-pod-perldoc += "perl-module-fcntl" |
1425 | RDEPENDS_perl-module-pod-perldoc += "perl-module-file-basename" | 1425 | RDEPENDS:perl-module-pod-perldoc += "perl-module-file-basename" |
1426 | RDEPENDS_perl-module-pod-perldoc += "perl-module-file-temp" | 1426 | RDEPENDS:perl-module-pod-perldoc += "perl-module-file-temp" |
1427 | RDEPENDS_perl-module-pod-perldoc += "perl-module-pod-perldoc-getoptsoo" | 1427 | RDEPENDS:perl-module-pod-perldoc += "perl-module-pod-perldoc-getoptsoo" |
1428 | RDEPENDS_perl-module-pod-perldoc += "perl-module-strict" | 1428 | RDEPENDS:perl-module-pod-perldoc += "perl-module-strict" |
1429 | RDEPENDS_perl-module-pod-perldoc += "perl-module-text-parsewords" | 1429 | RDEPENDS:perl-module-pod-perldoc += "perl-module-text-parsewords" |
1430 | RDEPENDS_perl-module-pod-perldoc += "perl-module-vars" | 1430 | RDEPENDS:perl-module-pod-perldoc += "perl-module-vars" |
1431 | RDEPENDS_perl-module-pod-perldoc += "perl-module-warnings" | 1431 | RDEPENDS:perl-module-pod-perldoc += "perl-module-warnings" |
1432 | RDEPENDS_perl-module-pod-perldoc-toansi += "perl-module-parent" | 1432 | RDEPENDS:perl-module-pod-perldoc-toansi += "perl-module-parent" |
1433 | RDEPENDS_perl-module-pod-perldoc-toansi += "perl-module-pod-text-color" | 1433 | RDEPENDS:perl-module-pod-perldoc-toansi += "perl-module-pod-text-color" |
1434 | RDEPENDS_perl-module-pod-perldoc-toansi += "perl-module-strict" | 1434 | RDEPENDS:perl-module-pod-perldoc-toansi += "perl-module-strict" |
1435 | RDEPENDS_perl-module-pod-perldoc-toansi += "perl-module-vars" | 1435 | RDEPENDS:perl-module-pod-perldoc-toansi += "perl-module-vars" |
1436 | RDEPENDS_perl-module-pod-perldoc-toansi += "perl-module-warnings" | 1436 | RDEPENDS:perl-module-pod-perldoc-toansi += "perl-module-warnings" |
1437 | RDEPENDS_perl-module-pod-perldoc-tochecker += "perl-module-pod-checker" | 1437 | RDEPENDS:perl-module-pod-perldoc-tochecker += "perl-module-pod-checker" |
1438 | RDEPENDS_perl-module-pod-perldoc-tochecker += "perl-module-strict" | 1438 | RDEPENDS:perl-module-pod-perldoc-tochecker += "perl-module-strict" |
1439 | RDEPENDS_perl-module-pod-perldoc-tochecker += "perl-module-vars" | 1439 | RDEPENDS:perl-module-pod-perldoc-tochecker += "perl-module-vars" |
1440 | RDEPENDS_perl-module-pod-perldoc-tochecker += "perl-module-warnings" | 1440 | RDEPENDS:perl-module-pod-perldoc-tochecker += "perl-module-warnings" |
1441 | RDEPENDS_perl-module-pod-perldoc-toman += "perl-module-encode" | 1441 | RDEPENDS:perl-module-pod-perldoc-toman += "perl-module-encode" |
1442 | RDEPENDS_perl-module-pod-perldoc-toman += "perl-module-io-handle" | 1442 | RDEPENDS:perl-module-pod-perldoc-toman += "perl-module-io-handle" |
1443 | RDEPENDS_perl-module-pod-perldoc-toman += "perl-module-io-select" | 1443 | RDEPENDS:perl-module-pod-perldoc-toman += "perl-module-io-select" |
1444 | RDEPENDS_perl-module-pod-perldoc-toman += "perl-module-ipc-open3" | 1444 | RDEPENDS:perl-module-pod-perldoc-toman += "perl-module-ipc-open3" |
1445 | RDEPENDS_perl-module-pod-perldoc-toman += "perl-module-parent" | 1445 | RDEPENDS:perl-module-pod-perldoc-toman += "perl-module-parent" |
1446 | RDEPENDS_perl-module-pod-perldoc-toman += "perl-module-pod-man" | 1446 | RDEPENDS:perl-module-pod-perldoc-toman += "perl-module-pod-man" |
1447 | RDEPENDS_perl-module-pod-perldoc-toman += "perl-module-pod-perldoc-topod" | 1447 | RDEPENDS:perl-module-pod-perldoc-toman += "perl-module-pod-perldoc-topod" |
1448 | RDEPENDS_perl-module-pod-perldoc-toman += "perl-module-strict" | 1448 | RDEPENDS:perl-module-pod-perldoc-toman += "perl-module-strict" |
1449 | RDEPENDS_perl-module-pod-perldoc-toman += "perl-module-vars" | 1449 | RDEPENDS:perl-module-pod-perldoc-toman += "perl-module-vars" |
1450 | RDEPENDS_perl-module-pod-perldoc-toman += "perl-module-warnings" | 1450 | RDEPENDS:perl-module-pod-perldoc-toman += "perl-module-warnings" |
1451 | RDEPENDS_perl-module-pod-perldoc-tonroff += "perl-module-parent" | 1451 | RDEPENDS:perl-module-pod-perldoc-tonroff += "perl-module-parent" |
1452 | RDEPENDS_perl-module-pod-perldoc-tonroff += "perl-module-pod-man" | 1452 | RDEPENDS:perl-module-pod-perldoc-tonroff += "perl-module-pod-man" |
1453 | RDEPENDS_perl-module-pod-perldoc-tonroff += "perl-module-strict" | 1453 | RDEPENDS:perl-module-pod-perldoc-tonroff += "perl-module-strict" |
1454 | RDEPENDS_perl-module-pod-perldoc-tonroff += "perl-module-vars" | 1454 | RDEPENDS:perl-module-pod-perldoc-tonroff += "perl-module-vars" |
1455 | RDEPENDS_perl-module-pod-perldoc-tonroff += "perl-module-warnings" | 1455 | RDEPENDS:perl-module-pod-perldoc-tonroff += "perl-module-warnings" |
1456 | RDEPENDS_perl-module-pod-perldoc-topod += "perl-module-parent" | 1456 | RDEPENDS:perl-module-pod-perldoc-topod += "perl-module-parent" |
1457 | RDEPENDS_perl-module-pod-perldoc-topod += "perl-module-strict" | 1457 | RDEPENDS:perl-module-pod-perldoc-topod += "perl-module-strict" |
1458 | RDEPENDS_perl-module-pod-perldoc-topod += "perl-module-vars" | 1458 | RDEPENDS:perl-module-pod-perldoc-topod += "perl-module-vars" |
1459 | RDEPENDS_perl-module-pod-perldoc-topod += "perl-module-warnings" | 1459 | RDEPENDS:perl-module-pod-perldoc-topod += "perl-module-warnings" |
1460 | RDEPENDS_perl-module-pod-perldoc-tortf += "perl-module-parent" | 1460 | RDEPENDS:perl-module-pod-perldoc-tortf += "perl-module-parent" |
1461 | RDEPENDS_perl-module-pod-perldoc-tortf += "perl-module-strict" | 1461 | RDEPENDS:perl-module-pod-perldoc-tortf += "perl-module-strict" |
1462 | RDEPENDS_perl-module-pod-perldoc-tortf += "perl-module-vars" | 1462 | RDEPENDS:perl-module-pod-perldoc-tortf += "perl-module-vars" |
1463 | RDEPENDS_perl-module-pod-perldoc-tortf += "perl-module-warnings" | 1463 | RDEPENDS:perl-module-pod-perldoc-tortf += "perl-module-warnings" |
1464 | RDEPENDS_perl-module-pod-perldoc-toterm += "perl-module-parent" | 1464 | RDEPENDS:perl-module-pod-perldoc-toterm += "perl-module-parent" |
1465 | RDEPENDS_perl-module-pod-perldoc-toterm += "perl-module-pod-text-termcap" | 1465 | RDEPENDS:perl-module-pod-perldoc-toterm += "perl-module-pod-text-termcap" |
1466 | RDEPENDS_perl-module-pod-perldoc-toterm += "perl-module-strict" | 1466 | RDEPENDS:perl-module-pod-perldoc-toterm += "perl-module-strict" |
1467 | RDEPENDS_perl-module-pod-perldoc-toterm += "perl-module-vars" | 1467 | RDEPENDS:perl-module-pod-perldoc-toterm += "perl-module-vars" |
1468 | RDEPENDS_perl-module-pod-perldoc-toterm += "perl-module-warnings" | 1468 | RDEPENDS:perl-module-pod-perldoc-toterm += "perl-module-warnings" |
1469 | RDEPENDS_perl-module-pod-perldoc-totext += "perl-module-parent" | 1469 | RDEPENDS:perl-module-pod-perldoc-totext += "perl-module-parent" |
1470 | RDEPENDS_perl-module-pod-perldoc-totext += "perl-module-pod-text" | 1470 | RDEPENDS:perl-module-pod-perldoc-totext += "perl-module-pod-text" |
1471 | RDEPENDS_perl-module-pod-perldoc-totext += "perl-module-strict" | 1471 | RDEPENDS:perl-module-pod-perldoc-totext += "perl-module-strict" |
1472 | RDEPENDS_perl-module-pod-perldoc-totext += "perl-module-vars" | 1472 | RDEPENDS:perl-module-pod-perldoc-totext += "perl-module-vars" |
1473 | RDEPENDS_perl-module-pod-perldoc-totext += "perl-module-warnings" | 1473 | RDEPENDS:perl-module-pod-perldoc-totext += "perl-module-warnings" |
1474 | RDEPENDS_perl-module-pod-perldoc-toxml += "perl-module-parent" | 1474 | RDEPENDS:perl-module-pod-perldoc-toxml += "perl-module-parent" |
1475 | RDEPENDS_perl-module-pod-perldoc-toxml += "perl-module-strict" | 1475 | RDEPENDS:perl-module-pod-perldoc-toxml += "perl-module-strict" |
1476 | RDEPENDS_perl-module-pod-perldoc-toxml += "perl-module-vars" | 1476 | RDEPENDS:perl-module-pod-perldoc-toxml += "perl-module-vars" |
1477 | RDEPENDS_perl-module-pod-perldoc-toxml += "perl-module-warnings" | 1477 | RDEPENDS:perl-module-pod-perldoc-toxml += "perl-module-warnings" |
1478 | RDEPENDS_perl-module-pod-simple-blackbox += "perl-module-if" | 1478 | RDEPENDS:perl-module-pod-simple-blackbox += "perl-module-if" |
1479 | RDEPENDS_perl-module-pod-simple-blackbox += "perl-module-integer" | 1479 | RDEPENDS:perl-module-pod-simple-blackbox += "perl-module-integer" |
1480 | RDEPENDS_perl-module-pod-simple-blackbox += "perl-module-pod-simple" | 1480 | RDEPENDS:perl-module-pod-simple-blackbox += "perl-module-pod-simple" |
1481 | RDEPENDS_perl-module-pod-simple-blackbox += "perl-module-pod-simple-transcode" | 1481 | RDEPENDS:perl-module-pod-simple-blackbox += "perl-module-pod-simple-transcode" |
1482 | RDEPENDS_perl-module-pod-simple-blackbox += "perl-module-strict" | 1482 | RDEPENDS:perl-module-pod-simple-blackbox += "perl-module-strict" |
1483 | RDEPENDS_perl-module-pod-simple-blackbox += "perl-module-vars" | 1483 | RDEPENDS:perl-module-pod-simple-blackbox += "perl-module-vars" |
1484 | RDEPENDS_perl-module-pod-simple-checker += "perl-module-pod-simple" | 1484 | RDEPENDS:perl-module-pod-simple-checker += "perl-module-pod-simple" |
1485 | RDEPENDS_perl-module-pod-simple-checker += "perl-module-pod-simple-methody" | 1485 | RDEPENDS:perl-module-pod-simple-checker += "perl-module-pod-simple-methody" |
1486 | RDEPENDS_perl-module-pod-simple-checker += "perl-module-strict" | 1486 | RDEPENDS:perl-module-pod-simple-checker += "perl-module-strict" |
1487 | RDEPENDS_perl-module-pod-simple-checker += "perl-module-text-wrap" | 1487 | RDEPENDS:perl-module-pod-simple-checker += "perl-module-text-wrap" |
1488 | RDEPENDS_perl-module-pod-simple-checker += "perl-module-vars" | 1488 | RDEPENDS:perl-module-pod-simple-checker += "perl-module-vars" |
1489 | RDEPENDS_perl-module-pod-simple-debug += "perl-module-pod-simple" | 1489 | RDEPENDS:perl-module-pod-simple-debug += "perl-module-pod-simple" |
1490 | RDEPENDS_perl-module-pod-simple-debug += "perl-module-strict" | 1490 | RDEPENDS:perl-module-pod-simple-debug += "perl-module-strict" |
1491 | RDEPENDS_perl-module-pod-simple-debug += "perl-module-vars" | 1491 | RDEPENDS:perl-module-pod-simple-debug += "perl-module-vars" |
1492 | RDEPENDS_perl-module-pod-simple-dumpastext += "perl-module-pod-simple" | 1492 | RDEPENDS:perl-module-pod-simple-dumpastext += "perl-module-pod-simple" |
1493 | RDEPENDS_perl-module-pod-simple-dumpastext += "perl-module-strict" | 1493 | RDEPENDS:perl-module-pod-simple-dumpastext += "perl-module-strict" |
1494 | RDEPENDS_perl-module-pod-simple-dumpasxml += "perl-module-pod-simple" | 1494 | RDEPENDS:perl-module-pod-simple-dumpasxml += "perl-module-pod-simple" |
1495 | RDEPENDS_perl-module-pod-simple-dumpasxml += "perl-module-strict" | 1495 | RDEPENDS:perl-module-pod-simple-dumpasxml += "perl-module-strict" |
1496 | RDEPENDS_perl-module-pod-simple-dumpasxml += "perl-module-text-wrap" | 1496 | RDEPENDS:perl-module-pod-simple-dumpasxml += "perl-module-text-wrap" |
1497 | RDEPENDS_perl-module-pod-simple-justpod += "perl-module-pod-simple-methody" | 1497 | RDEPENDS:perl-module-pod-simple-justpod += "perl-module-pod-simple-methody" |
1498 | RDEPENDS_perl-module-pod-simple-justpod += "perl-module-strict" | 1498 | RDEPENDS:perl-module-pod-simple-justpod += "perl-module-strict" |
1499 | RDEPENDS_perl-module-pod-simple-justpod += "perl-module-warnings" | 1499 | RDEPENDS:perl-module-pod-simple-justpod += "perl-module-warnings" |
1500 | RDEPENDS_perl-module-pod-simple-linksection += "perl-module-overload" | 1500 | RDEPENDS:perl-module-pod-simple-linksection += "perl-module-overload" |
1501 | RDEPENDS_perl-module-pod-simple-linksection += "perl-module-pod-simple-blackbox" | 1501 | RDEPENDS:perl-module-pod-simple-linksection += "perl-module-pod-simple-blackbox" |
1502 | RDEPENDS_perl-module-pod-simple-linksection += "perl-module-strict" | 1502 | RDEPENDS:perl-module-pod-simple-linksection += "perl-module-strict" |
1503 | RDEPENDS_perl-module-pod-simple-linksection += "perl-module-vars" | 1503 | RDEPENDS:perl-module-pod-simple-linksection += "perl-module-vars" |
1504 | RDEPENDS_perl-module-pod-simple-methody += "perl-module-pod-simple" | 1504 | RDEPENDS:perl-module-pod-simple-methody += "perl-module-pod-simple" |
1505 | RDEPENDS_perl-module-pod-simple-methody += "perl-module-strict" | 1505 | RDEPENDS:perl-module-pod-simple-methody += "perl-module-strict" |
1506 | RDEPENDS_perl-module-pod-simple-methody += "perl-module-vars" | 1506 | RDEPENDS:perl-module-pod-simple-methody += "perl-module-vars" |
1507 | RDEPENDS_perl-module-pod-simple += "perl-module-integer" | 1507 | RDEPENDS:perl-module-pod-simple += "perl-module-integer" |
1508 | RDEPENDS_perl-module-pod-simple += "perl-module-pod-escapes" | 1508 | RDEPENDS:perl-module-pod-simple += "perl-module-pod-escapes" |
1509 | RDEPENDS_perl-module-pod-simple += "perl-module-pod-simple-blackbox" | 1509 | RDEPENDS:perl-module-pod-simple += "perl-module-pod-simple-blackbox" |
1510 | RDEPENDS_perl-module-pod-simple += "perl-module-pod-simple-linksection" | 1510 | RDEPENDS:perl-module-pod-simple += "perl-module-pod-simple-linksection" |
1511 | RDEPENDS_perl-module-pod-simple += "perl-module-pod-simple-tiedoutfh" | 1511 | RDEPENDS:perl-module-pod-simple += "perl-module-pod-simple-tiedoutfh" |
1512 | RDEPENDS_perl-module-pod-simple += "perl-module-strict" | 1512 | RDEPENDS:perl-module-pod-simple += "perl-module-strict" |
1513 | RDEPENDS_perl-module-pod-simple += "perl-module-vars" | 1513 | RDEPENDS:perl-module-pod-simple += "perl-module-vars" |
1514 | RDEPENDS_perl-module-pod-simple-progress += "perl-module-strict" | 1514 | RDEPENDS:perl-module-pod-simple-progress += "perl-module-strict" |
1515 | RDEPENDS_perl-module-pod-simple-pullparserendtoken += "perl-module-pod-simple-pullparsertoken" | 1515 | RDEPENDS:perl-module-pod-simple-pullparserendtoken += "perl-module-pod-simple-pullparsertoken" |
1516 | RDEPENDS_perl-module-pod-simple-pullparserendtoken += "perl-module-strict" | 1516 | RDEPENDS:perl-module-pod-simple-pullparserendtoken += "perl-module-strict" |
1517 | RDEPENDS_perl-module-pod-simple-pullparserendtoken += "perl-module-vars" | 1517 | RDEPENDS:perl-module-pod-simple-pullparserendtoken += "perl-module-vars" |
1518 | RDEPENDS_perl-module-pod-simple-pullparser += "perl-module-pod-simple" | 1518 | RDEPENDS:perl-module-pod-simple-pullparser += "perl-module-pod-simple" |
1519 | RDEPENDS_perl-module-pod-simple-pullparser += "perl-module-pod-simple-pullparserendtoken" | 1519 | RDEPENDS:perl-module-pod-simple-pullparser += "perl-module-pod-simple-pullparserendtoken" |
1520 | RDEPENDS_perl-module-pod-simple-pullparser += "perl-module-pod-simple-pullparserstarttoken" | 1520 | RDEPENDS:perl-module-pod-simple-pullparser += "perl-module-pod-simple-pullparserstarttoken" |
1521 | RDEPENDS_perl-module-pod-simple-pullparser += "perl-module-pod-simple-pullparsertexttoken" | 1521 | RDEPENDS:perl-module-pod-simple-pullparser += "perl-module-pod-simple-pullparsertexttoken" |
1522 | RDEPENDS_perl-module-pod-simple-pullparser += "perl-module-strict" | 1522 | RDEPENDS:perl-module-pod-simple-pullparser += "perl-module-strict" |
1523 | RDEPENDS_perl-module-pod-simple-pullparserstarttoken += "perl-module-pod-simple-pullparsertoken" | 1523 | RDEPENDS:perl-module-pod-simple-pullparserstarttoken += "perl-module-pod-simple-pullparsertoken" |
1524 | RDEPENDS_perl-module-pod-simple-pullparserstarttoken += "perl-module-strict" | 1524 | RDEPENDS:perl-module-pod-simple-pullparserstarttoken += "perl-module-strict" |
1525 | RDEPENDS_perl-module-pod-simple-pullparserstarttoken += "perl-module-vars" | 1525 | RDEPENDS:perl-module-pod-simple-pullparserstarttoken += "perl-module-vars" |
1526 | RDEPENDS_perl-module-pod-simple-pullparsertexttoken += "perl-module-pod-simple-pullparsertoken" | 1526 | RDEPENDS:perl-module-pod-simple-pullparsertexttoken += "perl-module-pod-simple-pullparsertoken" |
1527 | RDEPENDS_perl-module-pod-simple-pullparsertexttoken += "perl-module-strict" | 1527 | RDEPENDS:perl-module-pod-simple-pullparsertexttoken += "perl-module-strict" |
1528 | RDEPENDS_perl-module-pod-simple-pullparsertexttoken += "perl-module-vars" | 1528 | RDEPENDS:perl-module-pod-simple-pullparsertexttoken += "perl-module-vars" |
1529 | RDEPENDS_perl-module-pod-simple-pullparsertoken += "perl-module-strict" | 1529 | RDEPENDS:perl-module-pod-simple-pullparsertoken += "perl-module-strict" |
1530 | RDEPENDS_perl-module-pod-simple-rtf += "perl-module-if" | 1530 | RDEPENDS:perl-module-pod-simple-rtf += "perl-module-if" |
1531 | RDEPENDS_perl-module-pod-simple-rtf += "perl-module-integer" | 1531 | RDEPENDS:perl-module-pod-simple-rtf += "perl-module-integer" |
1532 | RDEPENDS_perl-module-pod-simple-rtf += "perl-module-pod-simple-pullparser" | 1532 | RDEPENDS:perl-module-pod-simple-rtf += "perl-module-pod-simple-pullparser" |
1533 | RDEPENDS_perl-module-pod-simple-rtf += "perl-module-strict" | 1533 | RDEPENDS:perl-module-pod-simple-rtf += "perl-module-strict" |
1534 | RDEPENDS_perl-module-pod-simple-rtf += "perl-module-vars" | 1534 | RDEPENDS:perl-module-pod-simple-rtf += "perl-module-vars" |
1535 | RDEPENDS_perl-module-pod-simple-search += "perl-module-config" | 1535 | RDEPENDS:perl-module-pod-simple-search += "perl-module-config" |
1536 | RDEPENDS_perl-module-pod-simple-search += "perl-module-cwd" | 1536 | RDEPENDS:perl-module-pod-simple-search += "perl-module-cwd" |
1537 | RDEPENDS_perl-module-pod-simple-search += "perl-module-file-basename" | 1537 | RDEPENDS:perl-module-pod-simple-search += "perl-module-file-basename" |
1538 | RDEPENDS_perl-module-pod-simple-search += "perl-module-strict" | 1538 | RDEPENDS:perl-module-pod-simple-search += "perl-module-strict" |
1539 | RDEPENDS_perl-module-pod-simple-search += "perl-module-vars" | 1539 | RDEPENDS:perl-module-pod-simple-search += "perl-module-vars" |
1540 | RDEPENDS_perl-module-pod-simple-simpletree += "perl-module-pod-simple" | 1540 | RDEPENDS:perl-module-pod-simple-simpletree += "perl-module-pod-simple" |
1541 | RDEPENDS_perl-module-pod-simple-simpletree += "perl-module-strict" | 1541 | RDEPENDS:perl-module-pod-simple-simpletree += "perl-module-strict" |
1542 | RDEPENDS_perl-module-pod-simple-simpletree += "perl-module-vars" | 1542 | RDEPENDS:perl-module-pod-simple-simpletree += "perl-module-vars" |
1543 | RDEPENDS_perl-module-pod-simple-textcontent += "perl-module-pod-simple" | 1543 | RDEPENDS:perl-module-pod-simple-textcontent += "perl-module-pod-simple" |
1544 | RDEPENDS_perl-module-pod-simple-textcontent += "perl-module-strict" | 1544 | RDEPENDS:perl-module-pod-simple-textcontent += "perl-module-strict" |
1545 | RDEPENDS_perl-module-pod-simple-textcontent += "perl-module-vars" | 1545 | RDEPENDS:perl-module-pod-simple-textcontent += "perl-module-vars" |
1546 | RDEPENDS_perl-module-pod-simple-text += "perl-module-pod-simple" | 1546 | RDEPENDS:perl-module-pod-simple-text += "perl-module-pod-simple" |
1547 | RDEPENDS_perl-module-pod-simple-text += "perl-module-pod-simple-methody" | 1547 | RDEPENDS:perl-module-pod-simple-text += "perl-module-pod-simple-methody" |
1548 | RDEPENDS_perl-module-pod-simple-text += "perl-module-strict" | 1548 | RDEPENDS:perl-module-pod-simple-text += "perl-module-strict" |
1549 | RDEPENDS_perl-module-pod-simple-text += "perl-module-text-wrap" | 1549 | RDEPENDS:perl-module-pod-simple-text += "perl-module-text-wrap" |
1550 | RDEPENDS_perl-module-pod-simple-text += "perl-module-vars" | 1550 | RDEPENDS:perl-module-pod-simple-text += "perl-module-vars" |
1551 | RDEPENDS_perl-module-pod-simple-tiedoutfh += "perl-module-strict" | 1551 | RDEPENDS:perl-module-pod-simple-tiedoutfh += "perl-module-strict" |
1552 | RDEPENDS_perl-module-pod-simple-tiedoutfh += "perl-module-vars" | 1552 | RDEPENDS:perl-module-pod-simple-tiedoutfh += "perl-module-vars" |
1553 | RDEPENDS_perl-module-pod-simple-transcodedumb += "perl-module-strict" | 1553 | RDEPENDS:perl-module-pod-simple-transcodedumb += "perl-module-strict" |
1554 | RDEPENDS_perl-module-pod-simple-transcodedumb += "perl-module-vars" | 1554 | RDEPENDS:perl-module-pod-simple-transcodedumb += "perl-module-vars" |
1555 | RDEPENDS_perl-module-pod-simple-transcode += "perl-module-strict" | 1555 | RDEPENDS:perl-module-pod-simple-transcode += "perl-module-strict" |
1556 | RDEPENDS_perl-module-pod-simple-transcode += "perl-module-vars" | 1556 | RDEPENDS:perl-module-pod-simple-transcode += "perl-module-vars" |
1557 | RDEPENDS_perl-module-pod-simple-transcodesmart += "perl-module-encode" | 1557 | RDEPENDS:perl-module-pod-simple-transcodesmart += "perl-module-encode" |
1558 | RDEPENDS_perl-module-pod-simple-transcodesmart += "perl-module-pod-simple" | 1558 | RDEPENDS:perl-module-pod-simple-transcodesmart += "perl-module-pod-simple" |
1559 | RDEPENDS_perl-module-pod-simple-transcodesmart += "perl-module-strict" | 1559 | RDEPENDS:perl-module-pod-simple-transcodesmart += "perl-module-strict" |
1560 | RDEPENDS_perl-module-pod-simple-transcodesmart += "perl-module-vars" | 1560 | RDEPENDS:perl-module-pod-simple-transcodesmart += "perl-module-vars" |
1561 | RDEPENDS_perl-module-pod-simple-xmloutstream += "perl-module-pod-simple" | 1561 | RDEPENDS:perl-module-pod-simple-xmloutstream += "perl-module-pod-simple" |
1562 | RDEPENDS_perl-module-pod-simple-xmloutstream += "perl-module-strict" | 1562 | RDEPENDS:perl-module-pod-simple-xmloutstream += "perl-module-strict" |
1563 | RDEPENDS_perl-module-pod-simple-xmloutstream += "perl-module-vars" | 1563 | RDEPENDS:perl-module-pod-simple-xmloutstream += "perl-module-vars" |
1564 | RDEPENDS_perl-module-pod-text-color += "perl-module-pod-text" | 1564 | RDEPENDS:perl-module-pod-text-color += "perl-module-pod-text" |
1565 | RDEPENDS_perl-module-pod-text-color += "perl-module-strict" | 1565 | RDEPENDS:perl-module-pod-text-color += "perl-module-strict" |
1566 | RDEPENDS_perl-module-pod-text-color += "perl-module-term-ansicolor" | 1566 | RDEPENDS:perl-module-pod-text-color += "perl-module-term-ansicolor" |
1567 | RDEPENDS_perl-module-pod-text-color += "perl-module-vars" | 1567 | RDEPENDS:perl-module-pod-text-color += "perl-module-vars" |
1568 | RDEPENDS_perl-module-pod-text-color += "perl-module-warnings" | 1568 | RDEPENDS:perl-module-pod-text-color += "perl-module-warnings" |
1569 | RDEPENDS_perl-module-pod-text-overstrike += "perl-module-pod-text" | 1569 | RDEPENDS:perl-module-pod-text-overstrike += "perl-module-pod-text" |
1570 | RDEPENDS_perl-module-pod-text-overstrike += "perl-module-strict" | 1570 | RDEPENDS:perl-module-pod-text-overstrike += "perl-module-strict" |
1571 | RDEPENDS_perl-module-pod-text-overstrike += "perl-module-vars" | 1571 | RDEPENDS:perl-module-pod-text-overstrike += "perl-module-vars" |
1572 | RDEPENDS_perl-module-pod-text-overstrike += "perl-module-warnings" | 1572 | RDEPENDS:perl-module-pod-text-overstrike += "perl-module-warnings" |
1573 | RDEPENDS_perl-module-pod-text += "perl-module-encode" | 1573 | RDEPENDS:perl-module-pod-text += "perl-module-encode" |
1574 | RDEPENDS_perl-module-pod-text += "perl-module-exporter" | 1574 | RDEPENDS:perl-module-pod-text += "perl-module-exporter" |
1575 | RDEPENDS_perl-module-pod-text += "perl-module-pod-simple" | 1575 | RDEPENDS:perl-module-pod-text += "perl-module-pod-simple" |
1576 | RDEPENDS_perl-module-pod-text += "perl-module-strict" | 1576 | RDEPENDS:perl-module-pod-text += "perl-module-strict" |
1577 | RDEPENDS_perl-module-pod-text += "perl-module-vars" | 1577 | RDEPENDS:perl-module-pod-text += "perl-module-vars" |
1578 | RDEPENDS_perl-module-pod-text += "perl-module-warnings" | 1578 | RDEPENDS:perl-module-pod-text += "perl-module-warnings" |
1579 | RDEPENDS_perl-module-pod-text-termcap += "perl-module-pod-text" | 1579 | RDEPENDS:perl-module-pod-text-termcap += "perl-module-pod-text" |
1580 | RDEPENDS_perl-module-pod-text-termcap += "perl-module-posix" | 1580 | RDEPENDS:perl-module-pod-text-termcap += "perl-module-posix" |
1581 | RDEPENDS_perl-module-pod-text-termcap += "perl-module-strict" | 1581 | RDEPENDS:perl-module-pod-text-termcap += "perl-module-strict" |
1582 | RDEPENDS_perl-module-pod-text-termcap += "perl-module-term-cap" | 1582 | RDEPENDS:perl-module-pod-text-termcap += "perl-module-term-cap" |
1583 | RDEPENDS_perl-module-pod-text-termcap += "perl-module-vars" | 1583 | RDEPENDS:perl-module-pod-text-termcap += "perl-module-vars" |
1584 | RDEPENDS_perl-module-pod-text-termcap += "perl-module-warnings" | 1584 | RDEPENDS:perl-module-pod-text-termcap += "perl-module-warnings" |
1585 | RDEPENDS_perl-module-pod-usage += "perl-module-config" | 1585 | RDEPENDS:perl-module-pod-usage += "perl-module-config" |
1586 | RDEPENDS_perl-module-pod-usage += "perl-module-exporter" | 1586 | RDEPENDS:perl-module-pod-usage += "perl-module-exporter" |
1587 | RDEPENDS_perl-module-pod-usage += "perl-module-strict" | 1587 | RDEPENDS:perl-module-pod-usage += "perl-module-strict" |
1588 | RDEPENDS_perl-module-pod-usage += "perl-module-vars" | 1588 | RDEPENDS:perl-module-pod-usage += "perl-module-vars" |
1589 | RDEPENDS_perl-module-posix += "perl-module-exporter" | 1589 | RDEPENDS:perl-module-posix += "perl-module-exporter" |
1590 | RDEPENDS_perl-module-posix += "perl-module-fcntl" | 1590 | RDEPENDS:perl-module-posix += "perl-module-fcntl" |
1591 | RDEPENDS_perl-module-posix += "perl-module-strict" | 1591 | RDEPENDS:perl-module-posix += "perl-module-strict" |
1592 | RDEPENDS_perl-module-posix += "perl-module-tie-hash" | 1592 | RDEPENDS:perl-module-posix += "perl-module-tie-hash" |
1593 | RDEPENDS_perl-module-posix += "perl-module-warnings" | 1593 | RDEPENDS:perl-module-posix += "perl-module-warnings" |
1594 | RDEPENDS_perl-module-posix += "perl-module-xsloader" | 1594 | RDEPENDS:perl-module-posix += "perl-module-xsloader" |
1595 | RDEPENDS_perl-module-re += "perl-module-exporter" | 1595 | RDEPENDS:perl-module-re += "perl-module-exporter" |
1596 | RDEPENDS_perl-module-re += "perl-module-strict" | 1596 | RDEPENDS:perl-module-re += "perl-module-strict" |
1597 | RDEPENDS_perl-module-re += "perl-module-term-cap" | 1597 | RDEPENDS:perl-module-re += "perl-module-term-cap" |
1598 | RDEPENDS_perl-module-re += "perl-module-warnings" | 1598 | RDEPENDS:perl-module-re += "perl-module-warnings" |
1599 | RDEPENDS_perl-module-re += "perl-module-xsloader" | 1599 | RDEPENDS:perl-module-re += "perl-module-xsloader" |
1600 | RDEPENDS_perl-module-safe += "perl-module-b" | 1600 | RDEPENDS:perl-module-safe += "perl-module-b" |
1601 | RDEPENDS_perl-module-safe += "perl-module-opcode" | 1601 | RDEPENDS:perl-module-safe += "perl-module-opcode" |
1602 | RDEPENDS_perl-module-safe += "perl-module-strict" | 1602 | RDEPENDS:perl-module-safe += "perl-module-strict" |
1603 | RDEPENDS_perl-module-safe += "perl-module-utf8" | 1603 | RDEPENDS:perl-module-safe += "perl-module-utf8" |
1604 | RDEPENDS_perl-module-sdbm-file += "perl-module-exporter" | 1604 | RDEPENDS:perl-module-sdbm-file += "perl-module-exporter" |
1605 | RDEPENDS_perl-module-sdbm-file += "perl-module-strict" | 1605 | RDEPENDS:perl-module-sdbm-file += "perl-module-strict" |
1606 | RDEPENDS_perl-module-sdbm-file += "perl-module-tie-hash" | 1606 | RDEPENDS:perl-module-sdbm-file += "perl-module-tie-hash" |
1607 | RDEPENDS_perl-module-sdbm-file += "perl-module-warnings" | 1607 | RDEPENDS:perl-module-sdbm-file += "perl-module-warnings" |
1608 | RDEPENDS_perl-module-sdbm-file += "perl-module-xsloader" | 1608 | RDEPENDS:perl-module-sdbm-file += "perl-module-xsloader" |
1609 | RDEPENDS_perl-module-search-dict += "perl-module-exporter" | 1609 | RDEPENDS:perl-module-search-dict += "perl-module-exporter" |
1610 | RDEPENDS_perl-module-search-dict += "perl-module-feature" | 1610 | RDEPENDS:perl-module-search-dict += "perl-module-feature" |
1611 | RDEPENDS_perl-module-search-dict += "perl-module-strict" | 1611 | RDEPENDS:perl-module-search-dict += "perl-module-strict" |
1612 | RDEPENDS_perl-module-selfloader += "perl-module-exporter" | 1612 | RDEPENDS:perl-module-selfloader += "perl-module-exporter" |
1613 | RDEPENDS_perl-module-selfloader += "perl-module-io-handle" | 1613 | RDEPENDS:perl-module-selfloader += "perl-module-io-handle" |
1614 | RDEPENDS_perl-module-selfloader += "perl-module-strict" | 1614 | RDEPENDS:perl-module-selfloader += "perl-module-strict" |
1615 | RDEPENDS_perl-module-socket += "perl-module-exporter" | 1615 | RDEPENDS:perl-module-socket += "perl-module-exporter" |
1616 | RDEPENDS_perl-module-socket += "perl-module-strict" | 1616 | RDEPENDS:perl-module-socket += "perl-module-strict" |
1617 | RDEPENDS_perl-module-socket += "perl-module-warnings-register" | 1617 | RDEPENDS:perl-module-socket += "perl-module-warnings-register" |
1618 | RDEPENDS_perl-module-socket += "perl-module-xsloader" | 1618 | RDEPENDS:perl-module-socket += "perl-module-xsloader" |
1619 | RDEPENDS_perl-module-sort += "perl-module-strict" | 1619 | RDEPENDS:perl-module-sort += "perl-module-strict" |
1620 | RDEPENDS_perl-module-storable += "perl-module-exporter" | 1620 | RDEPENDS:perl-module-storable += "perl-module-exporter" |
1621 | RDEPENDS_perl-module-storable += "perl-module-io-file" | 1621 | RDEPENDS:perl-module-storable += "perl-module-io-file" |
1622 | RDEPENDS_perl-module-sub-util += "perl-module-exporter" | 1622 | RDEPENDS:perl-module-sub-util += "perl-module-exporter" |
1623 | RDEPENDS_perl-module-sub-util += "perl-module-list-util" | 1623 | RDEPENDS:perl-module-sub-util += "perl-module-list-util" |
1624 | RDEPENDS_perl-module-sub-util += "perl-module-strict" | 1624 | RDEPENDS:perl-module-sub-util += "perl-module-strict" |
1625 | RDEPENDS_perl-module-sub-util += "perl-module-warnings" | 1625 | RDEPENDS:perl-module-sub-util += "perl-module-warnings" |
1626 | RDEPENDS_perl-module-sys-hostname += "perl-module-exporter" | 1626 | RDEPENDS:perl-module-sys-hostname += "perl-module-exporter" |
1627 | RDEPENDS_perl-module-sys-hostname += "perl-module-posix" | 1627 | RDEPENDS:perl-module-sys-hostname += "perl-module-posix" |
1628 | RDEPENDS_perl-module-sys-hostname += "perl-module-strict" | 1628 | RDEPENDS:perl-module-sys-hostname += "perl-module-strict" |
1629 | RDEPENDS_perl-module-sys-hostname += "perl-module-warnings" | 1629 | RDEPENDS:perl-module-sys-hostname += "perl-module-warnings" |
1630 | RDEPENDS_perl-module-sys-hostname += "perl-module-xsloader" | 1630 | RDEPENDS:perl-module-sys-hostname += "perl-module-xsloader" |
1631 | RDEPENDS_perl-module-sys-syslog += "perl-module-config" | 1631 | RDEPENDS:perl-module-sys-syslog += "perl-module-config" |
1632 | RDEPENDS_perl-module-sys-syslog += "perl-module-constant" | 1632 | RDEPENDS:perl-module-sys-syslog += "perl-module-constant" |
1633 | RDEPENDS_perl-module-sys-syslog += "perl-module-dynaloader" | 1633 | RDEPENDS:perl-module-sys-syslog += "perl-module-dynaloader" |
1634 | RDEPENDS_perl-module-sys-syslog += "perl-module-exporter" | 1634 | RDEPENDS:perl-module-sys-syslog += "perl-module-exporter" |
1635 | RDEPENDS_perl-module-sys-syslog += "perl-module-fcntl" | 1635 | RDEPENDS:perl-module-sys-syslog += "perl-module-fcntl" |
1636 | RDEPENDS_perl-module-sys-syslog += "perl-module-file-basename" | 1636 | RDEPENDS:perl-module-sys-syslog += "perl-module-file-basename" |
1637 | RDEPENDS_perl-module-sys-syslog += "perl-module-posix" | 1637 | RDEPENDS:perl-module-sys-syslog += "perl-module-posix" |
1638 | RDEPENDS_perl-module-sys-syslog += "perl-module-socket" | 1638 | RDEPENDS:perl-module-sys-syslog += "perl-module-socket" |
1639 | RDEPENDS_perl-module-sys-syslog += "perl-module-strict" | 1639 | RDEPENDS:perl-module-sys-syslog += "perl-module-strict" |
1640 | RDEPENDS_perl-module-sys-syslog += "perl-module-sys-hostname" | 1640 | RDEPENDS:perl-module-sys-syslog += "perl-module-sys-hostname" |
1641 | RDEPENDS_perl-module-sys-syslog += "perl-module-vars" | 1641 | RDEPENDS:perl-module-sys-syslog += "perl-module-vars" |
1642 | RDEPENDS_perl-module-sys-syslog += "perl-module-warnings" | 1642 | RDEPENDS:perl-module-sys-syslog += "perl-module-warnings" |
1643 | RDEPENDS_perl-module-sys-syslog += "perl-module-warnings-register" | 1643 | RDEPENDS:perl-module-sys-syslog += "perl-module-warnings-register" |
1644 | RDEPENDS_perl-module-sys-syslog += "perl-module-xsloader" | 1644 | RDEPENDS:perl-module-sys-syslog += "perl-module-xsloader" |
1645 | RDEPENDS_perl-module-tap-base += "perl-module-base" | 1645 | RDEPENDS:perl-module-tap-base += "perl-module-base" |
1646 | RDEPENDS_perl-module-tap-base += "perl-module-constant" | 1646 | RDEPENDS:perl-module-tap-base += "perl-module-constant" |
1647 | RDEPENDS_perl-module-tap-base += "perl-module-strict" | 1647 | RDEPENDS:perl-module-tap-base += "perl-module-strict" |
1648 | RDEPENDS_perl-module-tap-base += "perl-module-warnings" | 1648 | RDEPENDS:perl-module-tap-base += "perl-module-warnings" |
1649 | RDEPENDS_perl-module-tap-formatter-base += "perl-module-base" | 1649 | RDEPENDS:perl-module-tap-formatter-base += "perl-module-base" |
1650 | RDEPENDS_perl-module-tap-formatter-base += "perl-module-posix" | 1650 | RDEPENDS:perl-module-tap-formatter-base += "perl-module-posix" |
1651 | RDEPENDS_perl-module-tap-formatter-base += "perl-module-strict" | 1651 | RDEPENDS:perl-module-tap-formatter-base += "perl-module-strict" |
1652 | RDEPENDS_perl-module-tap-formatter-base += "perl-module-tap-formatter-color" | 1652 | RDEPENDS:perl-module-tap-formatter-base += "perl-module-tap-formatter-color" |
1653 | RDEPENDS_perl-module-tap-formatter-base += "perl-module-warnings" | 1653 | RDEPENDS:perl-module-tap-formatter-base += "perl-module-warnings" |
1654 | RDEPENDS_perl-module-tap-formatter-color += "perl-module-base" | 1654 | RDEPENDS:perl-module-tap-formatter-color += "perl-module-base" |
1655 | RDEPENDS_perl-module-tap-formatter-color += "perl-module-constant" | 1655 | RDEPENDS:perl-module-tap-formatter-color += "perl-module-constant" |
1656 | RDEPENDS_perl-module-tap-formatter-color += "perl-module-strict" | 1656 | RDEPENDS:perl-module-tap-formatter-color += "perl-module-strict" |
1657 | RDEPENDS_perl-module-tap-formatter-color += "perl-module-warnings" | 1657 | RDEPENDS:perl-module-tap-formatter-color += "perl-module-warnings" |
1658 | RDEPENDS_perl-module-tap-formatter-console-parallelsession += "perl-module-base" | 1658 | RDEPENDS:perl-module-tap-formatter-console-parallelsession += "perl-module-base" |
1659 | RDEPENDS_perl-module-tap-formatter-console-parallelsession += "perl-module-constant" | 1659 | RDEPENDS:perl-module-tap-formatter-console-parallelsession += "perl-module-constant" |
1660 | RDEPENDS_perl-module-tap-formatter-console-parallelsession += "perl-module-file-path" | 1660 | RDEPENDS:perl-module-tap-formatter-console-parallelsession += "perl-module-file-path" |
1661 | RDEPENDS_perl-module-tap-formatter-console-parallelsession += "perl-module-strict" | 1661 | RDEPENDS:perl-module-tap-formatter-console-parallelsession += "perl-module-strict" |
1662 | RDEPENDS_perl-module-tap-formatter-console-parallelsession += "perl-module-warnings" | 1662 | RDEPENDS:perl-module-tap-formatter-console-parallelsession += "perl-module-warnings" |
1663 | RDEPENDS_perl-module-tap-formatter-console += "perl-module-base" | 1663 | RDEPENDS:perl-module-tap-formatter-console += "perl-module-base" |
1664 | RDEPENDS_perl-module-tap-formatter-console += "perl-module-posix" | 1664 | RDEPENDS:perl-module-tap-formatter-console += "perl-module-posix" |
1665 | RDEPENDS_perl-module-tap-formatter-console += "perl-module-strict" | 1665 | RDEPENDS:perl-module-tap-formatter-console += "perl-module-strict" |
1666 | RDEPENDS_perl-module-tap-formatter-console += "perl-module-warnings" | 1666 | RDEPENDS:perl-module-tap-formatter-console += "perl-module-warnings" |
1667 | RDEPENDS_perl-module-tap-formatter-console-session += "perl-module-base" | 1667 | RDEPENDS:perl-module-tap-formatter-console-session += "perl-module-base" |
1668 | RDEPENDS_perl-module-tap-formatter-console-session += "perl-module-strict" | 1668 | RDEPENDS:perl-module-tap-formatter-console-session += "perl-module-strict" |
1669 | RDEPENDS_perl-module-tap-formatter-console-session += "perl-module-warnings" | 1669 | RDEPENDS:perl-module-tap-formatter-console-session += "perl-module-warnings" |
1670 | RDEPENDS_perl-module-tap-formatter-file += "perl-module-base" | 1670 | RDEPENDS:perl-module-tap-formatter-file += "perl-module-base" |
1671 | RDEPENDS_perl-module-tap-formatter-file += "perl-module-posix" | 1671 | RDEPENDS:perl-module-tap-formatter-file += "perl-module-posix" |
1672 | RDEPENDS_perl-module-tap-formatter-file += "perl-module-strict" | 1672 | RDEPENDS:perl-module-tap-formatter-file += "perl-module-strict" |
1673 | RDEPENDS_perl-module-tap-formatter-file += "perl-module-tap-formatter-file-session" | 1673 | RDEPENDS:perl-module-tap-formatter-file += "perl-module-tap-formatter-file-session" |
1674 | RDEPENDS_perl-module-tap-formatter-file += "perl-module-warnings" | 1674 | RDEPENDS:perl-module-tap-formatter-file += "perl-module-warnings" |
1675 | RDEPENDS_perl-module-tap-formatter-file-session += "perl-module-base" | 1675 | RDEPENDS:perl-module-tap-formatter-file-session += "perl-module-base" |
1676 | RDEPENDS_perl-module-tap-formatter-file-session += "perl-module-strict" | 1676 | RDEPENDS:perl-module-tap-formatter-file-session += "perl-module-strict" |
1677 | RDEPENDS_perl-module-tap-formatter-file-session += "perl-module-warnings" | 1677 | RDEPENDS:perl-module-tap-formatter-file-session += "perl-module-warnings" |
1678 | RDEPENDS_perl-module-tap-formatter-session += "perl-module-base" | 1678 | RDEPENDS:perl-module-tap-formatter-session += "perl-module-base" |
1679 | RDEPENDS_perl-module-tap-formatter-session += "perl-module-strict" | 1679 | RDEPENDS:perl-module-tap-formatter-session += "perl-module-strict" |
1680 | RDEPENDS_perl-module-tap-formatter-session += "perl-module-warnings" | 1680 | RDEPENDS:perl-module-tap-formatter-session += "perl-module-warnings" |
1681 | RDEPENDS_perl-module-tap-harness-env += "perl-module-constant" | 1681 | RDEPENDS:perl-module-tap-harness-env += "perl-module-constant" |
1682 | RDEPENDS_perl-module-tap-harness-env += "perl-module-strict" | 1682 | RDEPENDS:perl-module-tap-harness-env += "perl-module-strict" |
1683 | RDEPENDS_perl-module-tap-harness-env += "perl-module-tap-object" | 1683 | RDEPENDS:perl-module-tap-harness-env += "perl-module-tap-object" |
1684 | RDEPENDS_perl-module-tap-harness-env += "perl-module-text-parsewords" | 1684 | RDEPENDS:perl-module-tap-harness-env += "perl-module-text-parsewords" |
1685 | RDEPENDS_perl-module-tap-harness-env += "perl-module-warnings" | 1685 | RDEPENDS:perl-module-tap-harness-env += "perl-module-warnings" |
1686 | RDEPENDS_perl-module-tap-harness += "perl-module-base" | 1686 | RDEPENDS:perl-module-tap-harness += "perl-module-base" |
1687 | RDEPENDS_perl-module-tap-harness += "perl-module-file-path" | 1687 | RDEPENDS:perl-module-tap-harness += "perl-module-file-path" |
1688 | RDEPENDS_perl-module-tap-harness += "perl-module-io-handle" | 1688 | RDEPENDS:perl-module-tap-harness += "perl-module-io-handle" |
1689 | RDEPENDS_perl-module-tap-harness += "perl-module-strict" | 1689 | RDEPENDS:perl-module-tap-harness += "perl-module-strict" |
1690 | RDEPENDS_perl-module-tap-harness += "perl-module-warnings" | 1690 | RDEPENDS:perl-module-tap-harness += "perl-module-warnings" |
1691 | RDEPENDS_perl-module-tap-object += "perl-module-strict" | 1691 | RDEPENDS:perl-module-tap-object += "perl-module-strict" |
1692 | RDEPENDS_perl-module-tap-object += "perl-module-warnings" | 1692 | RDEPENDS:perl-module-tap-object += "perl-module-warnings" |
1693 | RDEPENDS_perl-module-tap-parser-aggregator += "perl-module-base" | 1693 | RDEPENDS:perl-module-tap-parser-aggregator += "perl-module-base" |
1694 | RDEPENDS_perl-module-tap-parser-aggregator += "perl-module-benchmark" | 1694 | RDEPENDS:perl-module-tap-parser-aggregator += "perl-module-benchmark" |
1695 | RDEPENDS_perl-module-tap-parser-aggregator += "perl-module-strict" | 1695 | RDEPENDS:perl-module-tap-parser-aggregator += "perl-module-strict" |
1696 | RDEPENDS_perl-module-tap-parser-aggregator += "perl-module-warnings" | 1696 | RDEPENDS:perl-module-tap-parser-aggregator += "perl-module-warnings" |
1697 | RDEPENDS_perl-module-tap-parser-grammar += "perl-module-base" | 1697 | RDEPENDS:perl-module-tap-parser-grammar += "perl-module-base" |
1698 | RDEPENDS_perl-module-tap-parser-grammar += "perl-module-strict" | 1698 | RDEPENDS:perl-module-tap-parser-grammar += "perl-module-strict" |
1699 | RDEPENDS_perl-module-tap-parser-grammar += "perl-module-tap-parser-resultfactory" | 1699 | RDEPENDS:perl-module-tap-parser-grammar += "perl-module-tap-parser-resultfactory" |
1700 | RDEPENDS_perl-module-tap-parser-grammar += "perl-module-tap-parser-yamlish-reader" | 1700 | RDEPENDS:perl-module-tap-parser-grammar += "perl-module-tap-parser-yamlish-reader" |
1701 | RDEPENDS_perl-module-tap-parser-grammar += "perl-module-warnings" | 1701 | RDEPENDS:perl-module-tap-parser-grammar += "perl-module-warnings" |
1702 | RDEPENDS_perl-module-tap-parser-iterator-array += "perl-module-base" | 1702 | RDEPENDS:perl-module-tap-parser-iterator-array += "perl-module-base" |
1703 | RDEPENDS_perl-module-tap-parser-iterator-array += "perl-module-strict" | 1703 | RDEPENDS:perl-module-tap-parser-iterator-array += "perl-module-strict" |
1704 | RDEPENDS_perl-module-tap-parser-iterator-array += "perl-module-warnings" | 1704 | RDEPENDS:perl-module-tap-parser-iterator-array += "perl-module-warnings" |
1705 | RDEPENDS_perl-module-tap-parser-iteratorfactory += "perl-module-base" | 1705 | RDEPENDS:perl-module-tap-parser-iteratorfactory += "perl-module-base" |
1706 | RDEPENDS_perl-module-tap-parser-iteratorfactory += "perl-module-constant" | 1706 | RDEPENDS:perl-module-tap-parser-iteratorfactory += "perl-module-constant" |
1707 | RDEPENDS_perl-module-tap-parser-iteratorfactory += "perl-module-file-basename" | 1707 | RDEPENDS:perl-module-tap-parser-iteratorfactory += "perl-module-file-basename" |
1708 | RDEPENDS_perl-module-tap-parser-iteratorfactory += "perl-module-strict" | 1708 | RDEPENDS:perl-module-tap-parser-iteratorfactory += "perl-module-strict" |
1709 | RDEPENDS_perl-module-tap-parser-iteratorfactory += "perl-module-warnings" | 1709 | RDEPENDS:perl-module-tap-parser-iteratorfactory += "perl-module-warnings" |
1710 | RDEPENDS_perl-module-tap-parser-iterator += "perl-module-base" | 1710 | RDEPENDS:perl-module-tap-parser-iterator += "perl-module-base" |
1711 | RDEPENDS_perl-module-tap-parser-iterator += "perl-module-strict" | 1711 | RDEPENDS:perl-module-tap-parser-iterator += "perl-module-strict" |
1712 | RDEPENDS_perl-module-tap-parser-iterator += "perl-module-warnings" | 1712 | RDEPENDS:perl-module-tap-parser-iterator += "perl-module-warnings" |
1713 | RDEPENDS_perl-module-tap-parser-iterator-process += "perl-module-base" | 1713 | RDEPENDS:perl-module-tap-parser-iterator-process += "perl-module-base" |
1714 | RDEPENDS_perl-module-tap-parser-iterator-process += "perl-module-config" | 1714 | RDEPENDS:perl-module-tap-parser-iterator-process += "perl-module-config" |
1715 | RDEPENDS_perl-module-tap-parser-iterator-process += "perl-module-io-handle" | 1715 | RDEPENDS:perl-module-tap-parser-iterator-process += "perl-module-io-handle" |
1716 | RDEPENDS_perl-module-tap-parser-iterator-process += "perl-module-strict" | 1716 | RDEPENDS:perl-module-tap-parser-iterator-process += "perl-module-strict" |
1717 | RDEPENDS_perl-module-tap-parser-iterator-process += "perl-module-warnings" | 1717 | RDEPENDS:perl-module-tap-parser-iterator-process += "perl-module-warnings" |
1718 | RDEPENDS_perl-module-tap-parser-iterator-stream += "perl-module-base" | 1718 | RDEPENDS:perl-module-tap-parser-iterator-stream += "perl-module-base" |
1719 | RDEPENDS_perl-module-tap-parser-iterator-stream += "perl-module-strict" | 1719 | RDEPENDS:perl-module-tap-parser-iterator-stream += "perl-module-strict" |
1720 | RDEPENDS_perl-module-tap-parser-iterator-stream += "perl-module-warnings" | 1720 | RDEPENDS:perl-module-tap-parser-iterator-stream += "perl-module-warnings" |
1721 | RDEPENDS_perl-module-tap-parser-multiplexer += "perl-module-base" | 1721 | RDEPENDS:perl-module-tap-parser-multiplexer += "perl-module-base" |
1722 | RDEPENDS_perl-module-tap-parser-multiplexer += "perl-module-constant" | 1722 | RDEPENDS:perl-module-tap-parser-multiplexer += "perl-module-constant" |
1723 | RDEPENDS_perl-module-tap-parser-multiplexer += "perl-module-io-select" | 1723 | RDEPENDS:perl-module-tap-parser-multiplexer += "perl-module-io-select" |
1724 | RDEPENDS_perl-module-tap-parser-multiplexer += "perl-module-strict" | 1724 | RDEPENDS:perl-module-tap-parser-multiplexer += "perl-module-strict" |
1725 | RDEPENDS_perl-module-tap-parser-multiplexer += "perl-module-warnings" | 1725 | RDEPENDS:perl-module-tap-parser-multiplexer += "perl-module-warnings" |
1726 | RDEPENDS_perl-module-tap-parser += "perl-module-base" | 1726 | RDEPENDS:perl-module-tap-parser += "perl-module-base" |
1727 | RDEPENDS_perl-module-tap-parser += "perl-module-strict" | 1727 | RDEPENDS:perl-module-tap-parser += "perl-module-strict" |
1728 | RDEPENDS_perl-module-tap-parser += "perl-module-tap-parser-grammar" | 1728 | RDEPENDS:perl-module-tap-parser += "perl-module-tap-parser-grammar" |
1729 | RDEPENDS_perl-module-tap-parser += "perl-module-tap-parser-iterator" | 1729 | RDEPENDS:perl-module-tap-parser += "perl-module-tap-parser-iterator" |
1730 | RDEPENDS_perl-module-tap-parser += "perl-module-tap-parser-iteratorfactory" | 1730 | RDEPENDS:perl-module-tap-parser += "perl-module-tap-parser-iteratorfactory" |
1731 | RDEPENDS_perl-module-tap-parser += "perl-module-tap-parser-result" | 1731 | RDEPENDS:perl-module-tap-parser += "perl-module-tap-parser-result" |
1732 | RDEPENDS_perl-module-tap-parser += "perl-module-tap-parser-resultfactory" | 1732 | RDEPENDS:perl-module-tap-parser += "perl-module-tap-parser-resultfactory" |
1733 | RDEPENDS_perl-module-tap-parser += "perl-module-tap-parser-source" | 1733 | RDEPENDS:perl-module-tap-parser += "perl-module-tap-parser-source" |
1734 | RDEPENDS_perl-module-tap-parser += "perl-module-tap-parser-sourcehandler-executable" | 1734 | RDEPENDS:perl-module-tap-parser += "perl-module-tap-parser-sourcehandler-executable" |
1735 | RDEPENDS_perl-module-tap-parser += "perl-module-tap-parser-sourcehandler-file" | 1735 | RDEPENDS:perl-module-tap-parser += "perl-module-tap-parser-sourcehandler-file" |
1736 | RDEPENDS_perl-module-tap-parser += "perl-module-tap-parser-sourcehandler-handle" | 1736 | RDEPENDS:perl-module-tap-parser += "perl-module-tap-parser-sourcehandler-handle" |
1737 | RDEPENDS_perl-module-tap-parser += "perl-module-tap-parser-sourcehandler-perl" | 1737 | RDEPENDS:perl-module-tap-parser += "perl-module-tap-parser-sourcehandler-perl" |
1738 | RDEPENDS_perl-module-tap-parser += "perl-module-tap-parser-sourcehandler-rawtap" | 1738 | RDEPENDS:perl-module-tap-parser += "perl-module-tap-parser-sourcehandler-rawtap" |
1739 | RDEPENDS_perl-module-tap-parser += "perl-module-warnings" | 1739 | RDEPENDS:perl-module-tap-parser += "perl-module-warnings" |
1740 | RDEPENDS_perl-module-tap-parser-result-bailout += "perl-module-base" | 1740 | RDEPENDS:perl-module-tap-parser-result-bailout += "perl-module-base" |
1741 | RDEPENDS_perl-module-tap-parser-result-bailout += "perl-module-strict" | 1741 | RDEPENDS:perl-module-tap-parser-result-bailout += "perl-module-strict" |
1742 | RDEPENDS_perl-module-tap-parser-result-bailout += "perl-module-warnings" | 1742 | RDEPENDS:perl-module-tap-parser-result-bailout += "perl-module-warnings" |
1743 | RDEPENDS_perl-module-tap-parser-result-comment += "perl-module-base" | 1743 | RDEPENDS:perl-module-tap-parser-result-comment += "perl-module-base" |
1744 | RDEPENDS_perl-module-tap-parser-result-comment += "perl-module-strict" | 1744 | RDEPENDS:perl-module-tap-parser-result-comment += "perl-module-strict" |
1745 | RDEPENDS_perl-module-tap-parser-result-comment += "perl-module-warnings" | 1745 | RDEPENDS:perl-module-tap-parser-result-comment += "perl-module-warnings" |
1746 | RDEPENDS_perl-module-tap-parser-resultfactory += "perl-module-base" | 1746 | RDEPENDS:perl-module-tap-parser-resultfactory += "perl-module-base" |
1747 | RDEPENDS_perl-module-tap-parser-resultfactory += "perl-module-strict" | 1747 | RDEPENDS:perl-module-tap-parser-resultfactory += "perl-module-strict" |
1748 | RDEPENDS_perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-bailout" | 1748 | RDEPENDS:perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-bailout" |
1749 | RDEPENDS_perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-comment" | 1749 | RDEPENDS:perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-comment" |
1750 | RDEPENDS_perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-plan" | 1750 | RDEPENDS:perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-plan" |
1751 | RDEPENDS_perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-pragma" | 1751 | RDEPENDS:perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-pragma" |
1752 | RDEPENDS_perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-test" | 1752 | RDEPENDS:perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-test" |
1753 | RDEPENDS_perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-unknown" | 1753 | RDEPENDS:perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-unknown" |
1754 | RDEPENDS_perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-version" | 1754 | RDEPENDS:perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-version" |
1755 | RDEPENDS_perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-yaml" | 1755 | RDEPENDS:perl-module-tap-parser-resultfactory += "perl-module-tap-parser-result-yaml" |
1756 | RDEPENDS_perl-module-tap-parser-resultfactory += "perl-module-warnings" | 1756 | RDEPENDS:perl-module-tap-parser-resultfactory += "perl-module-warnings" |
1757 | RDEPENDS_perl-module-tap-parser-result += "perl-module-base" | 1757 | RDEPENDS:perl-module-tap-parser-result += "perl-module-base" |
1758 | RDEPENDS_perl-module-tap-parser-result += "perl-module-strict" | 1758 | RDEPENDS:perl-module-tap-parser-result += "perl-module-strict" |
1759 | RDEPENDS_perl-module-tap-parser-result += "perl-module-warnings" | 1759 | RDEPENDS:perl-module-tap-parser-result += "perl-module-warnings" |
1760 | RDEPENDS_perl-module-tap-parser-result-plan += "perl-module-base" | 1760 | RDEPENDS:perl-module-tap-parser-result-plan += "perl-module-base" |
1761 | RDEPENDS_perl-module-tap-parser-result-plan += "perl-module-strict" | 1761 | RDEPENDS:perl-module-tap-parser-result-plan += "perl-module-strict" |
1762 | RDEPENDS_perl-module-tap-parser-result-plan += "perl-module-warnings" | 1762 | RDEPENDS:perl-module-tap-parser-result-plan += "perl-module-warnings" |
1763 | RDEPENDS_perl-module-tap-parser-result-pragma += "perl-module-base" | 1763 | RDEPENDS:perl-module-tap-parser-result-pragma += "perl-module-base" |
1764 | RDEPENDS_perl-module-tap-parser-result-pragma += "perl-module-strict" | 1764 | RDEPENDS:perl-module-tap-parser-result-pragma += "perl-module-strict" |
1765 | RDEPENDS_perl-module-tap-parser-result-pragma += "perl-module-warnings" | 1765 | RDEPENDS:perl-module-tap-parser-result-pragma += "perl-module-warnings" |
1766 | RDEPENDS_perl-module-tap-parser-result-test += "perl-module-base" | 1766 | RDEPENDS:perl-module-tap-parser-result-test += "perl-module-base" |
1767 | RDEPENDS_perl-module-tap-parser-result-test += "perl-module-strict" | 1767 | RDEPENDS:perl-module-tap-parser-result-test += "perl-module-strict" |
1768 | RDEPENDS_perl-module-tap-parser-result-test += "perl-module-warnings" | 1768 | RDEPENDS:perl-module-tap-parser-result-test += "perl-module-warnings" |
1769 | RDEPENDS_perl-module-tap-parser-result-unknown += "perl-module-base" | 1769 | RDEPENDS:perl-module-tap-parser-result-unknown += "perl-module-base" |
1770 | RDEPENDS_perl-module-tap-parser-result-unknown += "perl-module-strict" | 1770 | RDEPENDS:perl-module-tap-parser-result-unknown += "perl-module-strict" |
1771 | RDEPENDS_perl-module-tap-parser-result-unknown += "perl-module-warnings" | 1771 | RDEPENDS:perl-module-tap-parser-result-unknown += "perl-module-warnings" |
1772 | RDEPENDS_perl-module-tap-parser-result-version += "perl-module-base" | 1772 | RDEPENDS:perl-module-tap-parser-result-version += "perl-module-base" |
1773 | RDEPENDS_perl-module-tap-parser-result-version += "perl-module-strict" | 1773 | RDEPENDS:perl-module-tap-parser-result-version += "perl-module-strict" |
1774 | RDEPENDS_perl-module-tap-parser-result-version += "perl-module-warnings" | 1774 | RDEPENDS:perl-module-tap-parser-result-version += "perl-module-warnings" |
1775 | RDEPENDS_perl-module-tap-parser-result-yaml += "perl-module-base" | 1775 | RDEPENDS:perl-module-tap-parser-result-yaml += "perl-module-base" |
1776 | RDEPENDS_perl-module-tap-parser-result-yaml += "perl-module-strict" | 1776 | RDEPENDS:perl-module-tap-parser-result-yaml += "perl-module-strict" |
1777 | RDEPENDS_perl-module-tap-parser-result-yaml += "perl-module-warnings" | 1777 | RDEPENDS:perl-module-tap-parser-result-yaml += "perl-module-warnings" |
1778 | RDEPENDS_perl-module-tap-parser-scheduler-job += "perl-module-strict" | 1778 | RDEPENDS:perl-module-tap-parser-scheduler-job += "perl-module-strict" |
1779 | RDEPENDS_perl-module-tap-parser-scheduler-job += "perl-module-warnings" | 1779 | RDEPENDS:perl-module-tap-parser-scheduler-job += "perl-module-warnings" |
1780 | RDEPENDS_perl-module-tap-parser-scheduler += "perl-module-strict" | 1780 | RDEPENDS:perl-module-tap-parser-scheduler += "perl-module-strict" |
1781 | RDEPENDS_perl-module-tap-parser-scheduler += "perl-module-tap-parser-scheduler-job" | 1781 | RDEPENDS:perl-module-tap-parser-scheduler += "perl-module-tap-parser-scheduler-job" |
1782 | RDEPENDS_perl-module-tap-parser-scheduler += "perl-module-tap-parser-scheduler-spinner" | 1782 | RDEPENDS:perl-module-tap-parser-scheduler += "perl-module-tap-parser-scheduler-spinner" |
1783 | RDEPENDS_perl-module-tap-parser-scheduler += "perl-module-warnings" | 1783 | RDEPENDS:perl-module-tap-parser-scheduler += "perl-module-warnings" |
1784 | RDEPENDS_perl-module-tap-parser-scheduler-spinner += "perl-module-strict" | 1784 | RDEPENDS:perl-module-tap-parser-scheduler-spinner += "perl-module-strict" |
1785 | RDEPENDS_perl-module-tap-parser-scheduler-spinner += "perl-module-warnings" | 1785 | RDEPENDS:perl-module-tap-parser-scheduler-spinner += "perl-module-warnings" |
1786 | RDEPENDS_perl-module-tap-parser-sourcehandler-executable += "perl-module-base" | 1786 | RDEPENDS:perl-module-tap-parser-sourcehandler-executable += "perl-module-base" |
1787 | RDEPENDS_perl-module-tap-parser-sourcehandler-executable += "perl-module-constant" | 1787 | RDEPENDS:perl-module-tap-parser-sourcehandler-executable += "perl-module-constant" |
1788 | RDEPENDS_perl-module-tap-parser-sourcehandler-executable += "perl-module-strict" | 1788 | RDEPENDS:perl-module-tap-parser-sourcehandler-executable += "perl-module-strict" |
1789 | RDEPENDS_perl-module-tap-parser-sourcehandler-executable += "perl-module-tap-parser-iteratorfactory" | 1789 | RDEPENDS:perl-module-tap-parser-sourcehandler-executable += "perl-module-tap-parser-iteratorfactory" |
1790 | RDEPENDS_perl-module-tap-parser-sourcehandler-executable += "perl-module-tap-parser-iterator-process" | 1790 | RDEPENDS:perl-module-tap-parser-sourcehandler-executable += "perl-module-tap-parser-iterator-process" |
1791 | RDEPENDS_perl-module-tap-parser-sourcehandler-executable += "perl-module-warnings" | 1791 | RDEPENDS:perl-module-tap-parser-sourcehandler-executable += "perl-module-warnings" |
1792 | RDEPENDS_perl-module-tap-parser-sourcehandler-file += "perl-module-base" | 1792 | RDEPENDS:perl-module-tap-parser-sourcehandler-file += "perl-module-base" |
1793 | RDEPENDS_perl-module-tap-parser-sourcehandler-file += "perl-module-constant" | 1793 | RDEPENDS:perl-module-tap-parser-sourcehandler-file += "perl-module-constant" |
1794 | RDEPENDS_perl-module-tap-parser-sourcehandler-file += "perl-module-strict" | 1794 | RDEPENDS:perl-module-tap-parser-sourcehandler-file += "perl-module-strict" |
1795 | RDEPENDS_perl-module-tap-parser-sourcehandler-file += "perl-module-tap-parser-iteratorfactory" | 1795 | RDEPENDS:perl-module-tap-parser-sourcehandler-file += "perl-module-tap-parser-iteratorfactory" |
1796 | RDEPENDS_perl-module-tap-parser-sourcehandler-file += "perl-module-tap-parser-iterator-stream" | 1796 | RDEPENDS:perl-module-tap-parser-sourcehandler-file += "perl-module-tap-parser-iterator-stream" |
1797 | RDEPENDS_perl-module-tap-parser-sourcehandler-file += "perl-module-warnings" | 1797 | RDEPENDS:perl-module-tap-parser-sourcehandler-file += "perl-module-warnings" |
1798 | RDEPENDS_perl-module-tap-parser-sourcehandler-handle += "perl-module-base" | 1798 | RDEPENDS:perl-module-tap-parser-sourcehandler-handle += "perl-module-base" |
1799 | RDEPENDS_perl-module-tap-parser-sourcehandler-handle += "perl-module-constant" | 1799 | RDEPENDS:perl-module-tap-parser-sourcehandler-handle += "perl-module-constant" |
1800 | RDEPENDS_perl-module-tap-parser-sourcehandler-handle += "perl-module-strict" | 1800 | RDEPENDS:perl-module-tap-parser-sourcehandler-handle += "perl-module-strict" |
1801 | RDEPENDS_perl-module-tap-parser-sourcehandler-handle += "perl-module-tap-parser-iteratorfactory" | 1801 | RDEPENDS:perl-module-tap-parser-sourcehandler-handle += "perl-module-tap-parser-iteratorfactory" |
1802 | RDEPENDS_perl-module-tap-parser-sourcehandler-handle += "perl-module-tap-parser-iterator-stream" | 1802 | RDEPENDS:perl-module-tap-parser-sourcehandler-handle += "perl-module-tap-parser-iterator-stream" |
1803 | RDEPENDS_perl-module-tap-parser-sourcehandler-handle += "perl-module-warnings" | 1803 | RDEPENDS:perl-module-tap-parser-sourcehandler-handle += "perl-module-warnings" |
1804 | RDEPENDS_perl-module-tap-parser-sourcehandler += "perl-module-base" | 1804 | RDEPENDS:perl-module-tap-parser-sourcehandler += "perl-module-base" |
1805 | RDEPENDS_perl-module-tap-parser-sourcehandler += "perl-module-strict" | 1805 | RDEPENDS:perl-module-tap-parser-sourcehandler += "perl-module-strict" |
1806 | RDEPENDS_perl-module-tap-parser-sourcehandler += "perl-module-tap-parser-iterator" | 1806 | RDEPENDS:perl-module-tap-parser-sourcehandler += "perl-module-tap-parser-iterator" |
1807 | RDEPENDS_perl-module-tap-parser-sourcehandler += "perl-module-warnings" | 1807 | RDEPENDS:perl-module-tap-parser-sourcehandler += "perl-module-warnings" |
1808 | RDEPENDS_perl-module-tap-parser-sourcehandler-perl += "perl-module-base" | 1808 | RDEPENDS:perl-module-tap-parser-sourcehandler-perl += "perl-module-base" |
1809 | RDEPENDS_perl-module-tap-parser-sourcehandler-perl += "perl-module-config" | 1809 | RDEPENDS:perl-module-tap-parser-sourcehandler-perl += "perl-module-config" |
1810 | RDEPENDS_perl-module-tap-parser-sourcehandler-perl += "perl-module-constant" | 1810 | RDEPENDS:perl-module-tap-parser-sourcehandler-perl += "perl-module-constant" |
1811 | RDEPENDS_perl-module-tap-parser-sourcehandler-perl += "perl-module-strict" | 1811 | RDEPENDS:perl-module-tap-parser-sourcehandler-perl += "perl-module-strict" |
1812 | RDEPENDS_perl-module-tap-parser-sourcehandler-perl += "perl-module-tap-parser-iteratorfactory" | 1812 | RDEPENDS:perl-module-tap-parser-sourcehandler-perl += "perl-module-tap-parser-iteratorfactory" |
1813 | RDEPENDS_perl-module-tap-parser-sourcehandler-perl += "perl-module-tap-parser-iterator-process" | 1813 | RDEPENDS:perl-module-tap-parser-sourcehandler-perl += "perl-module-tap-parser-iterator-process" |
1814 | RDEPENDS_perl-module-tap-parser-sourcehandler-perl += "perl-module-text-parsewords" | 1814 | RDEPENDS:perl-module-tap-parser-sourcehandler-perl += "perl-module-text-parsewords" |
1815 | RDEPENDS_perl-module-tap-parser-sourcehandler-perl += "perl-module-warnings" | 1815 | RDEPENDS:perl-module-tap-parser-sourcehandler-perl += "perl-module-warnings" |
1816 | RDEPENDS_perl-module-tap-parser-sourcehandler-rawtap += "perl-module-base" | 1816 | RDEPENDS:perl-module-tap-parser-sourcehandler-rawtap += "perl-module-base" |
1817 | RDEPENDS_perl-module-tap-parser-sourcehandler-rawtap += "perl-module-strict" | 1817 | RDEPENDS:perl-module-tap-parser-sourcehandler-rawtap += "perl-module-strict" |
1818 | RDEPENDS_perl-module-tap-parser-sourcehandler-rawtap += "perl-module-tap-parser-iterator-array" | 1818 | RDEPENDS:perl-module-tap-parser-sourcehandler-rawtap += "perl-module-tap-parser-iterator-array" |
1819 | RDEPENDS_perl-module-tap-parser-sourcehandler-rawtap += "perl-module-tap-parser-iteratorfactory" | 1819 | RDEPENDS:perl-module-tap-parser-sourcehandler-rawtap += "perl-module-tap-parser-iteratorfactory" |
1820 | RDEPENDS_perl-module-tap-parser-sourcehandler-rawtap += "perl-module-warnings" | 1820 | RDEPENDS:perl-module-tap-parser-sourcehandler-rawtap += "perl-module-warnings" |
1821 | RDEPENDS_perl-module-tap-parser-source += "perl-module-base" | 1821 | RDEPENDS:perl-module-tap-parser-source += "perl-module-base" |
1822 | RDEPENDS_perl-module-tap-parser-source += "perl-module-constant" | 1822 | RDEPENDS:perl-module-tap-parser-source += "perl-module-constant" |
1823 | RDEPENDS_perl-module-tap-parser-source += "perl-module-file-basename" | 1823 | RDEPENDS:perl-module-tap-parser-source += "perl-module-file-basename" |
1824 | RDEPENDS_perl-module-tap-parser-source += "perl-module-strict" | 1824 | RDEPENDS:perl-module-tap-parser-source += "perl-module-strict" |
1825 | RDEPENDS_perl-module-tap-parser-source += "perl-module-warnings" | 1825 | RDEPENDS:perl-module-tap-parser-source += "perl-module-warnings" |
1826 | RDEPENDS_perl-module-tap-parser-yamlish-reader += "perl-module-base" | 1826 | RDEPENDS:perl-module-tap-parser-yamlish-reader += "perl-module-base" |
1827 | RDEPENDS_perl-module-tap-parser-yamlish-reader += "perl-module-strict" | 1827 | RDEPENDS:perl-module-tap-parser-yamlish-reader += "perl-module-strict" |
1828 | RDEPENDS_perl-module-tap-parser-yamlish-reader += "perl-module-warnings" | 1828 | RDEPENDS:perl-module-tap-parser-yamlish-reader += "perl-module-warnings" |
1829 | RDEPENDS_perl-module-tap-parser-yamlish-writer += "perl-module-base" | 1829 | RDEPENDS:perl-module-tap-parser-yamlish-writer += "perl-module-base" |
1830 | RDEPENDS_perl-module-tap-parser-yamlish-writer += "perl-module-strict" | 1830 | RDEPENDS:perl-module-tap-parser-yamlish-writer += "perl-module-strict" |
1831 | RDEPENDS_perl-module-tap-parser-yamlish-writer += "perl-module-warnings" | 1831 | RDEPENDS:perl-module-tap-parser-yamlish-writer += "perl-module-warnings" |
1832 | RDEPENDS_perl-module-term-ansicolor += "perl-module-exporter" | 1832 | RDEPENDS:perl-module-term-ansicolor += "perl-module-exporter" |
1833 | RDEPENDS_perl-module-term-ansicolor += "perl-module-strict" | 1833 | RDEPENDS:perl-module-term-ansicolor += "perl-module-strict" |
1834 | RDEPENDS_perl-module-term-ansicolor += "perl-module-warnings" | 1834 | RDEPENDS:perl-module-term-ansicolor += "perl-module-warnings" |
1835 | RDEPENDS_perl-module-term-cap += "perl-module-strict" | 1835 | RDEPENDS:perl-module-term-cap += "perl-module-strict" |
1836 | RDEPENDS_perl-module-term-cap += "perl-module-vars" | 1836 | RDEPENDS:perl-module-term-cap += "perl-module-vars" |
1837 | RDEPENDS_perl-module-term-complete += "perl-module-exporter" | 1837 | RDEPENDS:perl-module-term-complete += "perl-module-exporter" |
1838 | RDEPENDS_perl-module-term-complete += "perl-module-strict" | 1838 | RDEPENDS:perl-module-term-complete += "perl-module-strict" |
1839 | RDEPENDS_perl-module-term-readline += "perl-module-strict" | 1839 | RDEPENDS:perl-module-term-readline += "perl-module-strict" |
1840 | RDEPENDS_perl-module-term-readline += "perl-module-term-cap" | 1840 | RDEPENDS:perl-module-term-readline += "perl-module-term-cap" |
1841 | RDEPENDS_perl-module-test-builder-formatter += "perl-module-strict" | 1841 | RDEPENDS:perl-module-test-builder-formatter += "perl-module-strict" |
1842 | RDEPENDS_perl-module-test-builder-formatter += "perl-module-warnings" | 1842 | RDEPENDS:perl-module-test-builder-formatter += "perl-module-warnings" |
1843 | RDEPENDS_perl-module-test-builder-module += "perl-module-exporter" | 1843 | RDEPENDS:perl-module-test-builder-module += "perl-module-exporter" |
1844 | RDEPENDS_perl-module-test-builder-module += "perl-module-strict" | 1844 | RDEPENDS:perl-module-test-builder-module += "perl-module-strict" |
1845 | RDEPENDS_perl-module-test-builder-module += "perl-module-test-builder" | 1845 | RDEPENDS:perl-module-test-builder-module += "perl-module-test-builder" |
1846 | RDEPENDS_perl-module-test-builder += "perl-module-data-dumper" | 1846 | RDEPENDS:perl-module-test-builder += "perl-module-data-dumper" |
1847 | RDEPENDS_perl-module-test-builder += "perl-module-overload" | 1847 | RDEPENDS:perl-module-test-builder += "perl-module-overload" |
1848 | RDEPENDS_perl-module-test-builder += "perl-module-strict" | 1848 | RDEPENDS:perl-module-test-builder += "perl-module-strict" |
1849 | RDEPENDS_perl-module-test-builder += "perl-module-test-builder-formatter" | 1849 | RDEPENDS:perl-module-test-builder += "perl-module-test-builder-formatter" |
1850 | RDEPENDS_perl-module-test-builder += "perl-module-test-builder-tododiag" | 1850 | RDEPENDS:perl-module-test-builder += "perl-module-test-builder-tododiag" |
1851 | RDEPENDS_perl-module-test-builder += "perl-module-warnings" | 1851 | RDEPENDS:perl-module-test-builder += "perl-module-warnings" |
1852 | RDEPENDS_perl-module-test-builder-tester-color += "perl-module-strict" | 1852 | RDEPENDS:perl-module-test-builder-tester-color += "perl-module-strict" |
1853 | RDEPENDS_perl-module-test-builder-tester-color += "perl-module-test-builder-tester" | 1853 | RDEPENDS:perl-module-test-builder-tester-color += "perl-module-test-builder-tester" |
1854 | RDEPENDS_perl-module-test-builder-tester += "perl-module-exporter" | 1854 | RDEPENDS:perl-module-test-builder-tester += "perl-module-exporter" |
1855 | RDEPENDS_perl-module-test-builder-tester += "perl-module-strict" | 1855 | RDEPENDS:perl-module-test-builder-tester += "perl-module-strict" |
1856 | RDEPENDS_perl-module-test-builder-tester += "perl-module-test-builder" | 1856 | RDEPENDS:perl-module-test-builder-tester += "perl-module-test-builder" |
1857 | RDEPENDS_perl-module-test-builder-tododiag += "perl-module-strict" | 1857 | RDEPENDS:perl-module-test-builder-tododiag += "perl-module-strict" |
1858 | RDEPENDS_perl-module-test-builder-tododiag += "perl-module-warnings" | 1858 | RDEPENDS:perl-module-test-builder-tododiag += "perl-module-warnings" |
1859 | RDEPENDS_perl-module-test-harness += "perl-module-base" | 1859 | RDEPENDS:perl-module-test-harness += "perl-module-base" |
1860 | RDEPENDS_perl-module-test-harness += "perl-module-config" | 1860 | RDEPENDS:perl-module-test-harness += "perl-module-config" |
1861 | RDEPENDS_perl-module-test-harness += "perl-module-constant" | 1861 | RDEPENDS:perl-module-test-harness += "perl-module-constant" |
1862 | RDEPENDS_perl-module-test-harness += "perl-module-strict" | 1862 | RDEPENDS:perl-module-test-harness += "perl-module-strict" |
1863 | RDEPENDS_perl-module-test-harness += "perl-module-tap-harness" | 1863 | RDEPENDS:perl-module-test-harness += "perl-module-tap-harness" |
1864 | RDEPENDS_perl-module-test-harness += "perl-module-tap-parser-aggregator" | 1864 | RDEPENDS:perl-module-test-harness += "perl-module-tap-parser-aggregator" |
1865 | RDEPENDS_perl-module-test-harness += "perl-module-tap-parser-source" | 1865 | RDEPENDS:perl-module-test-harness += "perl-module-tap-parser-source" |
1866 | RDEPENDS_perl-module-test-harness += "perl-module-tap-parser-sourcehandler-perl" | 1866 | RDEPENDS:perl-module-test-harness += "perl-module-tap-parser-sourcehandler-perl" |
1867 | RDEPENDS_perl-module-test-harness += "perl-module-text-parsewords" | 1867 | RDEPENDS:perl-module-test-harness += "perl-module-text-parsewords" |
1868 | RDEPENDS_perl-module-test-harness += "perl-module-warnings" | 1868 | RDEPENDS:perl-module-test-harness += "perl-module-warnings" |
1869 | RDEPENDS_perl-module-test-more += "perl-module-strict" | 1869 | RDEPENDS:perl-module-test-more += "perl-module-strict" |
1870 | RDEPENDS_perl-module-test-more += "perl-module-test-builder-module" | 1870 | RDEPENDS:perl-module-test-more += "perl-module-test-builder-module" |
1871 | RDEPENDS_perl-module-test-more += "perl-module-warnings" | 1871 | RDEPENDS:perl-module-test-more += "perl-module-warnings" |
1872 | RDEPENDS_perl-module-test += "perl-module-exporter" | 1872 | RDEPENDS:perl-module-test += "perl-module-exporter" |
1873 | RDEPENDS_perl-module-test += "perl-module-file-temp" | 1873 | RDEPENDS:perl-module-test += "perl-module-file-temp" |
1874 | RDEPENDS_perl-module-test += "perl-module-strict" | 1874 | RDEPENDS:perl-module-test += "perl-module-strict" |
1875 | RDEPENDS_perl-module-test-simple += "perl-module-strict" | 1875 | RDEPENDS:perl-module-test-simple += "perl-module-strict" |
1876 | RDEPENDS_perl-module-test-simple += "perl-module-test-builder-module" | 1876 | RDEPENDS:perl-module-test-simple += "perl-module-test-builder-module" |
1877 | RDEPENDS_perl-module-test-tester-capture += "perl-module-config" | 1877 | RDEPENDS:perl-module-test-tester-capture += "perl-module-config" |
1878 | RDEPENDS_perl-module-test-tester-capture += "perl-module-strict" | 1878 | RDEPENDS:perl-module-test-tester-capture += "perl-module-strict" |
1879 | RDEPENDS_perl-module-test-tester-capture += "perl-module-test-builder" | 1879 | RDEPENDS:perl-module-test-tester-capture += "perl-module-test-builder" |
1880 | RDEPENDS_perl-module-test-tester-capture += "perl-module-vars" | 1880 | RDEPENDS:perl-module-test-tester-capture += "perl-module-vars" |
1881 | RDEPENDS_perl-module-test-tester-capturerunner += "perl-module-exporter" | 1881 | RDEPENDS:perl-module-test-tester-capturerunner += "perl-module-exporter" |
1882 | RDEPENDS_perl-module-test-tester-capturerunner += "perl-module-strict" | 1882 | RDEPENDS:perl-module-test-tester-capturerunner += "perl-module-strict" |
1883 | RDEPENDS_perl-module-test-tester-capturerunner += "perl-module-test-tester-capture" | 1883 | RDEPENDS:perl-module-test-tester-capturerunner += "perl-module-test-tester-capture" |
1884 | RDEPENDS_perl-module-test-tester-delegate += "perl-module-strict" | 1884 | RDEPENDS:perl-module-test-tester-delegate += "perl-module-strict" |
1885 | RDEPENDS_perl-module-test-tester-delegate += "perl-module-vars" | 1885 | RDEPENDS:perl-module-test-tester-delegate += "perl-module-vars" |
1886 | RDEPENDS_perl-module-test-tester-delegate += "perl-module-warnings" | 1886 | RDEPENDS:perl-module-test-tester-delegate += "perl-module-warnings" |
1887 | RDEPENDS_perl-module-test-tester += "perl-module-exporter" | 1887 | RDEPENDS:perl-module-test-tester += "perl-module-exporter" |
1888 | RDEPENDS_perl-module-test-tester += "perl-module-strict" | 1888 | RDEPENDS:perl-module-test-tester += "perl-module-strict" |
1889 | RDEPENDS_perl-module-test-tester += "perl-module-test-builder" | 1889 | RDEPENDS:perl-module-test-tester += "perl-module-test-builder" |
1890 | RDEPENDS_perl-module-test-tester += "perl-module-test-tester-capturerunner" | 1890 | RDEPENDS:perl-module-test-tester += "perl-module-test-tester-capturerunner" |
1891 | RDEPENDS_perl-module-test-tester += "perl-module-test-tester-delegate" | 1891 | RDEPENDS:perl-module-test-tester += "perl-module-test-tester-delegate" |
1892 | RDEPENDS_perl-module-test-tester += "perl-module-vars" | 1892 | RDEPENDS:perl-module-test-tester += "perl-module-vars" |
1893 | RDEPENDS_perl-module-text-abbrev += "perl-module-exporter" | 1893 | RDEPENDS:perl-module-text-abbrev += "perl-module-exporter" |
1894 | RDEPENDS_perl-module-text-balanced += "perl-module-exporter" | 1894 | RDEPENDS:perl-module-text-balanced += "perl-module-exporter" |
1895 | RDEPENDS_perl-module-text-balanced += "perl-module-overload" | 1895 | RDEPENDS:perl-module-text-balanced += "perl-module-overload" |
1896 | RDEPENDS_perl-module-text-balanced += "perl-module-selfloader" | 1896 | RDEPENDS:perl-module-text-balanced += "perl-module-selfloader" |
1897 | RDEPENDS_perl-module-text-balanced += "perl-module-strict" | 1897 | RDEPENDS:perl-module-text-balanced += "perl-module-strict" |
1898 | RDEPENDS_perl-module-text-balanced += "perl-module-vars" | 1898 | RDEPENDS:perl-module-text-balanced += "perl-module-vars" |
1899 | RDEPENDS_perl-module-text-parsewords += "perl-module-exporter" | 1899 | RDEPENDS:perl-module-text-parsewords += "perl-module-exporter" |
1900 | RDEPENDS_perl-module-text-parsewords += "perl-module-strict" | 1900 | RDEPENDS:perl-module-text-parsewords += "perl-module-strict" |
1901 | RDEPENDS_perl-module-text-tabs += "perl-module-exporter" | 1901 | RDEPENDS:perl-module-text-tabs += "perl-module-exporter" |
1902 | RDEPENDS_perl-module-text-tabs += "perl-module-strict" | 1902 | RDEPENDS:perl-module-text-tabs += "perl-module-strict" |
1903 | RDEPENDS_perl-module-text-tabs += "perl-module-vars" | 1903 | RDEPENDS:perl-module-text-tabs += "perl-module-vars" |
1904 | RDEPENDS_perl-module-text-wrap += "perl-module-exporter" | 1904 | RDEPENDS:perl-module-text-wrap += "perl-module-exporter" |
1905 | RDEPENDS_perl-module-text-wrap += "perl-module-re" | 1905 | RDEPENDS:perl-module-text-wrap += "perl-module-re" |
1906 | RDEPENDS_perl-module-text-wrap += "perl-module-strict" | 1906 | RDEPENDS:perl-module-text-wrap += "perl-module-strict" |
1907 | RDEPENDS_perl-module-text-wrap += "perl-module-text-tabs" | 1907 | RDEPENDS:perl-module-text-wrap += "perl-module-text-tabs" |
1908 | RDEPENDS_perl-module-text-wrap += "perl-module-vars" | 1908 | RDEPENDS:perl-module-text-wrap += "perl-module-vars" |
1909 | RDEPENDS_perl-module-text-wrap += "perl-module-warnings-register" | 1909 | RDEPENDS:perl-module-text-wrap += "perl-module-warnings-register" |
1910 | RDEPENDS_perl-module-thread += "perl-module-config" | 1910 | RDEPENDS:perl-module-thread += "perl-module-config" |
1911 | RDEPENDS_perl-module-thread += "perl-module-exporter" | 1911 | RDEPENDS:perl-module-thread += "perl-module-exporter" |
1912 | RDEPENDS_perl-module-thread += "perl-module-strict" | 1912 | RDEPENDS:perl-module-thread += "perl-module-strict" |
1913 | RDEPENDS_perl-module-thread += "perl-module-threads" | 1913 | RDEPENDS:perl-module-thread += "perl-module-threads" |
1914 | RDEPENDS_perl-module-thread += "perl-module-threads-shared" | 1914 | RDEPENDS:perl-module-thread += "perl-module-threads-shared" |
1915 | RDEPENDS_perl-module-thread += "perl-module-warnings" | 1915 | RDEPENDS:perl-module-thread += "perl-module-warnings" |
1916 | RDEPENDS_perl-module-thread-queue += "perl-module-strict" | 1916 | RDEPENDS:perl-module-thread-queue += "perl-module-strict" |
1917 | RDEPENDS_perl-module-thread-queue += "perl-module-threads-shared" | 1917 | RDEPENDS:perl-module-thread-queue += "perl-module-threads-shared" |
1918 | RDEPENDS_perl-module-thread-queue += "perl-module-warnings" | 1918 | RDEPENDS:perl-module-thread-queue += "perl-module-warnings" |
1919 | RDEPENDS_perl-module-thread-semaphore += "perl-module-strict" | 1919 | RDEPENDS:perl-module-thread-semaphore += "perl-module-strict" |
1920 | RDEPENDS_perl-module-thread-semaphore += "perl-module-threads-shared" | 1920 | RDEPENDS:perl-module-thread-semaphore += "perl-module-threads-shared" |
1921 | RDEPENDS_perl-module-thread-semaphore += "perl-module-warnings" | 1921 | RDEPENDS:perl-module-thread-semaphore += "perl-module-warnings" |
1922 | RDEPENDS_perl-module-threads += "perl-module-config" | 1922 | RDEPENDS:perl-module-threads += "perl-module-config" |
1923 | RDEPENDS_perl-module-threads += "perl-module-overload" | 1923 | RDEPENDS:perl-module-threads += "perl-module-overload" |
1924 | RDEPENDS_perl-module-threads += "perl-module-strict" | 1924 | RDEPENDS:perl-module-threads += "perl-module-strict" |
1925 | RDEPENDS_perl-module-threads += "perl-module-warnings" | 1925 | RDEPENDS:perl-module-threads += "perl-module-warnings" |
1926 | RDEPENDS_perl-module-threads += "perl-module-xsloader" | 1926 | RDEPENDS:perl-module-threads += "perl-module-xsloader" |
1927 | RDEPENDS_perl-module-threads-shared += "perl-module-config" | 1927 | RDEPENDS:perl-module-threads-shared += "perl-module-config" |
1928 | RDEPENDS_perl-module-threads-shared += "perl-module-strict" | 1928 | RDEPENDS:perl-module-threads-shared += "perl-module-strict" |
1929 | RDEPENDS_perl-module-threads-shared += "perl-module-warnings" | 1929 | RDEPENDS:perl-module-threads-shared += "perl-module-warnings" |
1930 | RDEPENDS_perl-module-threads-shared += "perl-module-xsloader" | 1930 | RDEPENDS:perl-module-threads-shared += "perl-module-xsloader" |
1931 | RDEPENDS_perl-module-tie-array += "perl-module-strict" | 1931 | RDEPENDS:perl-module-tie-array += "perl-module-strict" |
1932 | RDEPENDS_perl-module-tie-file += "perl-module-fcntl" | 1932 | RDEPENDS:perl-module-tie-file += "perl-module-fcntl" |
1933 | RDEPENDS_perl-module-tie-file += "perl-module-posix" | 1933 | RDEPENDS:perl-module-tie-file += "perl-module-posix" |
1934 | RDEPENDS_perl-module-tie-file += "perl-module-strict" | 1934 | RDEPENDS:perl-module-tie-file += "perl-module-strict" |
1935 | RDEPENDS_perl-module-tie-file += "perl-module-warnings" | 1935 | RDEPENDS:perl-module-tie-file += "perl-module-warnings" |
1936 | RDEPENDS_perl-module-tie-handle += "perl-module-tie-stdhandle" | 1936 | RDEPENDS:perl-module-tie-handle += "perl-module-tie-stdhandle" |
1937 | RDEPENDS_perl-module-tie-handle += "perl-module-warnings-register" | 1937 | RDEPENDS:perl-module-tie-handle += "perl-module-warnings-register" |
1938 | RDEPENDS_perl-module-tie-hash-namedcapture += "perl-module-strict" | 1938 | RDEPENDS:perl-module-tie-hash-namedcapture += "perl-module-strict" |
1939 | RDEPENDS_perl-module-tie-hash += "perl-module-warnings-register" | 1939 | RDEPENDS:perl-module-tie-hash += "perl-module-warnings-register" |
1940 | RDEPENDS_perl-module-tie-memoize += "perl-module-strict" | 1940 | RDEPENDS:perl-module-tie-memoize += "perl-module-strict" |
1941 | RDEPENDS_perl-module-tie-memoize += "perl-module-tie-hash" | 1941 | RDEPENDS:perl-module-tie-memoize += "perl-module-tie-hash" |
1942 | RDEPENDS_perl-module-tie-refhash += "perl-module-config" | 1942 | RDEPENDS:perl-module-tie-refhash += "perl-module-config" |
1943 | RDEPENDS_perl-module-tie-refhash += "perl-module-overload" | 1943 | RDEPENDS:perl-module-tie-refhash += "perl-module-overload" |
1944 | RDEPENDS_perl-module-tie-refhash += "perl-module-strict" | 1944 | RDEPENDS:perl-module-tie-refhash += "perl-module-strict" |
1945 | RDEPENDS_perl-module-tie-refhash += "perl-module-tie-hash" | 1945 | RDEPENDS:perl-module-tie-refhash += "perl-module-tie-hash" |
1946 | RDEPENDS_perl-module-tie-refhash += "perl-module-vars" | 1946 | RDEPENDS:perl-module-tie-refhash += "perl-module-vars" |
1947 | RDEPENDS_perl-module-tie-scalar += "perl-module-warnings-register" | 1947 | RDEPENDS:perl-module-tie-scalar += "perl-module-warnings-register" |
1948 | RDEPENDS_perl-module-tie-stdhandle += "perl-module-strict" | 1948 | RDEPENDS:perl-module-tie-stdhandle += "perl-module-strict" |
1949 | RDEPENDS_perl-module-tie-stdhandle += "perl-module-tie-handle" | 1949 | RDEPENDS:perl-module-tie-stdhandle += "perl-module-tie-handle" |
1950 | RDEPENDS_perl-module-tie-substrhash += "perl-module-integer" | 1950 | RDEPENDS:perl-module-tie-substrhash += "perl-module-integer" |
1951 | RDEPENDS_perl-module-time-gmtime += "perl-module-exporter" | 1951 | RDEPENDS:perl-module-time-gmtime += "perl-module-exporter" |
1952 | RDEPENDS_perl-module-time-gmtime += "perl-module-strict" | 1952 | RDEPENDS:perl-module-time-gmtime += "perl-module-strict" |
1953 | RDEPENDS_perl-module-time-gmtime += "perl-module-time-tm" | 1953 | RDEPENDS:perl-module-time-gmtime += "perl-module-time-tm" |
1954 | RDEPENDS_perl-module-time-hires += "perl-module-exporter" | 1954 | RDEPENDS:perl-module-time-hires += "perl-module-exporter" |
1955 | RDEPENDS_perl-module-time-hires += "perl-module-strict" | 1955 | RDEPENDS:perl-module-time-hires += "perl-module-strict" |
1956 | RDEPENDS_perl-module-time-hires += "perl-module-xsloader" | 1956 | RDEPENDS:perl-module-time-hires += "perl-module-xsloader" |
1957 | RDEPENDS_perl-module-time-local += "perl-module-config" | 1957 | RDEPENDS:perl-module-time-local += "perl-module-config" |
1958 | RDEPENDS_perl-module-time-local += "perl-module-constant" | 1958 | RDEPENDS:perl-module-time-local += "perl-module-constant" |
1959 | RDEPENDS_perl-module-time-local += "perl-module-exporter" | 1959 | RDEPENDS:perl-module-time-local += "perl-module-exporter" |
1960 | RDEPENDS_perl-module-time-local += "perl-module-parent" | 1960 | RDEPENDS:perl-module-time-local += "perl-module-parent" |
1961 | RDEPENDS_perl-module-time-local += "perl-module-strict" | 1961 | RDEPENDS:perl-module-time-local += "perl-module-strict" |
1962 | RDEPENDS_perl-module-time-localtime += "perl-module-exporter" | 1962 | RDEPENDS:perl-module-time-localtime += "perl-module-exporter" |
1963 | RDEPENDS_perl-module-time-localtime += "perl-module-strict" | 1963 | RDEPENDS:perl-module-time-localtime += "perl-module-strict" |
1964 | RDEPENDS_perl-module-time-localtime += "perl-module-time-tm" | 1964 | RDEPENDS:perl-module-time-localtime += "perl-module-time-tm" |
1965 | RDEPENDS_perl-module-time-piece += "perl-module-constant" | 1965 | RDEPENDS:perl-module-time-piece += "perl-module-constant" |
1966 | RDEPENDS_perl-module-time-piece += "perl-module-exporter" | 1966 | RDEPENDS:perl-module-time-piece += "perl-module-exporter" |
1967 | RDEPENDS_perl-module-time-piece += "perl-module-integer" | 1967 | RDEPENDS:perl-module-time-piece += "perl-module-integer" |
1968 | RDEPENDS_perl-module-time-piece += "perl-module-overload" | 1968 | RDEPENDS:perl-module-time-piece += "perl-module-overload" |
1969 | RDEPENDS_perl-module-time-piece += "perl-module-strict" | 1969 | RDEPENDS:perl-module-time-piece += "perl-module-strict" |
1970 | RDEPENDS_perl-module-time-piece += "perl-module-time-local" | 1970 | RDEPENDS:perl-module-time-piece += "perl-module-time-local" |
1971 | RDEPENDS_perl-module-time-piece += "perl-module-time-seconds" | 1971 | RDEPENDS:perl-module-time-piece += "perl-module-time-seconds" |
1972 | RDEPENDS_perl-module-time-piece += "perl-module-xsloader" | 1972 | RDEPENDS:perl-module-time-piece += "perl-module-xsloader" |
1973 | RDEPENDS_perl-module-time-seconds += "perl-module-constant" | 1973 | RDEPENDS:perl-module-time-seconds += "perl-module-constant" |
1974 | RDEPENDS_perl-module-time-seconds += "perl-module-exporter" | 1974 | RDEPENDS:perl-module-time-seconds += "perl-module-exporter" |
1975 | RDEPENDS_perl-module-time-seconds += "perl-module-overload" | 1975 | RDEPENDS:perl-module-time-seconds += "perl-module-overload" |
1976 | RDEPENDS_perl-module-time-seconds += "perl-module-strict" | 1976 | RDEPENDS:perl-module-time-seconds += "perl-module-strict" |
1977 | RDEPENDS_perl-module-time-tm += "perl-module-class-struct" | 1977 | RDEPENDS:perl-module-time-tm += "perl-module-class-struct" |
1978 | RDEPENDS_perl-module-time-tm += "perl-module-strict" | 1978 | RDEPENDS:perl-module-time-tm += "perl-module-strict" |
1979 | RDEPENDS_perl-module-unicode-collate-cjk-big5 += "perl-module-strict" | 1979 | RDEPENDS:perl-module-unicode-collate-cjk-big5 += "perl-module-strict" |
1980 | RDEPENDS_perl-module-unicode-collate-cjk-big5 += "perl-module-warnings" | 1980 | RDEPENDS:perl-module-unicode-collate-cjk-big5 += "perl-module-warnings" |
1981 | RDEPENDS_perl-module-unicode-collate-cjk-gb2312 += "perl-module-strict" | 1981 | RDEPENDS:perl-module-unicode-collate-cjk-gb2312 += "perl-module-strict" |
1982 | RDEPENDS_perl-module-unicode-collate-cjk-gb2312 += "perl-module-warnings" | 1982 | RDEPENDS:perl-module-unicode-collate-cjk-gb2312 += "perl-module-warnings" |
1983 | RDEPENDS_perl-module-unicode-collate-cjk-jisx0208 += "perl-module-strict" | 1983 | RDEPENDS:perl-module-unicode-collate-cjk-jisx0208 += "perl-module-strict" |
1984 | RDEPENDS_perl-module-unicode-collate-cjk-jisx0208 += "perl-module-warnings" | 1984 | RDEPENDS:perl-module-unicode-collate-cjk-jisx0208 += "perl-module-warnings" |
1985 | RDEPENDS_perl-module-unicode-collate-cjk-korean += "perl-module-strict" | 1985 | RDEPENDS:perl-module-unicode-collate-cjk-korean += "perl-module-strict" |
1986 | RDEPENDS_perl-module-unicode-collate-cjk-korean += "perl-module-warnings" | 1986 | RDEPENDS:perl-module-unicode-collate-cjk-korean += "perl-module-warnings" |
1987 | RDEPENDS_perl-module-unicode-collate-cjk-pinyin += "perl-module-strict" | 1987 | RDEPENDS:perl-module-unicode-collate-cjk-pinyin += "perl-module-strict" |
1988 | RDEPENDS_perl-module-unicode-collate-cjk-pinyin += "perl-module-warnings" | 1988 | RDEPENDS:perl-module-unicode-collate-cjk-pinyin += "perl-module-warnings" |
1989 | RDEPENDS_perl-module-unicode-collate-cjk-stroke += "perl-module-strict" | 1989 | RDEPENDS:perl-module-unicode-collate-cjk-stroke += "perl-module-strict" |
1990 | RDEPENDS_perl-module-unicode-collate-cjk-stroke += "perl-module-warnings" | 1990 | RDEPENDS:perl-module-unicode-collate-cjk-stroke += "perl-module-warnings" |
1991 | RDEPENDS_perl-module-unicode-collate-cjk-zhuyin += "perl-module-strict" | 1991 | RDEPENDS:perl-module-unicode-collate-cjk-zhuyin += "perl-module-strict" |
1992 | RDEPENDS_perl-module-unicode-collate-cjk-zhuyin += "perl-module-warnings" | 1992 | RDEPENDS:perl-module-unicode-collate-cjk-zhuyin += "perl-module-warnings" |
1993 | RDEPENDS_perl-module-unicode-collate-locale += "perl-module-base" | 1993 | RDEPENDS:perl-module-unicode-collate-locale += "perl-module-base" |
1994 | RDEPENDS_perl-module-unicode-collate-locale += "perl-module-strict" | 1994 | RDEPENDS:perl-module-unicode-collate-locale += "perl-module-strict" |
1995 | RDEPENDS_perl-module-unicode-collate-locale += "perl-module-warnings" | 1995 | RDEPENDS:perl-module-unicode-collate-locale += "perl-module-warnings" |
1996 | RDEPENDS_perl-module-unicode-collate += "perl-module-constant" | 1996 | RDEPENDS:perl-module-unicode-collate += "perl-module-constant" |
1997 | RDEPENDS_perl-module-unicode-collate += "perl-module-strict" | 1997 | RDEPENDS:perl-module-unicode-collate += "perl-module-strict" |
1998 | RDEPENDS_perl-module-unicode-collate += "perl-module-warnings" | 1998 | RDEPENDS:perl-module-unicode-collate += "perl-module-warnings" |
1999 | RDEPENDS_perl-module-unicode-collate += "perl-module-xsloader" | 1999 | RDEPENDS:perl-module-unicode-collate += "perl-module-xsloader" |
2000 | RDEPENDS_perl-module-unicode-normalize += "perl-module-exporter" | 2000 | RDEPENDS:perl-module-unicode-normalize += "perl-module-exporter" |
2001 | RDEPENDS_perl-module-unicode-normalize += "perl-module-strict" | 2001 | RDEPENDS:perl-module-unicode-normalize += "perl-module-strict" |
2002 | RDEPENDS_perl-module-unicode-normalize += "perl-module-warnings" | 2002 | RDEPENDS:perl-module-unicode-normalize += "perl-module-warnings" |
2003 | RDEPENDS_perl-module-unicode-normalize += "perl-module-xsloader" | 2003 | RDEPENDS:perl-module-unicode-normalize += "perl-module-xsloader" |
2004 | RDEPENDS_perl-module-unicode-ucd += "perl-module-charnames" | 2004 | RDEPENDS:perl-module-unicode-ucd += "perl-module-charnames" |
2005 | RDEPENDS_perl-module-unicode-ucd += "perl-module-exporter" | 2005 | RDEPENDS:perl-module-unicode-ucd += "perl-module-exporter" |
2006 | RDEPENDS_perl-module-unicode-ucd += "perl-module-feature" | 2006 | RDEPENDS:perl-module-unicode-ucd += "perl-module-feature" |
2007 | RDEPENDS_perl-module-unicode-ucd += "perl-module-if" | 2007 | RDEPENDS:perl-module-unicode-ucd += "perl-module-if" |
2008 | RDEPENDS_perl-module-unicode-ucd += "perl-module-integer" | 2008 | RDEPENDS:perl-module-unicode-ucd += "perl-module-integer" |
2009 | RDEPENDS_perl-module-unicode-ucd += "perl-module-re" | 2009 | RDEPENDS:perl-module-unicode-ucd += "perl-module-re" |
2010 | RDEPENDS_perl-module-unicode-ucd += "perl-module-strict" | 2010 | RDEPENDS:perl-module-unicode-ucd += "perl-module-strict" |
2011 | RDEPENDS_perl-module-unicode-ucd += "perl-module-unicode-normalize" | 2011 | RDEPENDS:perl-module-unicode-ucd += "perl-module-unicode-normalize" |
2012 | RDEPENDS_perl-module-unicode-ucd += "perl-module-warnings" | 2012 | RDEPENDS:perl-module-unicode-ucd += "perl-module-warnings" |
2013 | RDEPENDS_perl-module-user-grent += "perl-module-class-struct" | 2013 | RDEPENDS:perl-module-user-grent += "perl-module-class-struct" |
2014 | RDEPENDS_perl-module-user-grent += "perl-module-exporter" | 2014 | RDEPENDS:perl-module-user-grent += "perl-module-exporter" |
2015 | RDEPENDS_perl-module-user-grent += "perl-module-strict" | 2015 | RDEPENDS:perl-module-user-grent += "perl-module-strict" |
2016 | RDEPENDS_perl-module-user-pwent += "perl-module-class-struct" | 2016 | RDEPENDS:perl-module-user-pwent += "perl-module-class-struct" |
2017 | RDEPENDS_perl-module-user-pwent += "perl-module-config" | 2017 | RDEPENDS:perl-module-user-pwent += "perl-module-config" |
2018 | RDEPENDS_perl-module-user-pwent += "perl-module-exporter" | 2018 | RDEPENDS:perl-module-user-pwent += "perl-module-exporter" |
2019 | RDEPENDS_perl-module-user-pwent += "perl-module-strict" | 2019 | RDEPENDS:perl-module-user-pwent += "perl-module-strict" |
2020 | RDEPENDS_perl-module-user-pwent += "perl-module-warnings" | 2020 | RDEPENDS:perl-module-user-pwent += "perl-module-warnings" |
2021 | RDEPENDS_perl-module-version += "perl-module-strict" | 2021 | RDEPENDS:perl-module-version += "perl-module-strict" |
2022 | RDEPENDS_perl-module-version += "perl-module-version-regex" | 2022 | RDEPENDS:perl-module-version += "perl-module-version-regex" |
2023 | RDEPENDS_perl-module-version += "perl-module-warnings-register" | 2023 | RDEPENDS:perl-module-version += "perl-module-warnings-register" |
2024 | RDEPENDS_perl-module-version-regex += "perl-module-strict" | 2024 | RDEPENDS:perl-module-version-regex += "perl-module-strict" |
2025 | RDEPENDS_perl-module-xsloader += "perl-module-dynaloader" | 2025 | RDEPENDS:perl-module-xsloader += "perl-module-dynaloader" |
diff --git a/meta/recipes-devtools/perl/liberror-perl_0.17029.bb b/meta/recipes-devtools/perl/liberror-perl_0.17029.bb index 038808f0cd..e38d32ac46 100644 --- a/meta/recipes-devtools/perl/liberror-perl_0.17029.bb +++ b/meta/recipes-devtools/perl/liberror-perl_0.17029.bb | |||
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=8f3499d09ee74a050c0319391ff9d100" | |||
11 | 11 | ||
12 | DEPENDS += "perl" | 12 | DEPENDS += "perl" |
13 | 13 | ||
14 | RDEPENDS_${PN} += " \ | 14 | RDEPENDS:${PN} += " \ |
15 | perl-module-carp \ | 15 | perl-module-carp \ |
16 | perl-module-exporter \ | 16 | perl-module-exporter \ |
17 | perl-module-scalar-util \ | 17 | perl-module-scalar-util \ |
@@ -21,7 +21,7 @@ RDEPENDS_${PN} += " \ | |||
21 | perl-module-warnings \ | 21 | perl-module-warnings \ |
22 | " | 22 | " |
23 | 23 | ||
24 | RDEPENDS_${PN}-ptest += " \ | 24 | RDEPENDS:${PN}-ptest += " \ |
25 | perl-module-base \ | 25 | perl-module-base \ |
26 | perl-module-file-spec \ | 26 | perl-module-file-spec \ |
27 | perl-module-io-handle \ | 27 | perl-module-io-handle \ |
@@ -39,7 +39,7 @@ S = "${WORKDIR}/Error-${PV}" | |||
39 | 39 | ||
40 | inherit cpan ptest-perl | 40 | inherit cpan ptest-perl |
41 | 41 | ||
42 | do_install_prepend() { | 42 | do_install:prepend() { |
43 | # test requires "-T" (taint) command line option | 43 | # test requires "-T" (taint) command line option |
44 | rm -rf ${B}/t/pod-coverage.t | 44 | rm -rf ${B}/t/pod-coverage.t |
45 | } | 45 | } |
diff --git a/meta/recipes-devtools/perl/libmodule-build-perl_0.4231.bb b/meta/recipes-devtools/perl/libmodule-build-perl_0.4231.bb index a6fd7b1c07..8af38ba601 100644 --- a/meta/recipes-devtools/perl/libmodule-build-perl_0.4231.bb +++ b/meta/recipes-devtools/perl/libmodule-build-perl_0.4231.bb | |||
@@ -35,7 +35,7 @@ do_patch[postfuncs] += "do_patch_module_build" | |||
35 | 35 | ||
36 | EXTRA_CPAN_BUILD_FLAGS = "--create_packlist=0" | 36 | EXTRA_CPAN_BUILD_FLAGS = "--create_packlist=0" |
37 | 37 | ||
38 | do_install_append () { | 38 | do_install:append () { |
39 | rm -rf ${D}${docdir}/perl/html | 39 | rm -rf ${D}${docdir}/perl/html |
40 | } | 40 | } |
41 | 41 | ||
@@ -55,7 +55,7 @@ do_install_ptest() { | |||
55 | rm -rf ${D}${PTEST_PATH}/_build/magicnum | 55 | rm -rf ${D}${PTEST_PATH}/_build/magicnum |
56 | } | 56 | } |
57 | 57 | ||
58 | RDEPENDS_${PN} += " \ | 58 | RDEPENDS:${PN} += " \ |
59 | perl-module-carp \ | 59 | perl-module-carp \ |
60 | perl-module-cpan \ | 60 | perl-module-cpan \ |
61 | perl-module-config \ | 61 | perl-module-config \ |
@@ -87,7 +87,7 @@ RDEPENDS_${PN} += " \ | |||
87 | perl-module-utf8 \ | 87 | perl-module-utf8 \ |
88 | " | 88 | " |
89 | 89 | ||
90 | RDEPENDS_${PN}-ptest += " \ | 90 | RDEPENDS:${PN}-ptest += " \ |
91 | packagegroup-core-buildessential \ | 91 | packagegroup-core-buildessential \ |
92 | perl-dev \ | 92 | perl-dev \ |
93 | perl-module-blib \ | 93 | perl-module-blib \ |
@@ -104,7 +104,7 @@ RDEPENDS_${PN}-ptest += " \ | |||
104 | perl-module-test-more \ | 104 | perl-module-test-more \ |
105 | " | 105 | " |
106 | 106 | ||
107 | RPROVIDES_${PN} += "\ | 107 | RPROVIDES:${PN} += "\ |
108 | libmodule-build-base-perl \ | 108 | libmodule-build-base-perl \ |
109 | libmodule-build-compat-perl \ | 109 | libmodule-build-compat-perl \ |
110 | libmodule-build-config-perl \ | 110 | libmodule-build-config-perl \ |
@@ -118,6 +118,6 @@ RPROVIDES_${PN} += "\ | |||
118 | " | 118 | " |
119 | 119 | ||
120 | # t/xs.t RDEPENDS on "EXTERN.h" provided by perl-dev | 120 | # t/xs.t RDEPENDS on "EXTERN.h" provided by perl-dev |
121 | INSANE_SKIP_${PN}-ptest = "dev-deps" | 121 | INSANE_SKIP:${PN}-ptest = "dev-deps" |
122 | 122 | ||
123 | BBCLASSEXTEND = "native" | 123 | BBCLASSEXTEND = "native" |
diff --git a/meta/recipes-devtools/perl/libtest-needs-perl_0.002009.bb b/meta/recipes-devtools/perl/libtest-needs-perl_0.002009.bb index 2234f6a74b..05383752ea 100644 --- a/meta/recipes-devtools/perl/libtest-needs-perl_0.002009.bb +++ b/meta/recipes-devtools/perl/libtest-needs-perl_0.002009.bb | |||
@@ -24,6 +24,6 @@ S = "${WORKDIR}/${CPAN_NAME}-${PV}" | |||
24 | 24 | ||
25 | inherit cpan ptest-perl | 25 | inherit cpan ptest-perl |
26 | 26 | ||
27 | RDEPENDS_${PN}-ptest += "perl-module-test-more perl-module-ipc-open3 perl-module-lib perl-module-version" | 27 | RDEPENDS:${PN}-ptest += "perl-module-test-more perl-module-ipc-open3 perl-module-lib perl-module-version" |
28 | 28 | ||
29 | BBCLASSEXTEND = "native" | 29 | BBCLASSEXTEND = "native" |
diff --git a/meta/recipes-devtools/perl/liburi-perl_5.08.bb b/meta/recipes-devtools/perl/liburi-perl_5.08.bb index 4d22b17e00..0cc27e8625 100644 --- a/meta/recipes-devtools/perl/liburi-perl_5.08.bb +++ b/meta/recipes-devtools/perl/liburi-perl_5.08.bb | |||
@@ -27,14 +27,14 @@ do_compile() { | |||
27 | cpan_do_compile | 27 | cpan_do_compile |
28 | } | 28 | } |
29 | 29 | ||
30 | do_install_prepend() { | 30 | do_install:prepend() { |
31 | # these tests require "-T" (taint) command line option | 31 | # these tests require "-T" (taint) command line option |
32 | rm -rf ${B}/t/cwd.t | 32 | rm -rf ${B}/t/cwd.t |
33 | rm -rf ${B}/t/file.t | 33 | rm -rf ${B}/t/file.t |
34 | } | 34 | } |
35 | 35 | ||
36 | RDEPENDS_${PN} += "perl-module-integer perl-module-mime-base64" | 36 | RDEPENDS:${PN} += "perl-module-integer perl-module-mime-base64" |
37 | RDEPENDS_${PN}-ptest += " \ | 37 | RDEPENDS:${PN}-ptest += " \ |
38 | libtest-needs-perl \ | 38 | libtest-needs-perl \ |
39 | perl-module-test-more \ | 39 | perl-module-test-more \ |
40 | perl-module-test \ | 40 | perl-module-test \ |
diff --git a/meta/recipes-devtools/perl/libxml-parser-perl_2.46.bb b/meta/recipes-devtools/perl/libxml-parser-perl_2.46.bb index bc154bbdc5..3b9206e984 100644 --- a/meta/recipes-devtools/perl/libxml-parser-perl_2.46.bb +++ b/meta/recipes-devtools/perl/libxml-parser-perl_2.46.bb | |||
@@ -21,13 +21,13 @@ inherit cpan ptest-perl | |||
21 | 21 | ||
22 | # fix up sub MakeMaker project as arguments don't get propagated though | 22 | # fix up sub MakeMaker project as arguments don't get propagated though |
23 | # see https://rt.cpan.org/Public/Bug/Display.html?id=28632 | 23 | # see https://rt.cpan.org/Public/Bug/Display.html?id=28632 |
24 | do_configure_append_class-target() { | 24 | do_configure:append:class-target() { |
25 | sed -E \ | 25 | sed -E \ |
26 | -e 's:-L${STAGING_LIBDIR}::g' -e 's:-I${STAGING_INCDIR}::g' \ | 26 | -e 's:-L${STAGING_LIBDIR}::g' -e 's:-I${STAGING_INCDIR}::g' \ |
27 | -i Makefile Expat/Makefile | 27 | -i Makefile Expat/Makefile |
28 | } | 28 | } |
29 | 29 | ||
30 | do_configure_append() { | 30 | do_configure:append() { |
31 | sed -e 's:--sysroot=.*\(\s\|$\):--sysroot=${STAGING_DIR_TARGET} :g' \ | 31 | sed -e 's:--sysroot=.*\(\s\|$\):--sysroot=${STAGING_DIR_TARGET} :g' \ |
32 | -i Makefile Expat/Makefile | 32 | -i Makefile Expat/Makefile |
33 | sed 's:^FULL_AR = .*:FULL_AR = ${AR}:g' -i Expat/Makefile | 33 | sed 's:^FULL_AR = .*:FULL_AR = ${AR}:g' -i Expat/Makefile |
@@ -40,7 +40,7 @@ do_compile() { | |||
40 | cpan_do_compile | 40 | cpan_do_compile |
41 | } | 41 | } |
42 | 42 | ||
43 | do_compile_class-native() { | 43 | do_compile:class-native() { |
44 | cpan_do_compile | 44 | cpan_do_compile |
45 | } | 45 | } |
46 | 46 | ||
@@ -53,6 +53,6 @@ do_install_ptest() { | |||
53 | chown -R root:root ${D}${PTEST_PATH}/samples | 53 | chown -R root:root ${D}${PTEST_PATH}/samples |
54 | } | 54 | } |
55 | 55 | ||
56 | RDEPENDS_${PN}-ptest += "perl-module-filehandle perl-module-if perl-module-test perl-module-test-more" | 56 | RDEPENDS:${PN}-ptest += "perl-module-filehandle perl-module-if perl-module-test perl-module-test-more" |
57 | 57 | ||
58 | BBCLASSEXTEND="native nativesdk" | 58 | BBCLASSEXTEND="native nativesdk" |
diff --git a/meta/recipes-devtools/perl/libxml-perl_0.08.bb b/meta/recipes-devtools/perl/libxml-perl_0.08.bb index 818ae3d571..b77ad24b58 100644 --- a/meta/recipes-devtools/perl/libxml-perl_0.08.bb +++ b/meta/recipes-devtools/perl/libxml-perl_0.08.bb | |||
@@ -26,5 +26,5 @@ do_compile() { | |||
26 | cpan_do_compile | 26 | cpan_do_compile |
27 | } | 27 | } |
28 | 28 | ||
29 | RDEPENDS_${PN} += "perl-module-carp perl-module-overload perl-module-universal perl-module-io-handle" | 29 | RDEPENDS:${PN} += "perl-module-carp perl-module-overload perl-module-universal perl-module-io-handle" |
30 | RDEPENDS_${PN}-ptest += "libxml-parser-perl perl-module-file-glob" | 30 | RDEPENDS:${PN}-ptest += "libxml-parser-perl perl-module-file-glob" |
diff --git a/meta/recipes-devtools/perl/libxml-simple-perl_2.25.bb b/meta/recipes-devtools/perl/libxml-simple-perl_2.25.bb index 53788d5585..e2938226a9 100644 --- a/meta/recipes-devtools/perl/libxml-simple-perl_2.25.bb +++ b/meta/recipes-devtools/perl/libxml-simple-perl_2.25.bb | |||
@@ -21,13 +21,13 @@ EXTRA_PERLFLAGS = "-I ${PERLHOSTLIB}" | |||
21 | 21 | ||
22 | inherit cpan ptest-perl | 22 | inherit cpan ptest-perl |
23 | 23 | ||
24 | RDEPENDS_${PN} += " \ | 24 | RDEPENDS:${PN} += " \ |
25 | libxml-namespacesupport-perl \ | 25 | libxml-namespacesupport-perl \ |
26 | libxml-parser-perl \ | 26 | libxml-parser-perl \ |
27 | libxml-sax-perl \ | 27 | libxml-sax-perl \ |
28 | " | 28 | " |
29 | 29 | ||
30 | RDEPENDS_${PN}-ptest += " \ | 30 | RDEPENDS:${PN}-ptest += " \ |
31 | perl-module-file-temp \ | 31 | perl-module-file-temp \ |
32 | perl-module-test-more \ | 32 | perl-module-test-more \ |
33 | " | 33 | " |
diff --git a/meta/recipes-devtools/perl/perl-ptest.inc b/meta/recipes-devtools/perl/perl-ptest.inc index 98e3361fcc..54c7807571 100644 --- a/meta/recipes-devtools/perl/perl-ptest.inc +++ b/meta/recipes-devtools/perl/perl-ptest.inc | |||
@@ -47,7 +47,7 @@ do_install_ptest () { | |||
47 | rm ${D}${PTEST_PATH}/Makefile.config ${D}${PTEST_PATH}/xconfig.h ${D}${PTEST_PATH}/xconfig.sh | 47 | rm ${D}${PTEST_PATH}/Makefile.config ${D}${PTEST_PATH}/xconfig.h ${D}${PTEST_PATH}/xconfig.sh |
48 | } | 48 | } |
49 | 49 | ||
50 | python populate_packages_prepend() { | 50 | python populate_packages:prepend() { |
51 | # Put all *.t files from the lib dir in the ptest package | 51 | # Put all *.t files from the lib dir in the ptest package |
52 | # do_split_packages requires a pair of () in the regex, but we have nothing | 52 | # do_split_packages requires a pair of () in the regex, but we have nothing |
53 | # to match, so use an empty pair. | 53 | # to match, so use an empty pair. |
@@ -56,8 +56,8 @@ python populate_packages_prepend() { | |||
56 | '${PN}-ptest%s', '%s', recursive=True, match_path=True) | 56 | '${PN}-ptest%s', '%s', recursive=True, match_path=True) |
57 | } | 57 | } |
58 | 58 | ||
59 | RDEPENDS_${PN}-ptest += "${PN}-modules ${PN}-doc sed" | 59 | RDEPENDS:${PN}-ptest += "${PN}-modules ${PN}-doc sed" |
60 | 60 | ||
61 | # The perl-ptest package contains Perl internal modules and generating file | 61 | # The perl-ptest package contains Perl internal modules and generating file |
62 | # dependencies for it causes problems. | 62 | # dependencies for it causes problems. |
63 | SKIP_FILEDEPS_${PN}-ptest = '1' | 63 | SKIP_FILEDEPS:${PN}-ptest = '1' |
diff --git a/meta/recipes-devtools/perl/perl_5.34.0.bb b/meta/recipes-devtools/perl/perl_5.34.0.bb index 434535c5ee..cc01321f7a 100644 --- a/meta/recipes-devtools/perl/perl_5.34.0.bb +++ b/meta/recipes-devtools/perl/perl_5.34.0.bb | |||
@@ -18,10 +18,10 @@ SRC_URI = "https://www.cpan.org/src/5.0/perl-${PV}.tar.gz;name=perl \ | |||
18 | file://0002-Constant-Fix-up-shebang.patch \ | 18 | file://0002-Constant-Fix-up-shebang.patch \ |
19 | file://determinism.patch \ | 19 | file://determinism.patch \ |
20 | " | 20 | " |
21 | SRC_URI_append_class-native = " \ | 21 | SRC_URI:append:class-native = " \ |
22 | file://perl-configpm-switch.patch \ | 22 | file://perl-configpm-switch.patch \ |
23 | " | 23 | " |
24 | SRC_URI_append_class-target = " \ | 24 | SRC_URI:append:class-target = " \ |
25 | file://encodefix.patch \ | 25 | file://encodefix.patch \ |
26 | " | 26 | " |
27 | 27 | ||
@@ -42,11 +42,11 @@ PACKAGECONFIG[gdbm] = ",-Ui_gdbm,gdbm" | |||
42 | # Don't generate comments in enc2xs output files. They are not reproducible | 42 | # Don't generate comments in enc2xs output files. They are not reproducible |
43 | export ENC2XS_NO_COMMENTS = "1" | 43 | export ENC2XS_NO_COMMENTS = "1" |
44 | 44 | ||
45 | do_configure_prepend() { | 45 | do_configure:prepend() { |
46 | cp -rfp ${STAGING_DATADIR_NATIVE}/perl-cross/* ${S} | 46 | cp -rfp ${STAGING_DATADIR_NATIVE}/perl-cross/* ${S} |
47 | } | 47 | } |
48 | 48 | ||
49 | do_configure_class-target() { | 49 | do_configure:class-target() { |
50 | ./configure --prefix=${prefix} --libdir=${libdir} \ | 50 | ./configure --prefix=${prefix} --libdir=${libdir} \ |
51 | --target=${TARGET_SYS} \ | 51 | --target=${TARGET_SYS} \ |
52 | -Duseshrplib \ | 52 | -Duseshrplib \ |
@@ -72,7 +72,7 @@ do_configure_class-target() { | |||
72 | sed -i -e "s,${STAGING_LIBDIR},${libdir},g" config.h | 72 | sed -i -e "s,${STAGING_LIBDIR},${libdir},g" config.h |
73 | } | 73 | } |
74 | 74 | ||
75 | do_configure_class-nativesdk() { | 75 | do_configure:class-nativesdk() { |
76 | ./configure --prefix=${prefix} \ | 76 | ./configure --prefix=${prefix} \ |
77 | --target=${TARGET_SYS} \ | 77 | --target=${TARGET_SYS} \ |
78 | -Duseshrplib \ | 78 | -Duseshrplib \ |
@@ -85,7 +85,7 @@ do_configure_class-nativesdk() { | |||
85 | sed -i -e "s,${STAGING_LIBDIR},${libdir},g" config.h | 85 | sed -i -e "s,${STAGING_LIBDIR},${libdir},g" config.h |
86 | } | 86 | } |
87 | 87 | ||
88 | do_configure_class-native() { | 88 | do_configure:class-native() { |
89 | ./configure --prefix=${prefix} \ | 89 | ./configure --prefix=${prefix} \ |
90 | -Dbin=${bindir}/perl-native \ | 90 | -Dbin=${bindir}/perl-native \ |
91 | -Duseshrplib \ | 91 | -Duseshrplib \ |
@@ -95,7 +95,7 @@ do_configure_class-native() { | |||
95 | ${PACKAGECONFIG_CONFARGS} | 95 | ${PACKAGECONFIG_CONFARGS} |
96 | } | 96 | } |
97 | 97 | ||
98 | do_configure_append() { | 98 | do_configure:append() { |
99 | if [ -n "$SOURCE_DATE_EPOCH" ]; then | 99 | if [ -n "$SOURCE_DATE_EPOCH" ]; then |
100 | PERL_BUILD_DATE="$(${PYTHON} -c "\ | 100 | PERL_BUILD_DATE="$(${PYTHON} -c "\ |
101 | from datetime import datetime, timezone; \ | 101 | from datetime import datetime, timezone; \ |
@@ -140,7 +140,7 @@ do_install() { | |||
140 | fi | 140 | fi |
141 | } | 141 | } |
142 | 142 | ||
143 | do_install_append_class-target() { | 143 | do_install:append:class-target() { |
144 | # This is used to substitute target configuration when running native perl via perl-configpm-switch.patch | 144 | # This is used to substitute target configuration when running native perl via perl-configpm-switch.patch |
145 | ln -s Config_heavy.pl ${D}${libdir}/perl5/${PV}/${TARGET_ARCH}-linux/Config_heavy-target.pl | 145 | ln -s Config_heavy.pl ${D}${libdir}/perl5/${PV}/${TARGET_ARCH}-linux/Config_heavy-target.pl |
146 | 146 | ||
@@ -149,7 +149,7 @@ do_install_append_class-target() { | |||
149 | rm ${D}${libdir}/perl5/${PV}/${TARGET_ARCH}-linux/CORE/xconfig.h | 149 | rm ${D}${libdir}/perl5/${PV}/${TARGET_ARCH}-linux/CORE/xconfig.h |
150 | } | 150 | } |
151 | 151 | ||
152 | do_install_append_class-nativesdk() { | 152 | do_install:append:class-nativesdk() { |
153 | # This is used to substitute target configuration when running native perl via perl-configpm-switch.patch | 153 | # This is used to substitute target configuration when running native perl via perl-configpm-switch.patch |
154 | ln -s Config_heavy.pl ${D}${libdir}/perl5/${PV}/${TARGET_ARCH}-linux/Config_heavy-target.pl | 154 | ln -s Config_heavy.pl ${D}${libdir}/perl5/${PV}/${TARGET_ARCH}-linux/Config_heavy-target.pl |
155 | 155 | ||
@@ -157,7 +157,7 @@ do_install_append_class-nativesdk() { | |||
157 | PERL5LIB='$PERL5LIB:${SDKPATHNATIVE}/${libdir_nativesdk}/perl5/site_perl/${PV}:${SDKPATHNATIVE}/${libdir_nativesdk}/perl5/vendor_perl/${PV}:${SDKPATHNATIVE}/${libdir_nativesdk}/perl5/${PV}' | 157 | PERL5LIB='$PERL5LIB:${SDKPATHNATIVE}/${libdir_nativesdk}/perl5/site_perl/${PV}:${SDKPATHNATIVE}/${libdir_nativesdk}/perl5/vendor_perl/${PV}:${SDKPATHNATIVE}/${libdir_nativesdk}/perl5/${PV}' |
158 | } | 158 | } |
159 | 159 | ||
160 | do_install_append_class-native () { | 160 | do_install:append:class-native () { |
161 | # Those wrappers mean that perl installed from sstate (which may change | 161 | # Those wrappers mean that perl installed from sstate (which may change |
162 | # path location) works and that in the nativesdk case, the SDK can be | 162 | # path location) works and that in the nativesdk case, the SDK can be |
163 | # installed to a different location from the one it was built for. | 163 | # installed to a different location from the one it was built for. |
@@ -208,7 +208,7 @@ inherit update-alternatives | |||
208 | 208 | ||
209 | ALTERNATIVE_PRIORITY = "100" | 209 | ALTERNATIVE_PRIORITY = "100" |
210 | 210 | ||
211 | ALTERNATIVE_${PN}-misc = "corelist cpan enc2xs encguess h2ph h2xs instmodsh json_pp libnetcfg \ | 211 | ALTERNATIVE:${PN}-misc = "corelist cpan enc2xs encguess h2ph h2xs instmodsh json_pp libnetcfg \ |
212 | piconv pl2pm pod2html pod2man pod2text pod2usage podchecker \ | 212 | piconv pl2pm pod2html pod2man pod2text pod2usage podchecker \ |
213 | prove ptar ptardiff ptargrep shasum splain xsubpp zipdetails" | 213 | prove ptar ptardiff ptargrep shasum splain xsubpp zipdetails" |
214 | ALTERNATIVE_LINK_NAME[corelist] = "${bindir}/corelist" | 214 | ALTERNATIVE_LINK_NAME[corelist] = "${bindir}/corelist" |
@@ -238,7 +238,7 @@ ALTERNATIVE_LINK_NAME[zipdetails] = "${bindir}/zipdetails" | |||
238 | 238 | ||
239 | require perl-ptest.inc | 239 | require perl-ptest.inc |
240 | 240 | ||
241 | FILES_${PN} = "${bindir}/perl ${bindir}/perl.real ${bindir}/perl${PV} ${libdir}/libperl.so* \ | 241 | FILES:${PN} = "${bindir}/perl ${bindir}/perl.real ${bindir}/perl${PV} ${libdir}/libperl.so* \ |
242 | ${libdir}/perl5/site_perl \ | 242 | ${libdir}/perl5/site_perl \ |
243 | ${libdir}/perl5/${PV}/Config.pm \ | 243 | ${libdir}/perl5/${PV}/Config.pm \ |
244 | ${libdir}/perl5/${PV}/${TARGET_ARCH}-linux/Config.pm \ | 244 | ${libdir}/perl5/${PV}/${TARGET_ARCH}-linux/Config.pm \ |
@@ -254,24 +254,24 @@ FILES_${PN} = "${bindir}/perl ${bindir}/perl.real ${bindir}/perl${PV} ${libdir}/ | |||
254 | ${libdir}/perl5/${PV}/ExtUtils/xsubpp \ | 254 | ${libdir}/perl5/${PV}/ExtUtils/xsubpp \ |
255 | ${libdir}/perl5/${PV}/ExtUtils/typemap \ | 255 | ${libdir}/perl5/${PV}/ExtUtils/typemap \ |
256 | " | 256 | " |
257 | RPROVIDES_${PN} += "perl-module-strict perl-module-vars perl-module-config perl-module-warnings \ | 257 | RPROVIDES:${PN} += "perl-module-strict perl-module-vars perl-module-config perl-module-warnings \ |
258 | perl-module-warnings-register" | 258 | perl-module-warnings-register" |
259 | 259 | ||
260 | FILES_${PN}-staticdev_append = " ${libdir}/perl5/${PV}/*/CORE/libperl.a" | 260 | FILES:${PN}-staticdev:append = " ${libdir}/perl5/${PV}/*/CORE/libperl.a" |
261 | 261 | ||
262 | FILES_${PN}-dev_append = " ${libdir}/perl5/${PV}/*/CORE" | 262 | FILES:${PN}-dev:append = " ${libdir}/perl5/${PV}/*/CORE" |
263 | 263 | ||
264 | FILES_${PN}-doc_append = " ${libdir}/perl5/${PV}/Unicode/Collate/*.txt \ | 264 | FILES:${PN}-doc:append = " ${libdir}/perl5/${PV}/Unicode/Collate/*.txt \ |
265 | ${libdir}/perl5/${PV}/*/.packlist \ | 265 | ${libdir}/perl5/${PV}/*/.packlist \ |
266 | ${libdir}/perl5/${PV}/Encode/encode.h \ | 266 | ${libdir}/perl5/${PV}/Encode/encode.h \ |
267 | " | 267 | " |
268 | PACKAGES += "${PN}-misc" | 268 | PACKAGES += "${PN}-misc" |
269 | 269 | ||
270 | FILES_${PN}-misc = "${bindir}/*" | 270 | FILES:${PN}-misc = "${bindir}/*" |
271 | 271 | ||
272 | PACKAGES += "${PN}-pod" | 272 | PACKAGES += "${PN}-pod" |
273 | 273 | ||
274 | FILES_${PN}-pod = "${libdir}/perl5/${PV}/pod \ | 274 | FILES:${PN}-pod = "${libdir}/perl5/${PV}/pod \ |
275 | ${libdir}/perl5/${PV}/*.pod \ | 275 | ${libdir}/perl5/${PV}/*.pod \ |
276 | ${libdir}/perl5/${PV}/*/*.pod \ | 276 | ${libdir}/perl5/${PV}/*/*.pod \ |
277 | ${libdir}/perl5/${PV}/*/*/*.pod \ | 277 | ${libdir}/perl5/${PV}/*/*/*.pod \ |
@@ -280,20 +280,20 @@ FILES_${PN}-pod = "${libdir}/perl5/${PV}/pod \ | |||
280 | 280 | ||
281 | PACKAGES += "${PN}-module-cpan ${PN}-module-unicore" | 281 | PACKAGES += "${PN}-module-cpan ${PN}-module-unicore" |
282 | 282 | ||
283 | FILES_${PN}-module-cpan += "${libdir}/perl5/${PV}/CPAN \ | 283 | FILES:${PN}-module-cpan += "${libdir}/perl5/${PV}/CPAN \ |
284 | " | 284 | " |
285 | FILES_${PN}-module-unicore += "${libdir}/perl5/${PV}/unicore" | 285 | FILES:${PN}-module-unicore += "${libdir}/perl5/${PV}/unicore" |
286 | 286 | ||
287 | ALTERNATIVE_PRIORITY = "40" | 287 | ALTERNATIVE_PRIORITY = "40" |
288 | ALTERNATIVE_${PN}-doc = "Thread.3" | 288 | ALTERNATIVE:${PN}-doc = "Thread.3" |
289 | ALTERNATIVE_LINK_NAME[Thread.3] = "${mandir}/man3/Thread.3" | 289 | ALTERNATIVE_LINK_NAME[Thread.3] = "${mandir}/man3/Thread.3" |
290 | 290 | ||
291 | # Create a perl-modules package recommending all the other perl | 291 | # Create a perl-modules package recommending all the other perl |
292 | # packages (actually the non modules packages and not created too) | 292 | # packages (actually the non modules packages and not created too) |
293 | ALLOW_EMPTY_${PN}-modules = "1" | 293 | ALLOW_EMPTY:${PN}-modules = "1" |
294 | PACKAGES += "${PN}-modules " | 294 | PACKAGES += "${PN}-modules " |
295 | 295 | ||
296 | PACKAGESPLITFUNCS_prepend = "split_perl_packages " | 296 | PACKAGESPLITFUNCS:prepend = "split_perl_packages " |
297 | 297 | ||
298 | python split_perl_packages () { | 298 | python split_perl_packages () { |
299 | libdir = d.expand('${libdir}/perl5/${PV}') | 299 | libdir = d.expand('${libdir}/perl5/${PV}') |
@@ -308,7 +308,7 @@ python split_perl_packages () { | |||
308 | # modules. Don't attempt to use the result of do_split_packages() as some | 308 | # modules. Don't attempt to use the result of do_split_packages() as some |
309 | # modules are manually split (eg. perl-module-unicore). | 309 | # modules are manually split (eg. perl-module-unicore). |
310 | packages = filter(lambda p: 'perl-module-' in p, d.getVar('PACKAGES').split()) | 310 | packages = filter(lambda p: 'perl-module-' in p, d.getVar('PACKAGES').split()) |
311 | d.setVar(d.expand("RRECOMMENDS_${PN}-modules"), ' '.join(packages)) | 311 | d.setVar(d.expand("RRECOMMENDS:${PN}-modules"), ' '.join(packages)) |
312 | 312 | ||
313 | # Read the pre-generated dependency file, and use it to set module dependecies | 313 | # Read the pre-generated dependency file, and use it to set module dependecies |
314 | for line in open(d.expand("${WORKDIR}") + '/perl-rdepends.txt').readlines(): | 314 | for line in open(d.expand("${WORKDIR}") + '/perl-rdepends.txt').readlines(): |
@@ -320,7 +320,7 @@ python split_perl_packages () { | |||
320 | module = splitline[0] + '-native' | 320 | module = splitline[0] + '-native' |
321 | depends = "perl-native" | 321 | depends = "perl-native" |
322 | else: | 322 | else: |
323 | module = splitline[0].replace("RDEPENDS_perl", "RDEPENDS_${PN}") | 323 | module = splitline[0].replace("RDEPENDS:perl", "RDEPENDS:${PN}") |
324 | depends = splitline[2].strip('"').replace("perl-module", "${PN}-module") | 324 | depends = splitline[2].strip('"').replace("perl-module", "${PN}-module") |
325 | d.appendVar(d.expand(module), " " + depends) | 325 | d.appendVar(d.expand(module), " " + depends) |
326 | } | 326 | } |
@@ -334,8 +334,8 @@ python() { | |||
334 | d.setVar("PACKAGES_DYNAMIC", "^nativesdk-perl-module-.*") | 334 | d.setVar("PACKAGES_DYNAMIC", "^nativesdk-perl-module-.*") |
335 | } | 335 | } |
336 | 336 | ||
337 | RDEPENDS_${PN}-misc += "perl perl-modules" | 337 | RDEPENDS:${PN}-misc += "perl perl-modules" |
338 | RDEPENDS_${PN}-pod += "perl" | 338 | RDEPENDS:${PN}-pod += "perl" |
339 | 339 | ||
340 | BBCLASSEXTEND = "native nativesdk" | 340 | BBCLASSEXTEND = "native nativesdk" |
341 | 341 | ||
@@ -346,10 +346,10 @@ do_create_rdepends_inc() { | |||
346 | cat <<'EOPREAMBLE' > ${WORKDIR}/perl-rdepends.inc | 346 | cat <<'EOPREAMBLE' > ${WORKDIR}/perl-rdepends.inc |
347 | 347 | ||
348 | # Some additional dependencies that the above doesn't manage to figure out | 348 | # Some additional dependencies that the above doesn't manage to figure out |
349 | RDEPENDS_${PN}-module-file-spec += "${PN}-module-file-spec-unix" | 349 | RDEPENDS:${PN}-module-file-spec += "${PN}-module-file-spec-unix" |
350 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-math-bigint-calc" | 350 | RDEPENDS:${PN}-module-math-bigint += "${PN}-module-math-bigint-calc" |
351 | RDEPENDS_${PN}-module-thread-queue += "${PN}-module-attributes" | 351 | RDEPENDS:${PN}-module-thread-queue += "${PN}-module-attributes" |
352 | RDEPENDS_${PN}-module-overload += "${PN}-module-overloading" | 352 | RDEPENDS:${PN}-module-overload += "${PN}-module-overloading" |
353 | 353 | ||
354 | # Generated depends list beyond this line | 354 | # Generated depends list beyond this line |
355 | EOPREAMBLE | 355 | EOPREAMBLE |
diff --git a/meta/recipes-devtools/pkgconf/pkgconf_1.7.4.bb b/meta/recipes-devtools/pkgconf/pkgconf_1.7.4.bb index 93832105f0..04991b1f01 100644 --- a/meta/recipes-devtools/pkgconf/pkgconf_1.7.4.bb +++ b/meta/recipes-devtools/pkgconf/pkgconf_1.7.4.bb | |||
@@ -7,7 +7,7 @@ HOMEPAGE = "http://pkgconf.org" | |||
7 | BUGTRACKER = "https://github.com/pkgconf/pkgconf/issues" | 7 | BUGTRACKER = "https://github.com/pkgconf/pkgconf/issues" |
8 | SECTION = "devel" | 8 | SECTION = "devel" |
9 | PROVIDES += "pkgconfig" | 9 | PROVIDES += "pkgconfig" |
10 | RPROVIDES_${PN} += "pkgconfig" | 10 | RPROVIDES:${PN} += "pkgconfig" |
11 | 11 | ||
12 | # The pkgconf license seems to be functionally equivalent to BSD-2-Clause or | 12 | # The pkgconf license seems to be functionally equivalent to BSD-2-Clause or |
13 | # ISC, but has different wording, so needs its own name. | 13 | # ISC, but has different wording, so needs its own name. |
@@ -26,13 +26,13 @@ inherit autotools | |||
26 | 26 | ||
27 | EXTRA_OECONF += "--with-pkg-config-dir='${libdir}/pkgconfig:${datadir}/pkgconfig'" | 27 | EXTRA_OECONF += "--with-pkg-config-dir='${libdir}/pkgconfig:${datadir}/pkgconfig'" |
28 | 28 | ||
29 | do_install_append () { | 29 | do_install:append () { |
30 | # Install a wrapper which deals, as much as possible with pkgconf vs | 30 | # Install a wrapper which deals, as much as possible with pkgconf vs |
31 | # pkg-config compatibility issues. | 31 | # pkg-config compatibility issues. |
32 | install -m 0755 "${WORKDIR}/pkg-config-wrapper" "${D}${bindir}/pkg-config" | 32 | install -m 0755 "${WORKDIR}/pkg-config-wrapper" "${D}${bindir}/pkg-config" |
33 | } | 33 | } |
34 | 34 | ||
35 | do_install_append_class-native () { | 35 | do_install:append:class-native () { |
36 | # Install a pkg-config-native wrapper that will use the native sysroot instead | 36 | # Install a pkg-config-native wrapper that will use the native sysroot instead |
37 | # of the MACHINE sysroot, for using pkg-config when building native tools. | 37 | # of the MACHINE sysroot, for using pkg-config when building native tools. |
38 | sed -e "s|@PATH_NATIVE@|${PKG_CONFIG_PATH}|" \ | 38 | sed -e "s|@PATH_NATIVE@|${PKG_CONFIG_PATH}|" \ |
@@ -47,11 +47,11 @@ do_install_append_class-native () { | |||
47 | # When using the RPM generated automatic package dependencies, some packages | 47 | # When using the RPM generated automatic package dependencies, some packages |
48 | # will end up requiring 'pkgconfig(pkg-config)'. Allow this behavior by | 48 | # will end up requiring 'pkgconfig(pkg-config)'. Allow this behavior by |
49 | # specifying an appropriate provide. | 49 | # specifying an appropriate provide. |
50 | RPROVIDES_${PN} += "pkgconfig(pkg-config)" | 50 | RPROVIDES:${PN} += "pkgconfig(pkg-config)" |
51 | 51 | ||
52 | # Include pkg.m4 in the main package, leaving libpkgconf dev files in -dev | 52 | # Include pkg.m4 in the main package, leaving libpkgconf dev files in -dev |
53 | FILES_${PN}-dev_remove = "${datadir}/aclocal" | 53 | FILES:${PN}-dev:remove = "${datadir}/aclocal" |
54 | FILES_${PN} += "${datadir}/aclocal" | 54 | FILES:${PN} += "${datadir}/aclocal" |
55 | 55 | ||
56 | BBCLASSEXTEND += "native nativesdk" | 56 | BBCLASSEXTEND += "native nativesdk" |
57 | 57 | ||
@@ -64,4 +64,4 @@ pkgconf_sstate_fixup_esdk () { | |||
64 | fi | 64 | fi |
65 | } | 65 | } |
66 | 66 | ||
67 | SSTATEPOSTUNPACKFUNCS_append_class-native = " pkgconf_sstate_fixup_esdk" | 67 | SSTATEPOSTUNPACKFUNCS:append:class-native = " pkgconf_sstate_fixup_esdk" |
diff --git a/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb b/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb index 964d85fa38..aa2692b922 100644 --- a/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb +++ b/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb | |||
@@ -30,8 +30,8 @@ inherit autotools | |||
30 | EXTRA_OECONF += "--disable-indirect-deps" | 30 | EXTRA_OECONF += "--disable-indirect-deps" |
31 | 31 | ||
32 | PACKAGECONFIG ??= "glib" | 32 | PACKAGECONFIG ??= "glib" |
33 | PACKAGECONFIG_class-native = "" | 33 | PACKAGECONFIG:class-native = "" |
34 | PACKAGECONFIG_class-nativesdk = "" | 34 | PACKAGECONFIG:class-nativesdk = "" |
35 | 35 | ||
36 | PACKAGECONFIG[glib] = "--without-internal-glib,--with-internal-glib,glib-2.0 pkgconfig-native" | 36 | PACKAGECONFIG[glib] = "--without-internal-glib,--with-internal-glib,glib-2.0 pkgconfig-native" |
37 | 37 | ||
@@ -42,17 +42,17 @@ BBCLASSEXTEND = "native nativesdk" | |||
42 | # Set an empty dev package to ensure the base PN package gets | 42 | # Set an empty dev package to ensure the base PN package gets |
43 | # the pkg.m4 macros, pkgconfig does not deliver any other -dev | 43 | # the pkg.m4 macros, pkgconfig does not deliver any other -dev |
44 | # files. | 44 | # files. |
45 | FILES_${PN}-dev = "" | 45 | FILES:${PN}-dev = "" |
46 | FILES_${PN} += "${datadir}/aclocal/pkg.m4" | 46 | FILES:${PN} += "${datadir}/aclocal/pkg.m4" |
47 | 47 | ||
48 | # When using the RPM generated automatic package dependencies, some packages | 48 | # When using the RPM generated automatic package dependencies, some packages |
49 | # will end up requiring 'pkgconfig(pkg-config)'. Allow this behavior by | 49 | # will end up requiring 'pkgconfig(pkg-config)'. Allow this behavior by |
50 | # specifying an appropriate provide. | 50 | # specifying an appropriate provide. |
51 | RPROVIDES_${PN} += "pkgconfig(pkg-config)" | 51 | RPROVIDES:${PN} += "pkgconfig(pkg-config)" |
52 | 52 | ||
53 | # Install a pkg-config-native wrapper that will use the native sysroot instead | 53 | # Install a pkg-config-native wrapper that will use the native sysroot instead |
54 | # of the MACHINE sysroot, for using pkg-config when building native tools. | 54 | # of the MACHINE sysroot, for using pkg-config when building native tools. |
55 | do_install_append_class-native () { | 55 | do_install:append:class-native () { |
56 | sed -e "s|@PATH_NATIVE@|${PKG_CONFIG_PATH}|" \ | 56 | sed -e "s|@PATH_NATIVE@|${PKG_CONFIG_PATH}|" \ |
57 | -e "s|@LIBDIR_NATIVE@|${PKG_CONFIG_LIBDIR}|" \ | 57 | -e "s|@LIBDIR_NATIVE@|${PKG_CONFIG_LIBDIR}|" \ |
58 | < ${WORKDIR}/pkg-config-native.in > ${B}/pkg-config-native | 58 | < ${WORKDIR}/pkg-config-native.in > ${B}/pkg-config-native |
@@ -72,4 +72,4 @@ pkgconfig_sstate_fixup_esdk () { | |||
72 | fi | 72 | fi |
73 | } | 73 | } |
74 | 74 | ||
75 | SSTATEPOSTUNPACKFUNCS_append_class-native = " pkgconfig_sstate_fixup_esdk" | 75 | SSTATEPOSTUNPACKFUNCS:append:class-native = " pkgconfig_sstate_fixup_esdk" |
diff --git a/meta/recipes-devtools/prelink/prelink_git.bb b/meta/recipes-devtools/prelink/prelink_git.bb index e197af9ee9..78d4c71817 100644 --- a/meta/recipes-devtools/prelink/prelink_git.bb +++ b/meta/recipes-devtools/prelink/prelink_git.bb | |||
@@ -19,11 +19,11 @@ PV = "1.0+git${SRCPV}" | |||
19 | # | 19 | # |
20 | # Default is prelinking is enabled. | 20 | # Default is prelinking is enabled. |
21 | # | 21 | # |
22 | SUMMARY_${PN}-cron = "Cron scripts to control automatic prelinking" | 22 | SUMMARY:${PN}-cron = "Cron scripts to control automatic prelinking" |
23 | DESCRIPTION_${PN}-cron = "Cron scripts to control automatic prelinking. \ | 23 | DESCRIPTION:${PN}-cron = "Cron scripts to control automatic prelinking. \ |
24 | See: ${sysconfdir}/cron.daily/prelink for configuration information." | 24 | See: ${sysconfdir}/cron.daily/prelink for configuration information." |
25 | 25 | ||
26 | FILES_${PN}-cron = "${sysconfdir}/cron.daily ${sysconfdir}/default" | 26 | FILES:${PN}-cron = "${sysconfdir}/cron.daily ${sysconfdir}/default" |
27 | 27 | ||
28 | PACKAGES =+ "${PN}-cron" | 28 | PACKAGES =+ "${PN}-cron" |
29 | 29 | ||
@@ -37,10 +37,10 @@ SRC_URI = "git://git.yoctoproject.org/prelink-cross.git;branch=cross_prelink_sta | |||
37 | UPSTREAM_CHECK_COMMITS = "1" | 37 | UPSTREAM_CHECK_COMMITS = "1" |
38 | 38 | ||
39 | # error: error.h: No such file or directory | 39 | # error: error.h: No such file or directory |
40 | COMPATIBLE_HOST_libc-musl = 'null' | 40 | COMPATIBLE_HOST:libc-musl = 'null' |
41 | 41 | ||
42 | TARGET_OS_ORIG := "${TARGET_OS}" | 42 | TARGET_OS_ORIG := "${TARGET_OS}" |
43 | OVERRIDES_append = ":${TARGET_OS_ORIG}" | 43 | OVERRIDES:append = ":${TARGET_OS_ORIG}" |
44 | 44 | ||
45 | S = "${WORKDIR}/git" | 45 | S = "${WORKDIR}/git" |
46 | 46 | ||
@@ -144,12 +144,12 @@ python () { | |||
144 | bb.build.addtask('do_linkerpaths', 'do_configure', 'do_patch', d) | 144 | bb.build.addtask('do_linkerpaths', 'do_configure', 'do_patch', d) |
145 | } | 145 | } |
146 | 146 | ||
147 | do_configure_prepend () { | 147 | do_configure:prepend () { |
148 | # Disable documentation! | 148 | # Disable documentation! |
149 | echo "all:" > ${S}/doc/Makefile.am | 149 | echo "all:" > ${S}/doc/Makefile.am |
150 | } | 150 | } |
151 | 151 | ||
152 | do_install_append () { | 152 | do_install:append () { |
153 | install -d ${D}${sysconfdir}/cron.daily ${D}${sysconfdir}/default ${D}${sysconfdir}/rpm | 153 | install -d ${D}${sysconfdir}/cron.daily ${D}${sysconfdir}/default ${D}${sysconfdir}/rpm |
154 | install -m 0644 ${WORKDIR}/prelink.conf ${D}${sysconfdir}/prelink.conf | 154 | install -m 0644 ${WORKDIR}/prelink.conf ${D}${sysconfdir}/prelink.conf |
155 | install -m 0644 ${WORKDIR}/prelink.cron.daily ${D}${sysconfdir}/cron.daily/prelink | 155 | install -m 0644 ${WORKDIR}/prelink.cron.daily ${D}${sysconfdir}/cron.daily/prelink |
@@ -161,7 +161,7 @@ do_install_append () { | |||
161 | # Prelinking during a cross install should be handled by the image-prelink | 161 | # Prelinking during a cross install should be handled by the image-prelink |
162 | # bbclass. If the user desires this to run on the target at first boot | 162 | # bbclass. If the user desires this to run on the target at first boot |
163 | # they will need to create a custom boot script. | 163 | # they will need to create a custom boot script. |
164 | pkg_postinst_prelink() { | 164 | pkg_postinst:prelink() { |
165 | #!/bin/sh | 165 | #!/bin/sh |
166 | 166 | ||
167 | if [ "x$D" != "x" ]; then | 167 | if [ "x$D" != "x" ]; then |
@@ -171,7 +171,7 @@ fi | |||
171 | prelink -a | 171 | prelink -a |
172 | } | 172 | } |
173 | 173 | ||
174 | pkg_prerm_prelink() { | 174 | pkg_prerm:prelink() { |
175 | #!/bin/sh | 175 | #!/bin/sh |
176 | 176 | ||
177 | if [ "x$D" != "x" ]; then | 177 | if [ "x$D" != "x" ]; then |
diff --git a/meta/recipes-devtools/pseudo/pseudo.inc b/meta/recipes-devtools/pseudo/pseudo.inc index e6512bc6e6..7ba414ca25 100644 --- a/meta/recipes-devtools/pseudo/pseudo.inc +++ b/meta/recipes-devtools/pseudo/pseudo.inc | |||
@@ -10,14 +10,14 @@ SECTION = "base" | |||
10 | LICENSE = "LGPL2.1" | 10 | LICENSE = "LGPL2.1" |
11 | DEPENDS = "sqlite3 attr" | 11 | DEPENDS = "sqlite3 attr" |
12 | 12 | ||
13 | FILES_${PN} = "${prefix}/lib/pseudo/lib*/libpseudo.so ${bindir}/* ${localstatedir}/pseudo ${prefix}/var/pseudo" | 13 | FILES:${PN} = "${prefix}/lib/pseudo/lib*/libpseudo.so ${bindir}/* ${localstatedir}/pseudo ${prefix}/var/pseudo" |
14 | INSANE_SKIP_${PN} += "libdir" | 14 | INSANE_SKIP:${PN} += "libdir" |
15 | INSANE_SKIP_${PN}-dbg += "libdir" | 15 | INSANE_SKIP:${PN}-dbg += "libdir" |
16 | 16 | ||
17 | PROVIDES += "virtual/fakeroot" | 17 | PROVIDES += "virtual/fakeroot" |
18 | 18 | ||
19 | MAKEOPTS = "" | 19 | MAKEOPTS = "" |
20 | MAKEOPTS_class-native = "'RPATH=-Wl,--rpath=XORIGIN/../../../sqlite3-native/usr/lib/'" | 20 | MAKEOPTS:class-native = "'RPATH=-Wl,--rpath=XORIGIN/../../../sqlite3-native/usr/lib/'" |
21 | 21 | ||
22 | inherit siteinfo pkgconfig | 22 | inherit siteinfo pkgconfig |
23 | 23 | ||
@@ -26,7 +26,7 @@ do_configure () { | |||
26 | } | 26 | } |
27 | 27 | ||
28 | NO32LIBS ??= "1" | 28 | NO32LIBS ??= "1" |
29 | NO32LIBS_class-nativesdk = "1" | 29 | NO32LIBS:class-nativesdk = "1" |
30 | 30 | ||
31 | PSEUDO_EXTRA_OPTS ?= "--enable-force-async --without-passwd-fallback --enable-epoll --enable-xattr" | 31 | PSEUDO_EXTRA_OPTS ?= "--enable-force-async --without-passwd-fallback --enable-epoll --enable-xattr" |
32 | 32 | ||
@@ -79,7 +79,7 @@ warn_32bit_missing() { | |||
79 | # Two below are the same | 79 | # Two below are the same |
80 | # If necessary compile for the alternative machine arch. This is only | 80 | # If necessary compile for the alternative machine arch. This is only |
81 | # necessary in a native build. | 81 | # necessary in a native build. |
82 | do_compile_prepend_class-native () { | 82 | do_compile:prepend:class-native () { |
83 | maybe_make32 | 83 | maybe_make32 |
84 | if $make32; then | 84 | if $make32; then |
85 | # We need the 32-bit libpseudo on a 64-bit machine... | 85 | # We need the 32-bit libpseudo on a 64-bit machine... |
@@ -100,7 +100,7 @@ do_compile_prepend_class-native () { | |||
100 | fi | 100 | fi |
101 | } | 101 | } |
102 | 102 | ||
103 | do_compile_prepend_class-nativesdk () { | 103 | do_compile:prepend:class-nativesdk () { |
104 | maybe_make32 | 104 | maybe_make32 |
105 | if $make32; then | 105 | if $make32; then |
106 | # We need the 32-bit libpseudo on a 64-bit machine. | 106 | # We need the 32-bit libpseudo on a 64-bit machine. |
@@ -112,7 +112,7 @@ do_compile_prepend_class-nativesdk () { | |||
112 | fi | 112 | fi |
113 | } | 113 | } |
114 | 114 | ||
115 | do_compile_append_class-native () { | 115 | do_compile:append:class-native () { |
116 | if [ '${@bb.data.inherits_class('uninative', d)}' = 'True' ]; then | 116 | if [ '${@bb.data.inherits_class('uninative', d)}' = 'True' ]; then |
117 | for i in PSEUDO_PORT_UNIX_SYNCFS PSEUDO_PORT_UIDS_GENERIC PSEUDO_PORT_LINUX_NEWCLONE PSEUDO_PORT_LINUX_XATTR PSEUDO_PORT_LINUX_STATVFS; do | 117 | for i in PSEUDO_PORT_UNIX_SYNCFS PSEUDO_PORT_UIDS_GENERIC PSEUDO_PORT_LINUX_NEWCLONE PSEUDO_PORT_LINUX_XATTR PSEUDO_PORT_LINUX_STATVFS; do |
118 | grep $i.1 ${S}/pseudo_ports.h | 118 | grep $i.1 ${S}/pseudo_ports.h |
@@ -129,7 +129,7 @@ do_install () { | |||
129 | oe_runmake 'DESTDIR=${D}' ${MAKEOPTS} 'LIB=lib/pseudo/lib$(MARK64)' install | 129 | oe_runmake 'DESTDIR=${D}' ${MAKEOPTS} 'LIB=lib/pseudo/lib$(MARK64)' install |
130 | } | 130 | } |
131 | 131 | ||
132 | do_install_append_class-native () { | 132 | do_install:append:class-native () { |
133 | chrpath ${D}${bindir}/pseudo -r `chrpath ${D}${bindir}/pseudo | cut -d = -f 2 | sed s/XORIGIN/\\$ORIGIN/` | 133 | chrpath ${D}${bindir}/pseudo -r `chrpath ${D}${bindir}/pseudo | cut -d = -f 2 | sed s/XORIGIN/\\$ORIGIN/` |
134 | install -d ${D}${sysconfdir} | 134 | install -d ${D}${sysconfdir} |
135 | # The fallback files should never be modified | 135 | # The fallback files should never be modified |
@@ -146,7 +146,7 @@ do_install_append_class-native () { | |||
146 | fi | 146 | fi |
147 | } | 147 | } |
148 | 148 | ||
149 | do_install_append_class-nativesdk () { | 149 | do_install:append:class-nativesdk () { |
150 | maybe_make32 | 150 | maybe_make32 |
151 | if $make32; then | 151 | if $make32; then |
152 | mkdir -p ${D}${prefix}/lib/pseudo/lib | 152 | mkdir -p ${D}${prefix}/lib/pseudo/lib |
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb index 0ba460f3e6..dacaef1a66 100644 --- a/meta/recipes-devtools/pseudo/pseudo_git.bb +++ b/meta/recipes-devtools/pseudo/pseudo_git.bb | |||
@@ -11,4 +11,4 @@ S = "${WORKDIR}/git" | |||
11 | PV = "1.9.0+git${SRCPV}" | 11 | PV = "1.9.0+git${SRCPV}" |
12 | 12 | ||
13 | # error: use of undeclared identifier '_STAT_VER' | 13 | # error: use of undeclared identifier '_STAT_VER' |
14 | COMPATIBLE_HOST_libc-musl = 'null' | 14 | COMPATIBLE_HOST:libc-musl = 'null' |
diff --git a/meta/recipes-devtools/python-numpy/python3-numpy_1.21.0.bb b/meta/recipes-devtools/python-numpy/python3-numpy_1.21.0.bb index 7ad2f061bf..a4d222c3aa 100644 --- a/meta/recipes-devtools/python-numpy/python3-numpy_1.21.0.bb +++ b/meta/recipes-devtools/python-numpy/python3-numpy_1.21.0.bb | |||
@@ -25,10 +25,10 @@ S = "${WORKDIR}/numpy-${PV}" | |||
25 | 25 | ||
26 | CLEANBROKEN = "1" | 26 | CLEANBROKEN = "1" |
27 | 27 | ||
28 | FILES_${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/core/lib/*.a ${PYTHON_SITEPACKAGES_DIR}/numpy/random/lib/*.a" | 28 | FILES:${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/core/lib/*.a ${PYTHON_SITEPACKAGES_DIR}/numpy/random/lib/*.a" |
29 | 29 | ||
30 | # install what is needed for numpy.test() | 30 | # install what is needed for numpy.test() |
31 | RDEPENDS_${PN} = "${PYTHON_PN}-unittest \ | 31 | RDEPENDS:${PN} = "${PYTHON_PN}-unittest \ |
32 | ${PYTHON_PN}-difflib \ | 32 | ${PYTHON_PN}-difflib \ |
33 | ${PYTHON_PN}-pprint \ | 33 | ${PYTHON_PN}-pprint \ |
34 | ${PYTHON_PN}-pickle \ | 34 | ${PYTHON_PN}-pickle \ |
@@ -48,7 +48,7 @@ RDEPENDS_${PN} = "${PYTHON_PN}-unittest \ | |||
48 | ${PYTHON_PN}-threading \ | 48 | ${PYTHON_PN}-threading \ |
49 | ${PYTHON_PN}-multiprocessing \ | 49 | ${PYTHON_PN}-multiprocessing \ |
50 | " | 50 | " |
51 | RDEPENDS_${PN}-ptest += "${PYTHON_PN}-pytest \ | 51 | RDEPENDS:${PN}-ptest += "${PYTHON_PN}-pytest \ |
52 | ${PYTHON_PN}-hypothesis \ | 52 | ${PYTHON_PN}-hypothesis \ |
53 | ${PYTHON_PN}-sortedcontainers \ | 53 | ${PYTHON_PN}-sortedcontainers \ |
54 | ${PYTHON_PN}-resource \ | 54 | ${PYTHON_PN}-resource \ |
diff --git a/meta/recipes-devtools/python/python-async.inc b/meta/recipes-devtools/python/python-async.inc index af887dc4e5..fde864601c 100644 --- a/meta/recipes-devtools/python/python-async.inc +++ b/meta/recipes-devtools/python/python-async.inc | |||
@@ -9,6 +9,6 @@ inherit pypi | |||
9 | SRC_URI[md5sum] = "9b06b5997de2154f3bc0273f80bcef6b" | 9 | SRC_URI[md5sum] = "9b06b5997de2154f3bc0273f80bcef6b" |
10 | SRC_URI[sha256sum] = "ac6894d876e45878faae493b0cf61d0e28ec417334448ac0a6ea2229d8343051" | 10 | SRC_URI[sha256sum] = "ac6894d876e45878faae493b0cf61d0e28ec417334448ac0a6ea2229d8343051" |
11 | 11 | ||
12 | RDEPENDS_${PN} += "${PYTHON_PN}-threading" | 12 | RDEPENDS:${PN} += "${PYTHON_PN}-threading" |
13 | 13 | ||
14 | BBCLASSEXTEND = "native nativesdk" | 14 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/python/python-cython.inc b/meta/recipes-devtools/python/python-cython.inc index 04fd2ec2b7..e3f14fc49b 100644 --- a/meta/recipes-devtools/python/python-cython.inc +++ b/meta/recipes-devtools/python/python-cython.inc | |||
@@ -14,7 +14,7 @@ UPSTREAM_CHECK_REGEX = "Cython-(?P<pver>.*)\.tar" | |||
14 | 14 | ||
15 | inherit pypi | 15 | inherit pypi |
16 | 16 | ||
17 | RDEPENDS_${PN}_class-target += "\ | 17 | RDEPENDS:${PN}:class-target += "\ |
18 | ${PYTHON_PN}-misc \ | 18 | ${PYTHON_PN}-misc \ |
19 | ${PYTHON_PN}-netserver \ | 19 | ${PYTHON_PN}-netserver \ |
20 | ${PYTHON_PN}-pkgutil \ | 20 | ${PYTHON_PN}-pkgutil \ |
@@ -24,7 +24,7 @@ RDEPENDS_${PN}_class-target += "\ | |||
24 | ${PYTHON_PN}-xml \ | 24 | ${PYTHON_PN}-xml \ |
25 | " | 25 | " |
26 | 26 | ||
27 | RDEPENDS_${PN}_class-nativesdk += "\ | 27 | RDEPENDS:${PN}:class-nativesdk += "\ |
28 | nativesdk-${PYTHON_PN}-misc \ | 28 | nativesdk-${PYTHON_PN}-misc \ |
29 | nativesdk-${PYTHON_PN}-netserver \ | 29 | nativesdk-${PYTHON_PN}-netserver \ |
30 | nativesdk-${PYTHON_PN}-pkgutil \ | 30 | nativesdk-${PYTHON_PN}-pkgutil \ |
@@ -34,7 +34,7 @@ RDEPENDS_${PN}_class-nativesdk += "\ | |||
34 | nativesdk-${PYTHON_PN}-xml \ | 34 | nativesdk-${PYTHON_PN}-xml \ |
35 | " | 35 | " |
36 | 36 | ||
37 | do_install_append() { | 37 | do_install:append() { |
38 | # Make sure we use /usr/bin/env python | 38 | # Make sure we use /usr/bin/env python |
39 | for PYTHSCRIPT in `grep -rIl '^#!.*python' ${D}`; do | 39 | for PYTHSCRIPT in `grep -rIl '^#!.*python' ${D}`; do |
40 | sed -i -e '1s|^#!.*|#!/usr/bin/env ${PYTHON_PN}|' $PYTHSCRIPT | 40 | sed -i -e '1s|^#!.*|#!/usr/bin/env ${PYTHON_PN}|' $PYTHSCRIPT |
diff --git a/meta/recipes-devtools/python/python-gitdb.inc b/meta/recipes-devtools/python/python-gitdb.inc index 53d925a495..5b24a1f4a3 100644 --- a/meta/recipes-devtools/python/python-gitdb.inc +++ b/meta/recipes-devtools/python/python-gitdb.inc | |||
@@ -12,7 +12,7 @@ SRC_URI[sha256sum] = "96bf5c08b157a666fec41129e6d327235284cca4c81e92109260f353ba | |||
12 | 12 | ||
13 | DEPENDS = "${PYTHON_PN}-async ${PYTHON_PN}-setuptools-native ${PYTHON_PN}-smmap" | 13 | DEPENDS = "${PYTHON_PN}-async ${PYTHON_PN}-setuptools-native ${PYTHON_PN}-smmap" |
14 | 14 | ||
15 | RDEPENDS_${PN} += "${PYTHON_PN}-async \ | 15 | RDEPENDS:${PN} += "${PYTHON_PN}-async \ |
16 | ${PYTHON_PN}-compression \ | 16 | ${PYTHON_PN}-compression \ |
17 | ${PYTHON_PN}-crypt \ | 17 | ${PYTHON_PN}-crypt \ |
18 | ${PYTHON_PN}-io \ | 18 | ${PYTHON_PN}-io \ |
diff --git a/meta/recipes-devtools/python/python-nose.inc b/meta/recipes-devtools/python/python-nose.inc index ccec68a0e1..dfae202299 100644 --- a/meta/recipes-devtools/python/python-nose.inc +++ b/meta/recipes-devtools/python/python-nose.inc | |||
@@ -11,7 +11,7 @@ SRC_URI[sha256sum] = "f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6 | |||
11 | 11 | ||
12 | inherit pypi | 12 | inherit pypi |
13 | 13 | ||
14 | RDEPENDS_${PN} = "\ | 14 | RDEPENDS:${PN} = "\ |
15 | ${PYTHON_PN}-unittest \ | 15 | ${PYTHON_PN}-unittest \ |
16 | " | 16 | " |
17 | 17 | ||
diff --git a/meta/recipes-devtools/python/python-pbr.inc b/meta/recipes-devtools/python/python-pbr.inc index bc470e7274..59fbc6dce4 100644 --- a/meta/recipes-devtools/python/python-pbr.inc +++ b/meta/recipes-devtools/python/python-pbr.inc | |||
@@ -9,6 +9,6 @@ SRC_URI += "file://0001-change-shebang-to-python3.patch" | |||
9 | 9 | ||
10 | inherit pypi | 10 | inherit pypi |
11 | 11 | ||
12 | RDEPENDS_${PN} += "${PYTHON_PN}-pip" | 12 | RDEPENDS:${PN} += "${PYTHON_PN}-pip" |
13 | 13 | ||
14 | BBCLASSEXTEND = "native nativesdk" | 14 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/python/python-pycryptodome.inc b/meta/recipes-devtools/python/python-pycryptodome.inc index 48481bcf9a..3f4c6e9fca 100644 --- a/meta/recipes-devtools/python/python-pycryptodome.inc +++ b/meta/recipes-devtools/python/python-pycryptodome.inc | |||
@@ -7,18 +7,18 @@ LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=accfa6aeaceb3ba96676edf18e78302c" | |||
7 | 7 | ||
8 | inherit pypi | 8 | inherit pypi |
9 | 9 | ||
10 | RDEPENDS_${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-io \ | 11 | ${PYTHON_PN}-io \ |
12 | ${PYTHON_PN}-math \ | 12 | ${PYTHON_PN}-math \ |
13 | " | 13 | " |
14 | 14 | ||
15 | RDEPENDS_${PN}-tests += " \ | 15 | RDEPENDS:${PN}-tests += " \ |
16 | ${PYTHON_PN}-unittest \ | 16 | ${PYTHON_PN}-unittest \ |
17 | " | 17 | " |
18 | 18 | ||
19 | PACKAGES =+ "${PN}-tests" | 19 | PACKAGES =+ "${PN}-tests" |
20 | 20 | ||
21 | FILES_${PN}-tests = " \ | 21 | FILES:${PN}-tests = " \ |
22 | ${PYTHON_SITEPACKAGES_DIR}/Crypto/SelfTest/ \ | 22 | ${PYTHON_SITEPACKAGES_DIR}/Crypto/SelfTest/ \ |
23 | ${PYTHON_SITEPACKAGES_DIR}/Crypto/SelfTest/__pycache__/ \ | 23 | ${PYTHON_SITEPACKAGES_DIR}/Crypto/SelfTest/__pycache__/ \ |
24 | " | 24 | " |
diff --git a/meta/recipes-devtools/python/python-pyparsing.inc b/meta/recipes-devtools/python/python-pyparsing.inc index 348b324bf5..330bf7e39a 100644 --- a/meta/recipes-devtools/python/python-pyparsing.inc +++ b/meta/recipes-devtools/python/python-pyparsing.inc | |||
@@ -9,7 +9,7 @@ UPSTREAM_CHECK_REGEX = "pyparsing-(?P<pver>.*)\.tar" | |||
9 | 9 | ||
10 | inherit pypi | 10 | inherit pypi |
11 | 11 | ||
12 | RDEPENDS_${PN} += " \ | 12 | RDEPENDS:${PN} += " \ |
13 | ${PYTHON_PN}-datetime \ | 13 | ${PYTHON_PN}-datetime \ |
14 | ${PYTHON_PN}-debugger \ | 14 | ${PYTHON_PN}-debugger \ |
15 | ${PYTHON_PN}-json \ | 15 | ${PYTHON_PN}-json \ |
diff --git a/meta/recipes-devtools/python/python-six.inc b/meta/recipes-devtools/python/python-six.inc index df97f845bc..aac6765149 100644 --- a/meta/recipes-devtools/python/python-six.inc +++ b/meta/recipes-devtools/python/python-six.inc | |||
@@ -6,6 +6,6 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=43cfc9e4ac0e377acfb9b76f56b8415d" | |||
6 | 6 | ||
7 | inherit pypi | 7 | inherit pypi |
8 | 8 | ||
9 | RDEPENDS_${PN} = "${PYTHON_PN}-io" | 9 | RDEPENDS:${PN} = "${PYTHON_PN}-io" |
10 | 10 | ||
11 | BBCLASSEXTEND = "native nativesdk" | 11 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/python/python-smmap.inc b/meta/recipes-devtools/python/python-smmap.inc index 2a2ac76f2e..7d0cff5fa6 100644 --- a/meta/recipes-devtools/python/python-smmap.inc +++ b/meta/recipes-devtools/python/python-smmap.inc | |||
@@ -13,7 +13,7 @@ PYPI_PACKAGE = "smmap" | |||
13 | 13 | ||
14 | SRC_URI[sha256sum] = "7e65386bd122d45405ddf795637b7f7d2b532e7e401d46bbe3fb49b9986d5182" | 14 | SRC_URI[sha256sum] = "7e65386bd122d45405ddf795637b7f7d2b532e7e401d46bbe3fb49b9986d5182" |
15 | 15 | ||
16 | RDEPENDS_${PN} += "${PYTHON_PN}-codecs \ | 16 | RDEPENDS:${PN} += "${PYTHON_PN}-codecs \ |
17 | ${PYTHON_PN}-mmap \ | 17 | ${PYTHON_PN}-mmap \ |
18 | " | 18 | " |
19 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/python/python-testtools.inc b/meta/recipes-devtools/python/python-testtools.inc index de463fc2c3..ef5e15cc3a 100644 --- a/meta/recipes-devtools/python/python-testtools.inc +++ b/meta/recipes-devtools/python/python-testtools.inc | |||
@@ -17,7 +17,7 @@ DEPENDS += " \ | |||
17 | ${PYTHON_PN}-pbr-native \ | 17 | ${PYTHON_PN}-pbr-native \ |
18 | " | 18 | " |
19 | 19 | ||
20 | RDEPENDS_${PN} += "\ | 20 | RDEPENDS:${PN} += "\ |
21 | ${PYTHON_PN}-doctest \ | 21 | ${PYTHON_PN}-doctest \ |
22 | ${PYTHON_PN}-extras \ | 22 | ${PYTHON_PN}-extras \ |
23 | ${PYTHON_PN}-pbr \ | 23 | ${PYTHON_PN}-pbr \ |
diff --git a/meta/recipes-devtools/python/python3-atomicwrites_1.4.0.bb b/meta/recipes-devtools/python/python3-atomicwrites_1.4.0.bb index 7edd41030f..065a2c7b4f 100644 --- a/meta/recipes-devtools/python/python3-atomicwrites_1.4.0.bb +++ b/meta/recipes-devtools/python/python3-atomicwrites_1.4.0.bb | |||
@@ -12,7 +12,7 @@ SRC_URI += " \ | |||
12 | file://run-ptest \ | 12 | file://run-ptest \ |
13 | " | 13 | " |
14 | 14 | ||
15 | RDEPENDS_${PN}-ptest += " \ | 15 | RDEPENDS:${PN}-ptest += " \ |
16 | ${PYTHON_PN}-pytest \ | 16 | ${PYTHON_PN}-pytest \ |
17 | ${PYTHON_PN}-unixadmin \ | 17 | ${PYTHON_PN}-unixadmin \ |
18 | " | 18 | " |
@@ -22,4 +22,4 @@ do_install_ptest() { | |||
22 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | 22 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ |
23 | } | 23 | } |
24 | 24 | ||
25 | RDEPENDS_${PN} = "${PYTHON_PN}-misc" | 25 | RDEPENDS:${PN} = "${PYTHON_PN}-misc" |
diff --git a/meta/recipes-devtools/python/python3-attrs_21.2.0.bb b/meta/recipes-devtools/python/python3-attrs_21.2.0.bb index e89fbc96f2..d52237f267 100644 --- a/meta/recipes-devtools/python/python3-attrs_21.2.0.bb +++ b/meta/recipes-devtools/python/python3-attrs_21.2.0.bb | |||
@@ -7,11 +7,11 @@ SRC_URI[sha256sum] = "ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04a | |||
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS_${PN}_class-target += " \ | 10 | RDEPENDS:${PN}:class-target += " \ |
11 | ${PYTHON_PN}-crypt \ | 11 | ${PYTHON_PN}-crypt \ |
12 | ${PYTHON_PN}-ctypes \ | 12 | ${PYTHON_PN}-ctypes \ |
13 | " | 13 | " |
14 | RDEPENDS_${PN}_class-nativesdk += " \ | 14 | RDEPENDS:${PN}:class-nativesdk += " \ |
15 | ${PYTHON_PN}-crypt \ | 15 | ${PYTHON_PN}-crypt \ |
16 | ${PYTHON_PN}-ctypes \ | 16 | ${PYTHON_PN}-ctypes \ |
17 | " | 17 | " |
diff --git a/meta/recipes-devtools/python/python3-cython_0.29.23.bb b/meta/recipes-devtools/python/python3-cython_0.29.23.bb index 2ec4033fa0..296fb39b6f 100644 --- a/meta/recipes-devtools/python/python3-cython_0.29.23.bb +++ b/meta/recipes-devtools/python/python3-cython_0.29.23.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | inherit setuptools3 | 1 | inherit setuptools3 |
2 | require python-cython.inc | 2 | require python-cython.inc |
3 | 3 | ||
4 | RDEPENDS_${PN} += "\ | 4 | RDEPENDS:${PN} += "\ |
5 | python3-setuptools \ | 5 | python3-setuptools \ |
6 | " | 6 | " |
7 | 7 | ||
@@ -10,7 +10,7 @@ RDEPENDS_${PN} += "\ | |||
10 | # architecture. | 10 | # architecture. |
11 | DISTUTILS_INSTALL_ARGS += "--skip-build" | 11 | DISTUTILS_INSTALL_ARGS += "--skip-build" |
12 | 12 | ||
13 | do_install_append() { | 13 | do_install:append() { |
14 | # rename scripts that would conflict with the Python 2 build of Cython | 14 | # rename scripts that would conflict with the Python 2 build of Cython |
15 | mv ${D}${bindir}/cython ${D}${bindir}/cython3 | 15 | mv ${D}${bindir}/cython ${D}${bindir}/cython3 |
16 | mv ${D}${bindir}/cythonize ${D}${bindir}/cythonize3 | 16 | mv ${D}${bindir}/cythonize ${D}${bindir}/cythonize3 |
diff --git a/meta/recipes-devtools/python/python3-dbus_1.2.16.bb b/meta/recipes-devtools/python/python3-dbus_1.2.16.bb index e1700fa869..9be6ffc485 100644 --- a/meta/recipes-devtools/python/python3-dbus_1.2.16.bb +++ b/meta/recipes-devtools/python/python3-dbus_1.2.16.bb | |||
@@ -19,8 +19,8 @@ inherit distutils3-base autotools pkgconfig | |||
19 | EXTRA_OECONF += "--disable-documentation" | 19 | EXTRA_OECONF += "--disable-documentation" |
20 | 20 | ||
21 | 21 | ||
22 | RDEPENDS_${PN} = "python3-io python3-logging python3-stringold python3-threading python3-xml" | 22 | RDEPENDS:${PN} = "python3-io python3-logging python3-stringold python3-threading python3-xml" |
23 | 23 | ||
24 | FILES_${PN}-dev += "${libdir}/pkgconfig" | 24 | FILES:${PN}-dev += "${libdir}/pkgconfig" |
25 | 25 | ||
26 | BBCLASSEXTEND = "native nativesdk" | 26 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/python/python3-dbusmock_0.23.1.bb b/meta/recipes-devtools/python/python3-dbusmock_0.23.1.bb index b5fa1868b8..28e99299b2 100644 --- a/meta/recipes-devtools/python/python3-dbusmock_0.23.1.bb +++ b/meta/recipes-devtools/python/python3-dbusmock_0.23.1.bb | |||
@@ -10,7 +10,7 @@ PYPI_PACKAGE = "python-dbusmock" | |||
10 | 10 | ||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | RDEPENDS_${PN} += "\ | 13 | RDEPENDS:${PN} += "\ |
14 | ${PYTHON_PN}-dbus \ | 14 | ${PYTHON_PN}-dbus \ |
15 | ${PYTHON_PN}-pygobject \ | 15 | ${PYTHON_PN}-pygobject \ |
16 | ${PYTHON_PN}-unittest \ | 16 | ${PYTHON_PN}-unittest \ |
diff --git a/meta/recipes-devtools/python/python3-git_3.1.18.bb b/meta/recipes-devtools/python/python3-git_3.1.18.bb index 955418c0e4..d1c50d4322 100644 --- a/meta/recipes-devtools/python/python3-git_3.1.18.bb +++ b/meta/recipes-devtools/python/python3-git_3.1.18.bb | |||
@@ -16,7 +16,7 @@ SRC_URI[sha256sum] = "b838a895977b45ab6f0cc926a9045c8d1c44e2b653c1fcc39fe91f42c6 | |||
16 | 16 | ||
17 | DEPENDS += " ${PYTHON_PN}-gitdb" | 17 | DEPENDS += " ${PYTHON_PN}-gitdb" |
18 | 18 | ||
19 | RDEPENDS_${PN} += " \ | 19 | RDEPENDS:${PN} += " \ |
20 | ${PYTHON_PN}-datetime \ | 20 | ${PYTHON_PN}-datetime \ |
21 | ${PYTHON_PN}-gitdb \ | 21 | ${PYTHON_PN}-gitdb \ |
22 | ${PYTHON_PN}-io \ | 22 | ${PYTHON_PN}-io \ |
diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.14.3.bb b/meta/recipes-devtools/python/python3-hypothesis_6.14.3.bb index 83c9917a04..63101aad69 100644 --- a/meta/recipes-devtools/python/python3-hypothesis_6.14.3.bb +++ b/meta/recipes-devtools/python/python3-hypothesis_6.14.3.bb | |||
@@ -9,7 +9,7 @@ inherit pypi setuptools3 | |||
9 | 9 | ||
10 | SRC_URI[sha256sum] = "1c8776d9fc8c598cf1b93b99bd87976f9d9b589fc58843d85a30090700f14a8a" | 10 | SRC_URI[sha256sum] = "1c8776d9fc8c598cf1b93b99bd87976f9d9b589fc58843d85a30090700f14a8a" |
11 | 11 | ||
12 | RDEPENDS_${PN} += " \ | 12 | RDEPENDS:${PN} += " \ |
13 | python3-attrs \ | 13 | python3-attrs \ |
14 | python3-compression \ | 14 | python3-compression \ |
15 | python3-core \ | 15 | python3-core \ |
diff --git a/meta/recipes-devtools/python/python3-importlib-metadata_4.6.1.bb b/meta/recipes-devtools/python/python3-importlib-metadata_4.6.1.bb index 7e9604aaf4..9fa4754881 100644 --- a/meta/recipes-devtools/python/python3-importlib-metadata_4.6.1.bb +++ b/meta/recipes-devtools/python/python3-importlib-metadata_4.6.1.bb | |||
@@ -13,8 +13,8 @@ SRC_URI[sha256sum] = "079ada16b7fc30dfbb5d13399a5113110dab1aa7c2bc62f66af75f0b71 | |||
13 | S = "${WORKDIR}/importlib_metadata-${PV}" | 13 | S = "${WORKDIR}/importlib_metadata-${PV}" |
14 | 14 | ||
15 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native ${PYTHON_PN}-toml-native" | 15 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native ${PYTHON_PN}-toml-native" |
16 | RDEPENDS_${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2" | 16 | RDEPENDS:${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2" |
17 | RDEPENDS_${PN}_append_class-target = " python3-misc" | 17 | RDEPENDS:${PN}:append:class-target = " python3-misc" |
18 | RDEPENDS_${PN}_append_class-nativesdk = " python3-misc" | 18 | RDEPENDS:${PN}:append:class-nativesdk = " python3-misc" |
19 | 19 | ||
20 | BBCLASSEXTEND = "native nativesdk" | 20 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/python/python3-iniparse_0.5.bb b/meta/recipes-devtools/python/python3-iniparse_0.5.bb index 4ed82eab29..b5812d90c3 100644 --- a/meta/recipes-devtools/python/python3-iniparse_0.5.bb +++ b/meta/recipes-devtools/python/python3-iniparse_0.5.bb | |||
@@ -8,7 +8,7 @@ SRC_URI[sha256sum] = "932e5239d526e7acb504017bb707be67019ac428a6932368e685169109 | |||
8 | 8 | ||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS_${PN} += "python3-core python3-six" | 11 | RDEPENDS:${PN} += "python3-core python3-six" |
12 | DEPENDS += "python3-six" | 12 | DEPENDS += "python3-six" |
13 | 13 | ||
14 | BBCLASSEXTEND = "native nativesdk" | 14 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/python/python3-jinja2_3.0.1.bb b/meta/recipes-devtools/python/python3-jinja2_3.0.1.bb index b37a043ccb..abb89c9a30 100644 --- a/meta/recipes-devtools/python/python3-jinja2_3.0.1.bb +++ b/meta/recipes-devtools/python/python3-jinja2_3.0.1.bb | |||
@@ -24,13 +24,13 @@ do_install_ptest() { | |||
24 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | 24 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ |
25 | } | 25 | } |
26 | 26 | ||
27 | RDEPENDS_${PN}-ptest += " \ | 27 | RDEPENDS:${PN}-ptest += " \ |
28 | ${PYTHON_PN}-pytest \ | 28 | ${PYTHON_PN}-pytest \ |
29 | ${PYTHON_PN}-toml \ | 29 | ${PYTHON_PN}-toml \ |
30 | ${PYTHON_PN}-unixadmin \ | 30 | ${PYTHON_PN}-unixadmin \ |
31 | " | 31 | " |
32 | 32 | ||
33 | RDEPENDS_${PN} += " \ | 33 | RDEPENDS:${PN} += " \ |
34 | ${PYTHON_PN}-asyncio \ | 34 | ${PYTHON_PN}-asyncio \ |
35 | ${PYTHON_PN}-crypt \ | 35 | ${PYTHON_PN}-crypt \ |
36 | ${PYTHON_PN}-io \ | 36 | ${PYTHON_PN}-io \ |
diff --git a/meta/recipes-devtools/python/python3-libarchive-c_3.1.bb b/meta/recipes-devtools/python/python3-libarchive-c_3.1.bb index d8f7862f92..ac8466e63b 100644 --- a/meta/recipes-devtools/python/python3-libarchive-c_3.1.bb +++ b/meta/recipes-devtools/python/python3-libarchive-c_3.1.bb | |||
@@ -12,7 +12,7 @@ inherit pypi setuptools3 | |||
12 | SRC_URI[md5sum] = "8c62da42a8b9bd24642e5430427e6f5a" | 12 | SRC_URI[md5sum] = "8c62da42a8b9bd24642e5430427e6f5a" |
13 | SRC_URI[sha256sum] = "618a7ecfbfb58ca15e11e3138d4a636498da3b6bc212811af158298530fbb87e" | 13 | SRC_URI[sha256sum] = "618a7ecfbfb58ca15e11e3138d4a636498da3b6bc212811af158298530fbb87e" |
14 | 14 | ||
15 | RDEPENDS_${PN} += "\ | 15 | RDEPENDS:${PN} += "\ |
16 | libarchive \ | 16 | libarchive \ |
17 | ${PYTHON_PN}-ctypes \ | 17 | ${PYTHON_PN}-ctypes \ |
18 | ${PYTHON_PN}-mmap \ | 18 | ${PYTHON_PN}-mmap \ |
diff --git a/meta/recipes-devtools/python/python3-magic_0.4.24.bb b/meta/recipes-devtools/python/python3-magic_0.4.24.bb index a54bf2431c..ae895fbd53 100644 --- a/meta/recipes-devtools/python/python3-magic_0.4.24.bb +++ b/meta/recipes-devtools/python/python3-magic_0.4.24.bb | |||
@@ -13,7 +13,7 @@ inherit pypi setuptools3 | |||
13 | 13 | ||
14 | SRC_URI[sha256sum] = "de800df9fb50f8ec5974761054a708af6e4246b03b4bdaee993f948947b0ebcf" | 14 | SRC_URI[sha256sum] = "de800df9fb50f8ec5974761054a708af6e4246b03b4bdaee993f948947b0ebcf" |
15 | 15 | ||
16 | RDEPENDS_${PN} += "file \ | 16 | RDEPENDS:${PN} += "file \ |
17 | ${PYTHON_PN}-ctypes \ | 17 | ${PYTHON_PN}-ctypes \ |
18 | ${PYTHON_PN}-io \ | 18 | ${PYTHON_PN}-io \ |
19 | ${PYTHON_PN}-logging \ | 19 | ${PYTHON_PN}-logging \ |
diff --git a/meta/recipes-devtools/python/python3-mako_1.1.4.bb b/meta/recipes-devtools/python/python3-mako_1.1.4.bb index 1645f37da4..21ce33b808 100644 --- a/meta/recipes-devtools/python/python3-mako_1.1.4.bb +++ b/meta/recipes-devtools/python/python3-mako_1.1.4.bb | |||
@@ -10,7 +10,7 @@ inherit pypi setuptools3 | |||
10 | 10 | ||
11 | SRC_URI[sha256sum] = "17831f0b7087c313c0ffae2bcbbd3c1d5ba9eeac9c38f2eb7b50e8c99fe9d5ab" | 11 | SRC_URI[sha256sum] = "17831f0b7087c313c0ffae2bcbbd3c1d5ba9eeac9c38f2eb7b50e8c99fe9d5ab" |
12 | 12 | ||
13 | RDEPENDS_${PN} = "${PYTHON_PN}-html \ | 13 | RDEPENDS:${PN} = "${PYTHON_PN}-html \ |
14 | ${PYTHON_PN}-netclient \ | 14 | ${PYTHON_PN}-netclient \ |
15 | ${PYTHON_PN}-threading \ | 15 | ${PYTHON_PN}-threading \ |
16 | " | 16 | " |
diff --git a/meta/recipes-devtools/python/python3-markdown_3.3.4.bb b/meta/recipes-devtools/python/python3-markdown_3.3.4.bb index 47cccbe5bd..ec1d139ab0 100644 --- a/meta/recipes-devtools/python/python3-markdown_3.3.4.bb +++ b/meta/recipes-devtools/python/python3-markdown_3.3.4.bb | |||
@@ -10,4 +10,4 @@ SRC_URI[sha256sum] = "31b5b491868dcc87d6c24b7e3d19a0d730d59d3e46f4eea6430a321bed | |||
10 | 10 | ||
11 | BBCLASSEXTEND = "native" | 11 | BBCLASSEXTEND = "native" |
12 | 12 | ||
13 | RDEPENDS_${PN} += "${PYTHON_PN}-logging ${PYTHON_PN}-setuptools" | 13 | RDEPENDS:${PN} += "${PYTHON_PN}-logging ${PYTHON_PN}-setuptools" |
diff --git a/meta/recipes-devtools/python/python3-markupsafe_2.0.1.bb b/meta/recipes-devtools/python/python3-markupsafe_2.0.1.bb index 5be43b6c56..857472cc7b 100644 --- a/meta/recipes-devtools/python/python3-markupsafe_2.0.1.bb +++ b/meta/recipes-devtools/python/python3-markupsafe_2.0.1.bb | |||
@@ -9,7 +9,7 @@ PYPI_PACKAGE = "MarkupSafe" | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | inherit ${@bb.utils.filter('DISTRO_FEATURES', 'ptest', d)} | 10 | inherit ${@bb.utils.filter('DISTRO_FEATURES', 'ptest', d)} |
11 | 11 | ||
12 | RDEPENDS_${PN} += "${PYTHON_PN}-stringold" | 12 | RDEPENDS:${PN} += "${PYTHON_PN}-stringold" |
13 | 13 | ||
14 | BBCLASSEXTEND = "native nativesdk" | 14 | BBCLASSEXTEND = "native nativesdk" |
15 | 15 | ||
@@ -17,7 +17,7 @@ SRC_URI += " \ | |||
17 | file://run-ptest \ | 17 | file://run-ptest \ |
18 | " | 18 | " |
19 | 19 | ||
20 | RDEPENDS_${PN}-ptest += " \ | 20 | RDEPENDS:${PN}-ptest += " \ |
21 | ${PYTHON_PN}-pytest \ | 21 | ${PYTHON_PN}-pytest \ |
22 | " | 22 | " |
23 | 23 | ||
diff --git a/meta/recipes-devtools/python/python3-more-itertools_8.8.0.bb b/meta/recipes-devtools/python/python3-more-itertools_8.8.0.bb index 1c0e84d27f..fe41d47e41 100644 --- a/meta/recipes-devtools/python/python3-more-itertools_8.8.0.bb +++ b/meta/recipes-devtools/python/python3-more-itertools_8.8.0.bb | |||
@@ -11,11 +11,11 @@ SRC_URI += " \ | |||
11 | file://run-ptest \ | 11 | file://run-ptest \ |
12 | " | 12 | " |
13 | 13 | ||
14 | RDEPENDS_${PN} += " \ | 14 | RDEPENDS:${PN} += " \ |
15 | ${PYTHON_PN}-asyncio \ | 15 | ${PYTHON_PN}-asyncio \ |
16 | " | 16 | " |
17 | 17 | ||
18 | RDEPENDS_${PN}-ptest += " \ | 18 | RDEPENDS:${PN}-ptest += " \ |
19 | ${PYTHON_PN}-pytest \ | 19 | ${PYTHON_PN}-pytest \ |
20 | " | 20 | " |
21 | 21 | ||
diff --git a/meta/recipes-devtools/python/python3-packaging_21.0.bb b/meta/recipes-devtools/python/python3-packaging_21.0.bb index 23ecd9df5e..eacc48e56a 100644 --- a/meta/recipes-devtools/python/python3-packaging_21.0.bb +++ b/meta/recipes-devtools/python/python3-packaging_21.0.bb | |||
@@ -10,4 +10,4 @@ inherit pypi setuptools3 | |||
10 | BBCLASSEXTEND = "native" | 10 | BBCLASSEXTEND = "native" |
11 | 11 | ||
12 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | 12 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" |
13 | RDEPENDS_${PN} += "${PYTHON_PN}-six ${PYTHON_PN}-pyparsing" | 13 | RDEPENDS:${PN} += "${PYTHON_PN}-six ${PYTHON_PN}-pyparsing" |
diff --git a/meta/recipes-devtools/python/python3-pathlib2_2.3.6.bb b/meta/recipes-devtools/python/python3-pathlib2_2.3.6.bb index 8516bbe4d4..1f1cf1ab28 100644 --- a/meta/recipes-devtools/python/python3-pathlib2_2.3.6.bb +++ b/meta/recipes-devtools/python/python3-pathlib2_2.3.6.bb | |||
@@ -7,6 +7,6 @@ SRC_URI[sha256sum] = "7d8bcb5555003cdf4a8d2872c538faa3a0f5d20630cb360e518ca3b981 | |||
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS_${PN} += "${PYTHON_PN}-six ${PYTHON_PN}-ctypes" | 10 | RDEPENDS:${PN} += "${PYTHON_PN}-six ${PYTHON_PN}-ctypes" |
11 | 11 | ||
12 | BBCLASSEXTEND = "native nativesdk" | 12 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/python/python3-pip_21.1.3.bb b/meta/recipes-devtools/python/python3-pip_21.1.3.bb index 0f105c2393..21b2c7cb2b 100644 --- a/meta/recipes-devtools/python/python3-pip_21.1.3.bb +++ b/meta/recipes-devtools/python/python3-pip_21.1.3.bb | |||
@@ -12,12 +12,12 @@ SRC_URI += "file://0001-change-shebang-to-python3.patch" | |||
12 | 12 | ||
13 | SRC_URI[sha256sum] = "b5b1eb91b36894bd01b8e5a56a422c2f3838573da0b0a1c63a096bb454e3b23f" | 13 | SRC_URI[sha256sum] = "b5b1eb91b36894bd01b8e5a56a422c2f3838573da0b0a1c63a096bb454e3b23f" |
14 | 14 | ||
15 | do_install_append() { | 15 | do_install:append() { |
16 | # Install as pip3 and leave pip2 as default | 16 | # Install as pip3 and leave pip2 as default |
17 | rm ${D}/${bindir}/pip | 17 | rm ${D}/${bindir}/pip |
18 | } | 18 | } |
19 | 19 | ||
20 | RDEPENDS_${PN} = "\ | 20 | RDEPENDS:${PN} = "\ |
21 | python3-compile \ | 21 | python3-compile \ |
22 | python3-io \ | 22 | python3-io \ |
23 | python3-html \ | 23 | python3-html \ |
diff --git a/meta/recipes-devtools/python/python3-pluggy_0.13.1.bb b/meta/recipes-devtools/python/python3-pluggy_0.13.1.bb index d3e0365ca1..479c10fcdc 100644 --- a/meta/recipes-devtools/python/python3-pluggy_0.13.1.bb +++ b/meta/recipes-devtools/python/python3-pluggy_0.13.1.bb | |||
@@ -7,7 +7,7 @@ SRC_URI[md5sum] = "7f610e28b8b34487336b585a3dfb803d" | |||
7 | SRC_URI[sha256sum] = "15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0" | 7 | SRC_URI[sha256sum] = "15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0" |
8 | 8 | ||
9 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | 9 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" |
10 | RDEPENDS_${PN} += "${PYTHON_PN}-importlib-metadata \ | 10 | RDEPENDS:${PN} += "${PYTHON_PN}-importlib-metadata \ |
11 | ${PYTHON_PN}-more-itertools \ | 11 | ${PYTHON_PN}-more-itertools \ |
12 | " | 12 | " |
13 | 13 | ||
@@ -17,7 +17,7 @@ SRC_URI += " \ | |||
17 | file://run-ptest \ | 17 | file://run-ptest \ |
18 | " | 18 | " |
19 | 19 | ||
20 | RDEPENDS_${PN}-ptest += " \ | 20 | RDEPENDS:${PN}-ptest += " \ |
21 | ${PYTHON_PN}-pytest \ | 21 | ${PYTHON_PN}-pytest \ |
22 | " | 22 | " |
23 | 23 | ||
diff --git a/meta/recipes-devtools/python/python3-py_1.10.0.bb b/meta/recipes-devtools/python/python3-py_1.10.0.bb index 4e16ad1743..8225c6b6c8 100644 --- a/meta/recipes-devtools/python/python3-py_1.10.0.bb +++ b/meta/recipes-devtools/python/python3-py_1.10.0.bb | |||
@@ -11,4 +11,4 @@ inherit pypi setuptools3 | |||
11 | 11 | ||
12 | BBCLASSEXTEND = "native nativesdk" | 12 | BBCLASSEXTEND = "native nativesdk" |
13 | 13 | ||
14 | RDEPENDS_${PN} += "${PYTHON_PN}-netclient" | 14 | RDEPENDS:${PN} += "${PYTHON_PN}-netclient" |
diff --git a/meta/recipes-devtools/python/python3-pycairo_1.20.1.bb b/meta/recipes-devtools/python/python3-pycairo_1.20.1.bb index d169a3ca79..9c88d998f9 100644 --- a/meta/recipes-devtools/python/python3-pycairo_1.20.1.bb +++ b/meta/recipes-devtools/python/python3-pycairo_1.20.1.bb | |||
@@ -24,4 +24,4 @@ CFLAGS += "-fPIC" | |||
24 | 24 | ||
25 | BBCLASSEXTEND = "native" | 25 | BBCLASSEXTEND = "native" |
26 | 26 | ||
27 | FILES_${PN} = "${PYTHON_SITEPACKAGES_DIR}/*" | 27 | FILES:${PN} = "${PYTHON_SITEPACKAGES_DIR}/*" |
diff --git a/meta/recipes-devtools/python/python3-pycryptodomex_3.10.1.bb b/meta/recipes-devtools/python/python3-pycryptodomex_3.10.1.bb index a6b3b3e935..2d929f11d0 100644 --- a/meta/recipes-devtools/python/python3-pycryptodomex_3.10.1.bb +++ b/meta/recipes-devtools/python/python3-pycryptodomex_3.10.1.bb | |||
@@ -3,7 +3,7 @@ inherit setuptools3 | |||
3 | 3 | ||
4 | SRC_URI[sha256sum] = "541cd3e3e252fb19a7b48f420b798b53483302b7fe4d9954c947605d0a263d62" | 4 | SRC_URI[sha256sum] = "541cd3e3e252fb19a7b48f420b798b53483302b7fe4d9954c947605d0a263d62" |
5 | 5 | ||
6 | FILES_${PN}-tests = " \ | 6 | FILES:${PN}-tests = " \ |
7 | ${PYTHON_SITEPACKAGES_DIR}/Cryptodome/SelfTest/ \ | 7 | ${PYTHON_SITEPACKAGES_DIR}/Cryptodome/SelfTest/ \ |
8 | ${PYTHON_SITEPACKAGES_DIR}/Cryptodome/SelfTest/__pycache__/ \ | 8 | ${PYTHON_SITEPACKAGES_DIR}/Cryptodome/SelfTest/__pycache__/ \ |
9 | " | 9 | " |
diff --git a/meta/recipes-devtools/python/python3-pygobject_3.40.1.bb b/meta/recipes-devtools/python/python3-pygobject_3.40.1.bb index f5679a4ba2..a0d4f04965 100644 --- a/meta/recipes-devtools/python/python3-pygobject_3.40.1.bb +++ b/meta/recipes-devtools/python/python3-pygobject_3.40.1.bb | |||
@@ -24,11 +24,11 @@ S = "${WORKDIR}/${SRCNAME}-${PV}" | |||
24 | 24 | ||
25 | PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', [ 'directfb', 'wayland', 'x11' ], 'cairo', '', d)}" | 25 | PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', [ 'directfb', 'wayland', 'x11' ], 'cairo', '', d)}" |
26 | 26 | ||
27 | RDEPENDS_${PN} += "python3-pkgutil" | 27 | RDEPENDS:${PN} += "python3-pkgutil" |
28 | 28 | ||
29 | # python3-pycairo is checked on configuration -> DEPENDS | 29 | # python3-pycairo is checked on configuration -> DEPENDS |
30 | # we don't link against python3-pycairo -> RDEPENDS | 30 | # we don't link against python3-pycairo -> RDEPENDS |
31 | PACKAGECONFIG[cairo] = "-Dpycairo=enabled,-Dpycairo=disabled, cairo python3-pycairo, python3-pycairo" | 31 | PACKAGECONFIG[cairo] = "-Dpycairo=enabled,-Dpycairo=disabled, cairo python3-pycairo, python3-pycairo" |
32 | 32 | ||
33 | BBCLASSEXTEND = "native" | 33 | BBCLASSEXTEND = "native" |
34 | PACKAGECONFIG_class-native = "" | 34 | PACKAGECONFIG:class-native = "" |
diff --git a/meta/recipes-devtools/python/python3-pytest_6.2.4.bb b/meta/recipes-devtools/python/python3-pytest_6.2.4.bb index fa43e6ebf0..0df44d58c7 100644 --- a/meta/recipes-devtools/python/python3-pytest_6.2.4.bb +++ b/meta/recipes-devtools/python/python3-pytest_6.2.4.bb | |||
@@ -5,13 +5,13 @@ DESCRIPTION = "The pytest framework makes it easy to write small tests, yet scal | |||
5 | LICENSE = "MIT" | 5 | LICENSE = "MIT" |
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=81eb9f71d006c6b268cf4388e3c98f7b" | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=81eb9f71d006c6b268cf4388e3c98f7b" |
7 | 7 | ||
8 | SRC_URI_append = " file://0001-setup.py-remove-the-setup_requires-for-setuptools-scm.patch " | 8 | SRC_URI:append = " file://0001-setup.py-remove-the-setup_requires-for-setuptools-scm.patch " |
9 | 9 | ||
10 | SRC_URI[sha256sum] = "50bcad0a0b9c5a72c8e4e7c9855a3ad496ca6a881a3641b4260605450772c54b" | 10 | SRC_URI[sha256sum] = "50bcad0a0b9c5a72c8e4e7c9855a3ad496ca6a881a3641b4260605450772c54b" |
11 | 11 | ||
12 | inherit update-alternatives pypi setuptools3 | 12 | inherit update-alternatives pypi setuptools3 |
13 | 13 | ||
14 | RDEPENDS_${PN}_class-target += " \ | 14 | RDEPENDS:${PN}:class-target += " \ |
15 | ${PYTHON_PN}-atomicwrites \ | 15 | ${PYTHON_PN}-atomicwrites \ |
16 | ${PYTHON_PN}-attrs \ | 16 | ${PYTHON_PN}-attrs \ |
17 | ${PYTHON_PN}-debugger \ | 17 | ${PYTHON_PN}-debugger \ |
@@ -30,7 +30,7 @@ RDEPENDS_${PN}_class-target += " \ | |||
30 | ${PYTHON_PN}-wcwidth \ | 30 | ${PYTHON_PN}-wcwidth \ |
31 | " | 31 | " |
32 | 32 | ||
33 | ALTERNATIVE_${PN} += "py.test pytest" | 33 | ALTERNATIVE:${PN} += "py.test pytest" |
34 | 34 | ||
35 | NATIVE_LINK_NAME[pytest] = "${bindir}/pytest" | 35 | NATIVE_LINK_NAME[pytest] = "${bindir}/pytest" |
36 | ALTERNATIVE_TARGET[pytest] = "${bindir}/pytest" | 36 | ALTERNATIVE_TARGET[pytest] = "${bindir}/pytest" |
diff --git a/meta/recipes-devtools/python/python3-pyyaml_5.4.1.bb b/meta/recipes-devtools/python/python3-pyyaml_5.4.1.bb index dce1ad57d3..b11baa6331 100644 --- a/meta/recipes-devtools/python/python3-pyyaml_5.4.1.bb +++ b/meta/recipes-devtools/python/python3-pyyaml_5.4.1.bb | |||
@@ -11,7 +11,7 @@ inherit pypi setuptools3 | |||
11 | 11 | ||
12 | SRC_URI[sha256sum] = "607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e" | 12 | SRC_URI[sha256sum] = "607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e" |
13 | 13 | ||
14 | RDEPENDS_${PN} += "\ | 14 | RDEPENDS:${PN} += "\ |
15 | ${PYTHON_PN}-datetime \ | 15 | ${PYTHON_PN}-datetime \ |
16 | ${PYTHON_PN}-netclient \ | 16 | ${PYTHON_PN}-netclient \ |
17 | " | 17 | " |
diff --git a/meta/recipes-devtools/python/python3-scons-native_4.1.0.bb b/meta/recipes-devtools/python/python3-scons-native_4.1.0.bb index 9e127304d6..73076b8732 100644 --- a/meta/recipes-devtools/python/python3-scons-native_4.1.0.bb +++ b/meta/recipes-devtools/python/python3-scons-native_4.1.0.bb | |||
@@ -2,6 +2,6 @@ require python3-scons_${PV}.bb | |||
2 | inherit native python3native | 2 | inherit native python3native |
3 | DEPENDS = "python3-native python3-setuptools-native" | 3 | DEPENDS = "python3-native python3-setuptools-native" |
4 | 4 | ||
5 | do_install_append() { | 5 | do_install:append() { |
6 | create_wrapper ${D}${bindir}/scons SCONS_LIB_DIR='${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}' PYTHONNOUSERSITE='1' | 6 | create_wrapper ${D}${bindir}/scons SCONS_LIB_DIR='${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}' PYTHONNOUSERSITE='1' |
7 | } | 7 | } |
diff --git a/meta/recipes-devtools/python/python3-scons_4.1.0.bb b/meta/recipes-devtools/python/python3-scons_4.1.0.bb index 5894a5ef3f..5a5b550be0 100644 --- a/meta/recipes-devtools/python/python3-scons_4.1.0.bb +++ b/meta/recipes-devtools/python/python3-scons_4.1.0.bb | |||
@@ -11,7 +11,7 @@ PYPI_PACKAGE = "SCons" | |||
11 | 11 | ||
12 | inherit pypi setuptools3 | 12 | inherit pypi setuptools3 |
13 | 13 | ||
14 | RDEPENDS_${PN}_class-target = "\ | 14 | RDEPENDS:${PN}:class-target = "\ |
15 | python3-core \ | 15 | python3-core \ |
16 | python3-compression \ | 16 | python3-compression \ |
17 | python3-fcntl \ | 17 | python3-fcntl \ |
@@ -24,4 +24,4 @@ RDEPENDS_${PN}_class-target = "\ | |||
24 | python3-pprint \ | 24 | python3-pprint \ |
25 | " | 25 | " |
26 | 26 | ||
27 | FILES_${PN}-doc += "${datadir}/scons*.1" | 27 | FILES:${PN}-doc += "${datadir}/scons*.1" |
diff --git a/meta/recipes-devtools/python/python3-setuptools-scm_6.0.1.bb b/meta/recipes-devtools/python/python3-setuptools-scm_6.0.1.bb index 24409eddc5..afbed17a2d 100644 --- a/meta/recipes-devtools/python/python3-setuptools-scm_6.0.1.bb +++ b/meta/recipes-devtools/python/python3-setuptools-scm_6.0.1.bb | |||
@@ -11,14 +11,14 @@ inherit pypi setuptools3 | |||
11 | 11 | ||
12 | UPSTREAM_CHECK_REGEX = "setuptools_scm-(?P<pver>.*)\.tar" | 12 | UPSTREAM_CHECK_REGEX = "setuptools_scm-(?P<pver>.*)\.tar" |
13 | 13 | ||
14 | RDEPENDS_${PN} = "\ | 14 | RDEPENDS:${PN} = "\ |
15 | ${PYTHON_PN}-debugger \ | 15 | ${PYTHON_PN}-debugger \ |
16 | ${PYTHON_PN}-json \ | 16 | ${PYTHON_PN}-json \ |
17 | ${PYTHON_PN}-py \ | 17 | ${PYTHON_PN}-py \ |
18 | ${PYTHON_PN}-setuptools \ | 18 | ${PYTHON_PN}-setuptools \ |
19 | ${PYTHON_PN}-toml \ | 19 | ${PYTHON_PN}-toml \ |
20 | " | 20 | " |
21 | RDEPENDS_${PN}_class-native = "\ | 21 | RDEPENDS:${PN}:class-native = "\ |
22 | ${PYTHON_PN}-setuptools-native \ | 22 | ${PYTHON_PN}-setuptools-native \ |
23 | ${PYTHON_PN}-toml-native \ | 23 | ${PYTHON_PN}-toml-native \ |
24 | " | 24 | " |
diff --git a/meta/recipes-devtools/python/python3-setuptools_57.1.0.bb b/meta/recipes-devtools/python/python3-setuptools_57.1.0.bb index c066d8209f..63c0fe97ff 100644 --- a/meta/recipes-devtools/python/python3-setuptools_57.1.0.bb +++ b/meta/recipes-devtools/python/python3-setuptools_57.1.0.bb | |||
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;beginline=1;endline=19;md5=7a7126e068206290f3 | |||
6 | 6 | ||
7 | inherit pypi setuptools3 | 7 | inherit pypi setuptools3 |
8 | 8 | ||
9 | SRC_URI_append_class-native = " file://0001-conditionally-do-not-fetch-code-by-easy_install.patch" | 9 | SRC_URI:append:class-native = " file://0001-conditionally-do-not-fetch-code-by-easy_install.patch" |
10 | 10 | ||
11 | SRC_URI += "file://0001-change-shebang-to-python3.patch" | 11 | SRC_URI += "file://0001-change-shebang-to-python3.patch" |
12 | 12 | ||
@@ -14,7 +14,7 @@ SRC_URI[sha256sum] = "cfca9c97e7eebbc8abe18d5e5e962a08dcad55bb63afddd82d681de4d2 | |||
14 | 14 | ||
15 | DEPENDS += "${PYTHON_PN}" | 15 | DEPENDS += "${PYTHON_PN}" |
16 | 16 | ||
17 | RDEPENDS_${PN} = "\ | 17 | RDEPENDS:${PN} = "\ |
18 | ${PYTHON_PN}-2to3 \ | 18 | ${PYTHON_PN}-2to3 \ |
19 | ${PYTHON_PN}-compile \ | 19 | ${PYTHON_PN}-compile \ |
20 | ${PYTHON_PN}-compression \ | 20 | ${PYTHON_PN}-compression \ |
@@ -36,7 +36,7 @@ RDEPENDS_${PN} = "\ | |||
36 | ${PYTHON_PN}-xml \ | 36 | ${PYTHON_PN}-xml \ |
37 | " | 37 | " |
38 | 38 | ||
39 | do_install_prepend() { | 39 | do_install:prepend() { |
40 | install -d ${D}${PYTHON_SITEPACKAGES_DIR} | 40 | install -d ${D}${PYTHON_SITEPACKAGES_DIR} |
41 | } | 41 | } |
42 | 42 | ||
@@ -46,8 +46,8 @@ BBCLASSEXTEND = "native nativesdk" | |||
46 | # and easy_install. Ship it in a separate package so that it can be used by | 46 | # and easy_install. Ship it in a separate package so that it can be used by |
47 | # minimal distributions. | 47 | # minimal distributions. |
48 | PACKAGES =+ "${PYTHON_PN}-pkg-resources " | 48 | PACKAGES =+ "${PYTHON_PN}-pkg-resources " |
49 | FILES_${PYTHON_PN}-pkg-resources = "${PYTHON_SITEPACKAGES_DIR}/pkg_resources/*" | 49 | FILES:${PYTHON_PN}-pkg-resources = "${PYTHON_SITEPACKAGES_DIR}/pkg_resources/*" |
50 | RDEPENDS_${PYTHON_PN}-pkg-resources = "\ | 50 | RDEPENDS:${PYTHON_PN}-pkg-resources = "\ |
51 | ${PYTHON_PN}-compression \ | 51 | ${PYTHON_PN}-compression \ |
52 | ${PYTHON_PN}-email \ | 52 | ${PYTHON_PN}-email \ |
53 | ${PYTHON_PN}-plistlib \ | 53 | ${PYTHON_PN}-plistlib \ |
diff --git a/meta/recipes-devtools/python/python3-subunit_1.4.0.bb b/meta/recipes-devtools/python/python3-subunit_1.4.0.bb index 55066e2d0f..a06ded868f 100644 --- a/meta/recipes-devtools/python/python3-subunit_1.4.0.bb +++ b/meta/recipes-devtools/python/python3-subunit_1.4.0.bb | |||
@@ -1,4 +1,4 @@ | |||
1 | inherit setuptools3 | 1 | inherit setuptools3 |
2 | require python-subunit.inc | 2 | require python-subunit.inc |
3 | 3 | ||
4 | RDEPENDS_${PN} = " python3-testtools" | 4 | RDEPENDS:${PN} = " python3-testtools" |
diff --git a/meta/recipes-devtools/python/python3-toml_0.10.2.bb b/meta/recipes-devtools/python/python3-toml_0.10.2.bb index b46eba6fd1..be29cac798 100644 --- a/meta/recipes-devtools/python/python3-toml_0.10.2.bb +++ b/meta/recipes-devtools/python/python3-toml_0.10.2.bb | |||
@@ -10,6 +10,6 @@ inherit pypi setuptools3 | |||
10 | 10 | ||
11 | BBCLASSEXTEND = "native nativesdk" | 11 | BBCLASSEXTEND = "native nativesdk" |
12 | 12 | ||
13 | RDEPENDS_${PN} += " \ | 13 | RDEPENDS:${PN} += " \ |
14 | ${PYTHON_PN}-misc \ | 14 | ${PYTHON_PN}-misc \ |
15 | " | 15 | " |
diff --git a/meta/recipes-devtools/python/python3-typogrify_2.0.7.bb b/meta/recipes-devtools/python/python3-typogrify_2.0.7.bb index 3becb0dd8d..83e9b5eadb 100644 --- a/meta/recipes-devtools/python/python3-typogrify_2.0.7.bb +++ b/meta/recipes-devtools/python/python3-typogrify_2.0.7.bb | |||
@@ -10,5 +10,5 @@ SRC_URI[sha256sum] = "8be4668cda434163ce229d87ca273a11922cb1614cb359970b7dc96eed | |||
10 | 10 | ||
11 | BBCLASSEXTEND = "native" | 11 | BBCLASSEXTEND = "native" |
12 | 12 | ||
13 | RDEPENDS_${PN} += "${PYTHON_PN}-smartypants" | 13 | RDEPENDS:${PN} += "${PYTHON_PN}-smartypants" |
14 | 14 | ||
diff --git a/meta/recipes-devtools/python/python3-wcwidth_0.2.5.bb b/meta/recipes-devtools/python/python3-wcwidth_0.2.5.bb index bb4aae2e86..a532d3c5cb 100644 --- a/meta/recipes-devtools/python/python3-wcwidth_0.2.5.bb +++ b/meta/recipes-devtools/python/python3-wcwidth_0.2.5.bb | |||
@@ -13,7 +13,7 @@ SRC_URI += " \ | |||
13 | file://run-ptest \ | 13 | file://run-ptest \ |
14 | " | 14 | " |
15 | 15 | ||
16 | RDEPENDS_${PN}-ptest += " \ | 16 | RDEPENDS:${PN}-ptest += " \ |
17 | ${PYTHON_PN}-pytest \ | 17 | ${PYTHON_PN}-pytest \ |
18 | " | 18 | " |
19 | 19 | ||
diff --git a/meta/recipes-devtools/python/python3-zipp_3.5.0.bb b/meta/recipes-devtools/python/python3-zipp_3.5.0.bb index ab12601e4e..d6f4676542 100644 --- a/meta/recipes-devtools/python/python3-zipp_3.5.0.bb +++ b/meta/recipes-devtools/python/python3-zipp_3.5.0.bb | |||
@@ -11,7 +11,7 @@ inherit pypi setuptools3 | |||
11 | 11 | ||
12 | DEPENDS += "${PYTHON_PN}-toml-native" | 12 | DEPENDS += "${PYTHON_PN}-toml-native" |
13 | 13 | ||
14 | RDEPENDS_${PN} += "${PYTHON_PN}-compression \ | 14 | RDEPENDS:${PN} += "${PYTHON_PN}-compression \ |
15 | ${PYTHON_PN}-math \ | 15 | ${PYTHON_PN}-math \ |
16 | ${PYTHON_PN}-more-itertools" | 16 | ${PYTHON_PN}-more-itertools" |
17 | 17 | ||
diff --git a/meta/recipes-devtools/python/python3_3.9.6.bb b/meta/recipes-devtools/python/python3_3.9.6.bb index 986dfda83d..9fe8e03389 100644 --- a/meta/recipes-devtools/python/python3_3.9.6.bb +++ b/meta/recipes-devtools/python/python3_3.9.6.bb | |||
@@ -34,7 +34,7 @@ SRC_URI = "http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.xz \ | |||
34 | file://makerace.patch \ | 34 | file://makerace.patch \ |
35 | " | 35 | " |
36 | 36 | ||
37 | SRC_URI_append_class-native = " \ | 37 | SRC_URI:append:class-native = " \ |
38 | file://0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch \ | 38 | file://0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch \ |
39 | file://12-distutils-prefix-is-inside-staging-area.patch \ | 39 | file://12-distutils-prefix-is-inside-staging-area.patch \ |
40 | file://0001-Don-t-search-system-for-headers-libraries.patch \ | 40 | file://0001-Don-t-search-system-for-headers-libraries.patch \ |
@@ -65,24 +65,24 @@ inherit autotools pkgconfig qemu ptest multilib_header update-alternatives | |||
65 | 65 | ||
66 | MULTILIB_SUFFIX = "${@d.getVar('base_libdir',1).split('/')[-1]}" | 66 | MULTILIB_SUFFIX = "${@d.getVar('base_libdir',1).split('/')[-1]}" |
67 | 67 | ||
68 | ALTERNATIVE_${PN}-dev = "python3-config" | 68 | ALTERNATIVE:${PN}-dev = "python3-config" |
69 | ALTERNATIVE_LINK_NAME[python3-config] = "${bindir}/python${PYTHON_MAJMIN}-config" | 69 | ALTERNATIVE_LINK_NAME[python3-config] = "${bindir}/python${PYTHON_MAJMIN}-config" |
70 | ALTERNATIVE_TARGET[python3-config] = "${bindir}/python${PYTHON_MAJMIN}-config-${MULTILIB_SUFFIX}" | 70 | ALTERNATIVE_TARGET[python3-config] = "${bindir}/python${PYTHON_MAJMIN}-config-${MULTILIB_SUFFIX}" |
71 | 71 | ||
72 | 72 | ||
73 | DEPENDS = "bzip2-replacement-native libffi bzip2 openssl sqlite3 zlib virtual/libintl xz virtual/crypt util-linux libtirpc libnsl2 autoconf-archive-native" | 73 | DEPENDS = "bzip2-replacement-native libffi bzip2 openssl sqlite3 zlib virtual/libintl xz virtual/crypt util-linux libtirpc libnsl2 autoconf-archive-native" |
74 | DEPENDS_append_class-target = " python3-native" | 74 | DEPENDS:append:class-target = " python3-native" |
75 | DEPENDS_append_class-nativesdk = " python3-native" | 75 | DEPENDS:append:class-nativesdk = " python3-native" |
76 | 76 | ||
77 | EXTRA_OECONF = " --without-ensurepip --enable-shared --with-platlibdir=${baselib}" | 77 | EXTRA_OECONF = " --without-ensurepip --enable-shared --with-platlibdir=${baselib}" |
78 | EXTRA_OECONF_append_class-native = " --bindir=${bindir}/${PN}" | 78 | EXTRA_OECONF:append:class-native = " --bindir=${bindir}/${PN}" |
79 | 79 | ||
80 | export CROSSPYTHONPATH="${STAGING_LIBDIR_NATIVE}/python${PYTHON_MAJMIN}/lib-dynload/" | 80 | export CROSSPYTHONPATH="${STAGING_LIBDIR_NATIVE}/python${PYTHON_MAJMIN}/lib-dynload/" |
81 | 81 | ||
82 | EXTRANATIVEPATH += "python3-native" | 82 | EXTRANATIVEPATH += "python3-native" |
83 | 83 | ||
84 | # LTO will be enabled via packageconfig depending upong distro features | 84 | # LTO will be enabled via packageconfig depending upong distro features |
85 | LTO_class-target = "" | 85 | LTO:class-target = "" |
86 | 86 | ||
87 | CACHED_CONFIGUREVARS = " \ | 87 | CACHED_CONFIGUREVARS = " \ |
88 | ac_cv_file__dev_ptmx=yes \ | 88 | ac_cv_file__dev_ptmx=yes \ |
@@ -98,9 +98,9 @@ def possibly_include_pgo(d): | |||
98 | 98 | ||
99 | return '' | 99 | return '' |
100 | 100 | ||
101 | PACKAGECONFIG_class-target ??= "readline ${@possibly_include_pgo(d)} gdbm ${@bb.utils.filter('DISTRO_FEATURES', 'lto', d)}" | 101 | PACKAGECONFIG:class-target ??= "readline ${@possibly_include_pgo(d)} gdbm ${@bb.utils.filter('DISTRO_FEATURES', 'lto', d)}" |
102 | PACKAGECONFIG_class-native ??= "readline gdbm" | 102 | PACKAGECONFIG:class-native ??= "readline gdbm" |
103 | PACKAGECONFIG_class-nativesdk ??= "readline gdbm" | 103 | PACKAGECONFIG:class-nativesdk ??= "readline gdbm" |
104 | PACKAGECONFIG[readline] = ",,readline" | 104 | PACKAGECONFIG[readline] = ",,readline" |
105 | # Use profile guided optimisation by running PyBench inside qemu-user | 105 | # Use profile guided optimisation by running PyBench inside qemu-user |
106 | PACKAGECONFIG[pgo] = "--enable-optimizations,,qemu-native" | 106 | PACKAGECONFIG[pgo] = "--enable-optimizations,,qemu-native" |
@@ -108,7 +108,7 @@ PACKAGECONFIG[tk] = ",,tk" | |||
108 | PACKAGECONFIG[gdbm] = ",,gdbm" | 108 | PACKAGECONFIG[gdbm] = ",,gdbm" |
109 | PACKAGECONFIG[lto] = "--with-lto,," | 109 | PACKAGECONFIG[lto] = "--with-lto,," |
110 | 110 | ||
111 | do_configure_prepend () { | 111 | do_configure:prepend () { |
112 | mkdir -p ${B}/Modules | 112 | mkdir -p ${B}/Modules |
113 | cat > ${B}/Modules/Setup.local << EOF | 113 | cat > ${B}/Modules/Setup.local << EOF |
114 | *disabled* | 114 | *disabled* |
@@ -117,7 +117,7 @@ ${@bb.utils.contains('PACKAGECONFIG', 'readline', '', 'readline', d)} | |||
117 | EOF | 117 | EOF |
118 | } | 118 | } |
119 | 119 | ||
120 | CPPFLAGS_append = " -I${STAGING_INCDIR}/ncursesw -I${STAGING_INCDIR}/uuid" | 120 | CPPFLAGS:append = " -I${STAGING_INCDIR}/ncursesw -I${STAGING_INCDIR}/uuid" |
121 | 121 | ||
122 | EXTRA_OEMAKE = '\ | 122 | EXTRA_OEMAKE = '\ |
123 | STAGING_LIBDIR=${STAGING_LIBDIR} \ | 123 | STAGING_LIBDIR=${STAGING_LIBDIR} \ |
@@ -125,7 +125,7 @@ EXTRA_OEMAKE = '\ | |||
125 | LIB=${baselib} \ | 125 | LIB=${baselib} \ |
126 | ' | 126 | ' |
127 | 127 | ||
128 | do_compile_prepend_class-target() { | 128 | do_compile:prepend:class-target() { |
129 | if ${@bb.utils.contains('PACKAGECONFIG', 'pgo', 'true', 'false', d)}; then | 129 | if ${@bb.utils.contains('PACKAGECONFIG', 'pgo', 'true', 'false', d)}; then |
130 | qemu_binary="${@qemu_wrapper_cmdline(d, '${STAGING_DIR_TARGET}', ['${B}', '${STAGING_DIR_TARGET}/${base_libdir}'])}" | 130 | qemu_binary="${@qemu_wrapper_cmdline(d, '${STAGING_DIR_TARGET}', ['${B}', '${STAGING_DIR_TARGET}/${base_libdir}'])}" |
131 | cat >pgo-wrapper <<EOF | 131 | cat >pgo-wrapper <<EOF |
@@ -137,15 +137,15 @@ EOF | |||
137 | fi | 137 | fi |
138 | } | 138 | } |
139 | 139 | ||
140 | do_install_prepend() { | 140 | do_install:prepend() { |
141 | ${WORKDIR}/check_build_completeness.py ${T}/log.do_compile | 141 | ${WORKDIR}/check_build_completeness.py ${T}/log.do_compile |
142 | } | 142 | } |
143 | 143 | ||
144 | do_install_append_class-target() { | 144 | do_install:append:class-target() { |
145 | oe_multilib_header python${PYTHON_MAJMIN}/pyconfig.h | 145 | oe_multilib_header python${PYTHON_MAJMIN}/pyconfig.h |
146 | } | 146 | } |
147 | 147 | ||
148 | do_install_append_class-native() { | 148 | do_install:append:class-native() { |
149 | # Make sure we use /usr/bin/env python | 149 | # Make sure we use /usr/bin/env python |
150 | for PYTHSCRIPT in `grep -rIl ${bindir}/${PN}/python ${D}${bindir}/${PN}`; do | 150 | for PYTHSCRIPT in `grep -rIl ${bindir}/${PN}/python ${D}${bindir}/${PN}`; do |
151 | sed -i -e '1s|^#!.*|#!/usr/bin/env python3|' $PYTHSCRIPT | 151 | sed -i -e '1s|^#!.*|#!/usr/bin/env python3|' $PYTHSCRIPT |
@@ -157,7 +157,7 @@ do_install_append_class-native() { | |||
157 | ln -s python3-native/python3 ${D}${bindir}/nativepython3 | 157 | ln -s python3-native/python3 ${D}${bindir}/nativepython3 |
158 | } | 158 | } |
159 | 159 | ||
160 | do_install_append() { | 160 | do_install:append() { |
161 | mkdir -p ${D}${libdir}/python-sysconfigdata | 161 | mkdir -p ${D}${libdir}/python-sysconfigdata |
162 | sysconfigfile=`find ${D} -name _sysconfig*.py` | 162 | sysconfigfile=`find ${D} -name _sysconfig*.py` |
163 | cp $sysconfigfile ${D}${libdir}/python-sysconfigdata/_sysconfigdata.py | 163 | cp $sysconfigfile ${D}${libdir}/python-sysconfigdata/_sysconfigdata.py |
@@ -179,7 +179,7 @@ do_install_append() { | |||
179 | rm ${D}${libdir}/python${PYTHON_MAJMIN}/test/__pycache__/test_xml_etree.cpython* | 179 | rm ${D}${libdir}/python${PYTHON_MAJMIN}/test/__pycache__/test_xml_etree.cpython* |
180 | } | 180 | } |
181 | 181 | ||
182 | do_install_append_class-nativesdk () { | 182 | do_install:append:class-nativesdk () { |
183 | # Make sure we use /usr/bin/env python | 183 | # Make sure we use /usr/bin/env python |
184 | for PYTHSCRIPT in `grep -rIl ${bindir}/python ${D}${bindir}`; do | 184 | for PYTHSCRIPT in `grep -rIl ${bindir}/python ${D}${bindir}`; do |
185 | sed -i -e '1s|^#!.*|#!/usr/bin/env python3|' $PYTHSCRIPT | 185 | sed -i -e '1s|^#!.*|#!/usr/bin/env python3|' $PYTHSCRIPT |
@@ -257,7 +257,7 @@ python(){ | |||
257 | if pypackage not in rprovides: | 257 | if pypackage not in rprovides: |
258 | rprovides.append(pypackage) | 258 | rprovides.append(pypackage) |
259 | 259 | ||
260 | d.setVar('RPROVIDES_class-native', ' '.join(rprovides)) | 260 | d.setVar('RPROVIDES:class-native', ' '.join(rprovides)) |
261 | 261 | ||
262 | # Then work on the target | 262 | # Then work on the target |
263 | include_pycs = d.getVar('INCLUDE_PYCS') | 263 | include_pycs = d.getVar('INCLUDE_PYCS') |
@@ -275,33 +275,33 @@ python(){ | |||
275 | newpackages.append(pypackage) | 275 | newpackages.append(pypackage) |
276 | 276 | ||
277 | # "Build" python's manifest FILES, RDEPENDS and SUMMARY | 277 | # "Build" python's manifest FILES, RDEPENDS and SUMMARY |
278 | d.setVar('FILES_' + pypackage, '') | 278 | d.setVar('FILES:' + pypackage, '') |
279 | for value in python_manifest[key]['files']: | 279 | for value in python_manifest[key]['files']: |
280 | d.appendVar('FILES_' + pypackage, ' ' + value) | 280 | d.appendVar('FILES:' + pypackage, ' ' + value) |
281 | 281 | ||
282 | # Add cached files | 282 | # Add cached files |
283 | if include_pycs == '1': | 283 | if include_pycs == '1': |
284 | for value in python_manifest[key]['cached']: | 284 | for value in python_manifest[key]['cached']: |
285 | d.appendVar('FILES_' + pypackage, ' ' + value) | 285 | d.appendVar('FILES:' + pypackage, ' ' + value) |
286 | 286 | ||
287 | for value in python_manifest[key]['rdepends']: | 287 | for value in python_manifest[key]['rdepends']: |
288 | # Make it work with or without $PN | 288 | # Make it work with or without $PN |
289 | if '${PN}' in value: | 289 | if '${PN}' in value: |
290 | value=value.split('-', 1)[1] | 290 | value=value.split('-', 1)[1] |
291 | d.appendVar('RDEPENDS_' + pypackage, ' ' + pn + '-' + value) | 291 | d.appendVar('RDEPENDS:' + pypackage, ' ' + pn + '-' + value) |
292 | 292 | ||
293 | for value in python_manifest[key].get('rrecommends', ()): | 293 | for value in python_manifest[key].get('rrecommends', ()): |
294 | if '${PN}' in value: | 294 | if '${PN}' in value: |
295 | value=value.split('-', 1)[1] | 295 | value=value.split('-', 1)[1] |
296 | d.appendVar('RRECOMMENDS_' + pypackage, ' ' + pn + '-' + value) | 296 | d.appendVar('RRECOMMENDS:' + pypackage, ' ' + pn + '-' + value) |
297 | 297 | ||
298 | d.setVar('SUMMARY_' + pypackage, python_manifest[key]['summary']) | 298 | d.setVar('SUMMARY:' + pypackage, python_manifest[key]['summary']) |
299 | 299 | ||
300 | # Prepending so to avoid python-misc getting everything | 300 | # Prepending so to avoid python-misc getting everything |
301 | packages = newpackages + packages | 301 | packages = newpackages + packages |
302 | d.setVar('PACKAGES', ' '.join(packages)) | 302 | d.setVar('PACKAGES', ' '.join(packages)) |
303 | d.setVar('ALLOW_EMPTY_${PN}-modules', '1') | 303 | d.setVar('ALLOW_EMPTY:${PN}-modules', '1') |
304 | d.setVar('ALLOW_EMPTY_${PN}-pkgutil', '1') | 304 | d.setVar('ALLOW_EMPTY:${PN}-pkgutil', '1') |
305 | } | 305 | } |
306 | 306 | ||
307 | # Files needed to create a new manifest | 307 | # Files needed to create a new manifest |
@@ -326,30 +326,30 @@ do_create_manifest() { | |||
326 | addtask do_create_manifest after do_patch do_prepare_recipe_sysroot | 326 | addtask do_create_manifest after do_patch do_prepare_recipe_sysroot |
327 | 327 | ||
328 | # manual dependency additions | 328 | # manual dependency additions |
329 | RRECOMMENDS_${PN}-core_append_class-nativesdk = " nativesdk-python3-modules" | 329 | RRECOMMENDS:${PN}-core:append:class-nativesdk = " nativesdk-python3-modules" |
330 | RRECOMMENDS_${PN}-crypt_append_class-target = " ${MLPREFIX}openssl ${MLPREFIX}ca-certificates" | 330 | RRECOMMENDS:${PN}-crypt:append:class-target = " ${MLPREFIX}openssl ${MLPREFIX}ca-certificates" |
331 | RRECOMMENDS_${PN}-crypt_append_class-nativesdk = " ${MLPREFIX}openssl ${MLPREFIX}ca-certificates" | 331 | RRECOMMENDS:${PN}-crypt:append:class-nativesdk = " ${MLPREFIX}openssl ${MLPREFIX}ca-certificates" |
332 | 332 | ||
333 | # For historical reasons PN is empty and provided by python3-modules | 333 | # For historical reasons PN is empty and provided by python3-modules |
334 | FILES_${PN} = "" | 334 | FILES:${PN} = "" |
335 | RPROVIDES_${PN}-modules = "${PN}" | 335 | RPROVIDES:${PN}-modules = "${PN}" |
336 | 336 | ||
337 | FILES_${PN}-pydoc += "${bindir}/pydoc${PYTHON_MAJMIN} ${bindir}/pydoc3" | 337 | FILES:${PN}-pydoc += "${bindir}/pydoc${PYTHON_MAJMIN} ${bindir}/pydoc3" |
338 | FILES_${PN}-idle += "${bindir}/idle3 ${bindir}/idle${PYTHON_MAJMIN}" | 338 | FILES:${PN}-idle += "${bindir}/idle3 ${bindir}/idle${PYTHON_MAJMIN}" |
339 | 339 | ||
340 | # provide python-pyvenv from python3-venv | 340 | # provide python-pyvenv from python3-venv |
341 | RPROVIDES_${PN}-venv += "${MLPREFIX}python3-pyvenv" | 341 | RPROVIDES:${PN}-venv += "${MLPREFIX}python3-pyvenv" |
342 | 342 | ||
343 | # package libpython3 | 343 | # package libpython3 |
344 | PACKAGES =+ "libpython3 libpython3-staticdev" | 344 | PACKAGES =+ "libpython3 libpython3-staticdev" |
345 | FILES_libpython3 = "${libdir}/libpython*.so.*" | 345 | FILES:libpython3 = "${libdir}/libpython*.so.*" |
346 | FILES_libpython3-staticdev += "${libdir}/python${PYTHON_MAJMIN}/config-${PYTHON_MAJMIN}-*/libpython${PYTHON_MAJMIN}.a" | 346 | FILES:libpython3-staticdev += "${libdir}/python${PYTHON_MAJMIN}/config-${PYTHON_MAJMIN}-*/libpython${PYTHON_MAJMIN}.a" |
347 | INSANE_SKIP_${PN}-dev += "dev-elf" | 347 | INSANE_SKIP:${PN}-dev += "dev-elf" |
348 | INSANE_SKIP_${PN}-ptest = "dev-deps" | 348 | INSANE_SKIP:${PN}-ptest = "dev-deps" |
349 | 349 | ||
350 | # catch all the rest (unsorted) | 350 | # catch all the rest (unsorted) |
351 | PACKAGES += "${PN}-misc" | 351 | PACKAGES += "${PN}-misc" |
352 | RDEPENDS_${PN}-misc += "\ | 352 | RDEPENDS:${PN}-misc += "\ |
353 | ${PN}-core \ | 353 | ${PN}-core \ |
354 | ${PN}-email \ | 354 | ${PN}-email \ |
355 | ${PN}-codecs \ | 355 | ${PN}-codecs \ |
@@ -358,26 +358,26 @@ RDEPENDS_${PN}-misc += "\ | |||
358 | ${PN}-audio \ | 358 | ${PN}-audio \ |
359 | ${PN}-numbers \ | 359 | ${PN}-numbers \ |
360 | " | 360 | " |
361 | RDEPENDS_${PN}-modules_append_class-target = " ${MLPREFIX}python3-misc" | 361 | RDEPENDS:${PN}-modules:append:class-target = " ${MLPREFIX}python3-misc" |
362 | RDEPENDS_${PN}-modules_append_class-nativesdk = " ${MLPREFIX}python3-misc" | 362 | RDEPENDS:${PN}-modules:append:class-nativesdk = " ${MLPREFIX}python3-misc" |
363 | FILES_${PN}-misc = "${libdir}/python${PYTHON_MAJMIN} ${libdir}/python${PYTHON_MAJMIN}/lib-dynload" | 363 | FILES:${PN}-misc = "${libdir}/python${PYTHON_MAJMIN} ${libdir}/python${PYTHON_MAJMIN}/lib-dynload" |
364 | 364 | ||
365 | # catch manpage | 365 | # catch manpage |
366 | PACKAGES += "${PN}-man" | 366 | PACKAGES += "${PN}-man" |
367 | FILES_${PN}-man = "${datadir}/man" | 367 | FILES:${PN}-man = "${datadir}/man" |
368 | 368 | ||
369 | # See https://bugs.python.org/issue18748 and https://bugs.python.org/issue37395 | 369 | # See https://bugs.python.org/issue18748 and https://bugs.python.org/issue37395 |
370 | RDEPENDS_libpython3_append_libc-glibc = " libgcc" | 370 | RDEPENDS:libpython3:append:libc-glibc = " libgcc" |
371 | RDEPENDS_${PN}-ctypes_append_libc-glibc = " ${MLPREFIX}ldconfig" | 371 | RDEPENDS:${PN}-ctypes:append:libc-glibc = " ${MLPREFIX}ldconfig" |
372 | RDEPENDS_${PN}-ptest = "${PN}-modules ${PN}-tests ${PN}-dev unzip bzip2 libgcc tzdata-europe coreutils sed" | 372 | RDEPENDS:${PN}-ptest = "${PN}-modules ${PN}-tests ${PN}-dev unzip bzip2 libgcc tzdata-europe coreutils sed" |
373 | RDEPENDS_${PN}-ptest_append_libc-glibc = " locale-base-tr-tr.iso-8859-9" | 373 | RDEPENDS:${PN}-ptest:append:libc-glibc = " locale-base-tr-tr.iso-8859-9" |
374 | RDEPENDS_${PN}-tkinter += "${@bb.utils.contains('PACKAGECONFIG', 'tk', 'tk tk-lib', '', d)}" | 374 | RDEPENDS:${PN}-tkinter += "${@bb.utils.contains('PACKAGECONFIG', 'tk', 'tk tk-lib', '', d)}" |
375 | RDEPENDS_${PN}-idle += "${@bb.utils.contains('PACKAGECONFIG', 'tk', '${PN}-tkinter tcl', '', d)}" | 375 | RDEPENDS:${PN}-idle += "${@bb.utils.contains('PACKAGECONFIG', 'tk', '${PN}-tkinter tcl', '', d)}" |
376 | RDEPENDS_${PN}-dev = "" | 376 | RDEPENDS:${PN}-dev = "" |
377 | RDEPENDS_${PN}-pydoc += "${PN}-io" | 377 | RDEPENDS:${PN}-pydoc += "${PN}-io" |
378 | 378 | ||
379 | RDEPENDS_${PN}-tests_append_class-target = " ${MLPREFIX}bash" | 379 | RDEPENDS:${PN}-tests:append:class-target = " ${MLPREFIX}bash" |
380 | RDEPENDS_${PN}-tests_append_class-nativesdk = " ${MLPREFIX}bash" | 380 | RDEPENDS:${PN}-tests:append:class-nativesdk = " ${MLPREFIX}bash" |
381 | 381 | ||
382 | # Python's tests contain large numbers of files we don't need in the recipe sysroots | 382 | # Python's tests contain large numbers of files we don't need in the recipe sysroots |
383 | SYSROOT_PREPROCESS_FUNCS += " py3_sysroot_cleanup" | 383 | SYSROOT_PREPROCESS_FUNCS += " py3_sysroot_cleanup" |
diff --git a/meta/recipes-devtools/qemu/nativesdk-qemu-helper_1.0.bb b/meta/recipes-devtools/qemu/nativesdk-qemu-helper_1.0.bb index ca1ad964dc..08c5ca7700 100644 --- a/meta/recipes-devtools/qemu/nativesdk-qemu-helper_1.0.bb +++ b/meta/recipes-devtools/qemu/nativesdk-qemu-helper_1.0.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | SUMMARY = "Qemu helper scripts" | 1 | SUMMARY = "Qemu helper scripts" |
2 | LICENSE = "GPLv2" | 2 | LICENSE = "GPLv2" |
3 | RDEPENDS_${PN} = "nativesdk-qemu \ | 3 | RDEPENDS:${PN} = "nativesdk-qemu \ |
4 | nativesdk-python3-shell nativesdk-python3-fcntl nativesdk-python3-logging \ | 4 | nativesdk-python3-shell nativesdk-python3-fcntl nativesdk-python3-logging \ |
5 | " | 5 | " |
6 | 6 | ||
diff --git a/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb b/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb index 2fc07669dd..ccf1c46783 100644 --- a/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb +++ b/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | SUMMARY = "Helper utilities needed by the runqemu script" | 1 | SUMMARY = "Helper utilities needed by the runqemu script" |
2 | LICENSE = "GPLv2" | 2 | LICENSE = "GPLv2" |
3 | RDEPENDS_${PN} = "qemu-system-native" | 3 | RDEPENDS:${PN} = "qemu-system-native" |
4 | PR = "r1" | 4 | PR = "r1" |
5 | 5 | ||
6 | LIC_FILES_CHKSUM = "file://${WORKDIR}/tunctl.c;endline=4;md5=ff3a09996bc5fff6bc5d4e0b4c28f999" | 6 | LIC_FILES_CHKSUM = "file://${WORKDIR}/tunctl.c;endline=4;md5=ff3a09996bc5fff6bc5d4e0b4c28f999" |
diff --git a/meta/recipes-devtools/qemu/qemu-native.inc b/meta/recipes-devtools/qemu/qemu-native.inc index 54e49d8bc6..5d3ba3486c 100644 --- a/meta/recipes-devtools/qemu/qemu-native.inc +++ b/meta/recipes-devtools/qemu/qemu-native.inc | |||
@@ -2,10 +2,10 @@ require qemu.inc | |||
2 | 2 | ||
3 | inherit native | 3 | inherit native |
4 | 4 | ||
5 | EXTRA_OEMAKE_append = " LD='${LD}' AR='${AR}' OBJCOPY='${OBJCOPY}' LDFLAGS='${LDFLAGS}'" | 5 | EXTRA_OEMAKE:append = " LD='${LD}' AR='${AR}' OBJCOPY='${OBJCOPY}' LDFLAGS='${LDFLAGS}'" |
6 | 6 | ||
7 | LDFLAGS_append = " -fuse-ld=bfd" | 7 | LDFLAGS:append = " -fuse-ld=bfd" |
8 | 8 | ||
9 | do_install_append() { | 9 | do_install:append() { |
10 | ${@bb.utils.contains('PACKAGECONFIG', 'gtk+', 'make_qemu_wrapper', '', d)} | 10 | ${@bb.utils.contains('PACKAGECONFIG', 'gtk+', 'make_qemu_wrapper', '', d)} |
11 | } | 11 | } |
diff --git a/meta/recipes-devtools/qemu/qemu-native_6.0.0.bb b/meta/recipes-devtools/qemu/qemu-native_6.0.0.bb index d23d7a8ada..d9ef155569 100644 --- a/meta/recipes-devtools/qemu/qemu-native_6.0.0.bb +++ b/meta/recipes-devtools/qemu/qemu-native_6.0.0.bb | |||
@@ -4,6 +4,6 @@ DEPENDS = "glib-2.0-native zlib-native" | |||
4 | 4 | ||
5 | require qemu-native.inc | 5 | require qemu-native.inc |
6 | 6 | ||
7 | EXTRA_OECONF_append = " --target-list=${@get_qemu_usermode_target_list(d)} --disable-tools --disable-blobs --disable-guest-agent" | 7 | EXTRA_OECONF:append = " --target-list=${@get_qemu_usermode_target_list(d)} --disable-tools --disable-blobs --disable-guest-agent" |
8 | 8 | ||
9 | PACKAGECONFIG ??= "pie" | 9 | PACKAGECONFIG ??= "pie" |
diff --git a/meta/recipes-devtools/qemu/qemu-system-native_6.0.0.bb b/meta/recipes-devtools/qemu/qemu-system-native_6.0.0.bb index 9d7d0cdceb..1c12eb7cf2 100644 --- a/meta/recipes-devtools/qemu/qemu-system-native_6.0.0.bb +++ b/meta/recipes-devtools/qemu/qemu-system-native_6.0.0.bb | |||
@@ -9,16 +9,16 @@ require qemu-native.inc | |||
9 | # and avoid file clashes | 9 | # and avoid file clashes |
10 | DEPENDS = "glib-2.0-native zlib-native pixman-native qemu-native bison-native" | 10 | DEPENDS = "glib-2.0-native zlib-native pixman-native qemu-native bison-native" |
11 | 11 | ||
12 | EXTRA_OECONF_append = " --target-list=${@get_qemu_system_target_list(d)}" | 12 | EXTRA_OECONF:append = " --target-list=${@get_qemu_system_target_list(d)}" |
13 | 13 | ||
14 | PACKAGECONFIG ??= "fdt alsa kvm pie \ | 14 | PACKAGECONFIG ??= "fdt alsa kvm pie \ |
15 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'virglrenderer glx', '', d)} \ | 15 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'virglrenderer glx', '', d)} \ |
16 | " | 16 | " |
17 | 17 | ||
18 | # Handle distros such as CentOS 5 32-bit that do not have kvm support | 18 | # Handle distros such as CentOS 5 32-bit that do not have kvm support |
19 | PACKAGECONFIG_remove = "${@'kvm' if not os.path.exists('/usr/include/linux/kvm.h') else ''}" | 19 | PACKAGECONFIG:remove = "${@'kvm' if not os.path.exists('/usr/include/linux/kvm.h') else ''}" |
20 | 20 | ||
21 | do_install_append() { | 21 | do_install:append() { |
22 | install -Dm 0755 ${WORKDIR}/powerpc_rom.bin ${D}${datadir}/qemu | 22 | install -Dm 0755 ${WORKDIR}/powerpc_rom.bin ${D}${datadir}/qemu |
23 | 23 | ||
24 | # The following is also installed by qemu-native | 24 | # The following is also installed by qemu-native |
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 33a8baea7f..4de8a9098b 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc | |||
@@ -6,7 +6,7 @@ a variety of guest operating systems" | |||
6 | HOMEPAGE = "http://qemu.org" | 6 | HOMEPAGE = "http://qemu.org" |
7 | LICENSE = "GPLv2 & LGPLv2.1" | 7 | LICENSE = "GPLv2 & LGPLv2.1" |
8 | 8 | ||
9 | RDEPENDS_${PN}-ptest = "bash" | 9 | RDEPENDS:${PN}-ptest = "bash" |
10 | 10 | ||
11 | require qemu-targets.inc | 11 | require qemu-targets.inc |
12 | inherit pkgconfig ptest | 12 | inherit pkgconfig ptest |
@@ -44,8 +44,8 @@ UPSTREAM_CHECK_REGEX = "qemu-(?P<pver>\d+(\.\d+)+)\.tar" | |||
44 | 44 | ||
45 | SRC_URI[sha256sum] = "87bc1a471ca24b97e7005711066007d443423d19aacda3d442558ae032fa30b9" | 45 | SRC_URI[sha256sum] = "87bc1a471ca24b97e7005711066007d443423d19aacda3d442558ae032fa30b9" |
46 | 46 | ||
47 | SRC_URI_append_class-target = " file://cross.patch" | 47 | SRC_URI:append:class-target = " file://cross.patch" |
48 | SRC_URI_append_class-nativesdk = " file://cross.patch" | 48 | SRC_URI:append:class-nativesdk = " file://cross.patch" |
49 | 49 | ||
50 | # Applies against virglrender < 0.6.0 and not qemu itself | 50 | # Applies against virglrender < 0.6.0 and not qemu itself |
51 | CVE_CHECK_WHITELIST += "CVE-2017-5957" | 51 | CVE_CHECK_WHITELIST += "CVE-2017-5957" |
@@ -58,14 +58,14 @@ CVE_CHECK_WHITELIST += "CVE-2007-0998" | |||
58 | # https://bugzilla.redhat.com/show_bug.cgi?id=1609015#c11 | 58 | # https://bugzilla.redhat.com/show_bug.cgi?id=1609015#c11 |
59 | CVE_CHECK_WHITELIST += "CVE-2018-18438" | 59 | CVE_CHECK_WHITELIST += "CVE-2018-18438" |
60 | 60 | ||
61 | COMPATIBLE_HOST_mipsarchn32 = "null" | 61 | COMPATIBLE_HOST:mipsarchn32 = "null" |
62 | COMPATIBLE_HOST_mipsarchn64 = "null" | 62 | COMPATIBLE_HOST:mipsarchn64 = "null" |
63 | 63 | ||
64 | # Per https://lists.nongnu.org/archive/html/qemu-devel/2020-09/msg03873.html | 64 | # Per https://lists.nongnu.org/archive/html/qemu-devel/2020-09/msg03873.html |
65 | # upstream states qemu doesn't work without optimization | 65 | # upstream states qemu doesn't work without optimization |
66 | DEBUG_BUILD = "0" | 66 | DEBUG_BUILD = "0" |
67 | 67 | ||
68 | do_install_append() { | 68 | do_install:append() { |
69 | # Prevent QA warnings about installed ${localstatedir}/run | 69 | # Prevent QA warnings about installed ${localstatedir}/run |
70 | if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi | 70 | if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi |
71 | } | 71 | } |
@@ -112,7 +112,7 @@ B = "${WORKDIR}/build" | |||
112 | 112 | ||
113 | #EXTRA_OECONF_append = " --python=${HOSTTOOLS_DIR}/python3" | 113 | #EXTRA_OECONF_append = " --python=${HOSTTOOLS_DIR}/python3" |
114 | 114 | ||
115 | do_configure_prepend_class-native() { | 115 | do_configure:prepend:class-native() { |
116 | # Append build host pkg-config paths for native target since the host may provide sdl | 116 | # Append build host pkg-config paths for native target since the host may provide sdl |
117 | BHOST_PKGCONFIG_PATH=$(PATH=/usr/bin:/bin pkg-config --variable pc_path pkg-config || echo "") | 117 | BHOST_PKGCONFIG_PATH=$(PATH=/usr/bin:/bin pkg-config --variable pc_path pkg-config || echo "") |
118 | if [ ! -z "$BHOST_PKGCONFIG_PATH" ]; then | 118 | if [ ! -z "$BHOST_PKGCONFIG_PATH" ]; then |
@@ -136,7 +136,7 @@ do_install () { | |||
136 | # This will trigger a MMU access fault in the virtual CPU. With this change, | 136 | # This will trigger a MMU access fault in the virtual CPU. With this change, |
137 | # the qemu-mips works fine. | 137 | # the qemu-mips works fine. |
138 | # IMPORTANT: This piece needs to be removed once the root cause is fixed! | 138 | # IMPORTANT: This piece needs to be removed once the root cause is fixed! |
139 | do_install_append() { | 139 | do_install:append() { |
140 | if [ -e "${D}/${bindir}/qemu-mips" ]; then | 140 | if [ -e "${D}/${bindir}/qemu-mips" ]; then |
141 | create_wrapper ${D}/${bindir}/qemu-mips \ | 141 | create_wrapper ${D}/${bindir}/qemu-mips \ |
142 | QEMU_RESERVED_VA=0x0 | 142 | QEMU_RESERVED_VA=0x0 |
@@ -156,8 +156,8 @@ make_qemu_wrapper() { | |||
156 | } | 156 | } |
157 | 157 | ||
158 | # Disable kvm/virgl/mesa on targets that do not support it | 158 | # Disable kvm/virgl/mesa on targets that do not support it |
159 | PACKAGECONFIG_remove_darwin = "kvm virglrenderer glx gtk+" | 159 | PACKAGECONFIG:remove:darwin = "kvm virglrenderer glx gtk+" |
160 | PACKAGECONFIG_remove_mingw32 = "kvm virglrenderer glx gtk+" | 160 | PACKAGECONFIG:remove:mingw32 = "kvm virglrenderer glx gtk+" |
161 | 161 | ||
162 | PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,libsdl2" | 162 | PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,libsdl2" |
163 | PACKAGECONFIG[virtfs] = "--enable-virtfs --enable-attr --enable-cap-ng,--disable-virtfs,libcap-ng attr," | 163 | PACKAGECONFIG[virtfs] = "--enable-virtfs --enable-attr --enable-cap-ng,--disable-virtfs,libcap-ng attr," |
@@ -203,6 +203,6 @@ PACKAGECONFIG[ust] = "--enable-trace-backend=ust,--enable-trace-backend=nop,lttn | |||
203 | PACKAGECONFIG[pie] = "--enable-pie,--disable-pie,," | 203 | PACKAGECONFIG[pie] = "--enable-pie,--disable-pie,," |
204 | PACKAGECONFIG[seccomp] = "--enable-seccomp,--disable-seccomp,libseccomp" | 204 | PACKAGECONFIG[seccomp] = "--enable-seccomp,--disable-seccomp,libseccomp" |
205 | 205 | ||
206 | INSANE_SKIP_${PN} = "arch" | 206 | INSANE_SKIP:${PN} = "arch" |
207 | 207 | ||
208 | FILES_${PN} += "${datadir}/icons" | 208 | FILES:${PN} += "${datadir}/icons" |
diff --git a/meta/recipes-devtools/qemu/qemu_6.0.0.bb b/meta/recipes-devtools/qemu/qemu_6.0.0.bb index 90b135a617..f8a816b12b 100644 --- a/meta/recipes-devtools/qemu/qemu_6.0.0.bb +++ b/meta/recipes-devtools/qemu/qemu_6.0.0.bb | |||
@@ -4,17 +4,17 @@ require qemu.inc | |||
4 | 4 | ||
5 | # error: a parameter list without types is only allowed in a function definition | 5 | # error: a parameter list without types is only allowed in a function definition |
6 | # void (*_function)(sigval_t); | 6 | # void (*_function)(sigval_t); |
7 | COMPATIBLE_HOST_libc-musl = 'null' | 7 | COMPATIBLE_HOST:libc-musl = 'null' |
8 | 8 | ||
9 | DEPENDS = "glib-2.0 zlib pixman bison-native ninja-native meson-native" | 9 | DEPENDS = "glib-2.0 zlib pixman bison-native ninja-native meson-native" |
10 | 10 | ||
11 | RDEPENDS_${PN}_class-target += "bash" | 11 | RDEPENDS:${PN}:class-target += "bash" |
12 | 12 | ||
13 | EXTRA_OECONF_append_class-target = " --target-list=${@get_qemu_target_list(d)}" | 13 | EXTRA_OECONF:append:class-target = " --target-list=${@get_qemu_target_list(d)}" |
14 | EXTRA_OECONF_append_class-target_mipsarcho32 = "${@bb.utils.contains('BBEXTENDCURR', 'multilib', ' --disable-capstone', '', d)}" | 14 | EXTRA_OECONF:append:class-target:mipsarcho32 = "${@bb.utils.contains('BBEXTENDCURR', 'multilib', ' --disable-capstone', '', d)}" |
15 | EXTRA_OECONF_append_class-nativesdk = " --target-list=${@get_qemu_target_list(d)}" | 15 | EXTRA_OECONF:append:class-nativesdk = " --target-list=${@get_qemu_target_list(d)}" |
16 | 16 | ||
17 | do_install_append_class-nativesdk() { | 17 | do_install:append:class-nativesdk() { |
18 | ${@bb.utils.contains('PACKAGECONFIG', 'gtk+', 'make_qemu_wrapper', '', d)} | 18 | ${@bb.utils.contains('PACKAGECONFIG', 'gtk+', 'make_qemu_wrapper', '', d)} |
19 | } | 19 | } |
20 | 20 | ||
@@ -24,6 +24,6 @@ PACKAGECONFIG ??= " \ | |||
24 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'virglrenderer glx', '', d)} \ | 24 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'virglrenderer glx', '', d)} \ |
25 | ${@bb.utils.filter('DISTRO_FEATURES', 'seccomp', d)} \ | 25 | ${@bb.utils.filter('DISTRO_FEATURES', 'seccomp', d)} \ |
26 | " | 26 | " |
27 | PACKAGECONFIG_class-nativesdk ??= "fdt sdl kvm pie \ | 27 | PACKAGECONFIG:class-nativesdk ??= "fdt sdl kvm pie \ |
28 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'virglrenderer glx', '', d)} \ | 28 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'virglrenderer glx', '', d)} \ |
29 | " | 29 | " |
diff --git a/meta/recipes-devtools/quilt/quilt.inc b/meta/recipes-devtools/quilt/quilt.inc index d7ecda7aaa..f85de384d2 100644 --- a/meta/recipes-devtools/quilt/quilt.inc +++ b/meta/recipes-devtools/quilt/quilt.inc | |||
@@ -14,36 +14,36 @@ SRC_URI = "${SAVANNAH_GNU_MIRROR}/quilt/quilt-${PV}.tar.gz \ | |||
14 | file://0001-tests-Allow-different-output-from-mv.patch \ | 14 | file://0001-tests-Allow-different-output-from-mv.patch \ |
15 | " | 15 | " |
16 | 16 | ||
17 | SRC_URI_append_class-target = " file://gnu_patch_test_fix_target.patch" | 17 | SRC_URI:append:class-target = " file://gnu_patch_test_fix_target.patch" |
18 | 18 | ||
19 | SRC_URI[md5sum] = "6800c2404a2c0598ab2eff92a636ba70" | 19 | SRC_URI[md5sum] = "6800c2404a2c0598ab2eff92a636ba70" |
20 | SRC_URI[sha256sum] = "314b319a6feb13bf9d0f9ffa7ce6683b06919e734a41275087ea457cc9dc6e07" | 20 | SRC_URI[sha256sum] = "314b319a6feb13bf9d0f9ffa7ce6683b06919e734a41275087ea457cc9dc6e07" |
21 | 21 | ||
22 | inherit autotools-brokensep ptest | 22 | inherit autotools-brokensep ptest |
23 | 23 | ||
24 | INHIBIT_AUTOTOOLS_DEPS_class-native = "1" | 24 | INHIBIT_AUTOTOOLS_DEPS:class-native = "1" |
25 | PATCHTOOL_class-native = "patch" | 25 | PATCHTOOL:class-native = "patch" |
26 | 26 | ||
27 | CLEANBROKEN = "1" | 27 | CLEANBROKEN = "1" |
28 | 28 | ||
29 | EXTRA_OECONF = "--with-perl='${USRBINPATH}/env perl' --with-patch=patch" | 29 | EXTRA_OECONF = "--with-perl='${USRBINPATH}/env perl' --with-patch=patch" |
30 | EXTRA_OECONF_append_class-native = " --disable-nls" | 30 | EXTRA_OECONF:append:class-native = " --disable-nls" |
31 | EXTRA_AUTORECONF += "--exclude=aclocal" | 31 | EXTRA_AUTORECONF += "--exclude=aclocal" |
32 | 32 | ||
33 | CACHED_CONFIGUREVARS += "ac_cv_path_BASH=/bin/bash ac_cv_path_COLUMN=column" | 33 | CACHED_CONFIGUREVARS += "ac_cv_path_BASH=/bin/bash ac_cv_path_COLUMN=column" |
34 | 34 | ||
35 | # Make sure we don't have "-w" in shebang lines: it breaks using | 35 | # Make sure we don't have "-w" in shebang lines: it breaks using |
36 | # "/usr/bin/env perl" as parser | 36 | # "/usr/bin/env perl" as parser |
37 | do_configure_prepend () { | 37 | do_configure:prepend () { |
38 | find ${S} -name "*.in" -exec sed -i -e "1s,^#\!.*@PERL@ -w$,#\! @PERL@\nuse warnings;," {} \; | 38 | find ${S} -name "*.in" -exec sed -i -e "1s,^#\!.*@PERL@ -w$,#\! @PERL@\nuse warnings;," {} \; |
39 | } | 39 | } |
40 | 40 | ||
41 | # Don't setup symlinks to host utilities, we don't need them | 41 | # Don't setup symlinks to host utilities, we don't need them |
42 | do_configure_append () { | 42 | do_configure:append () { |
43 | sed -e 's,^COMPAT_SYMLINKS.*:=.*,COMPAT_SYMLINKS :=,' -i ${S}/Makefile | 43 | sed -e 's,^COMPAT_SYMLINKS.*:=.*,COMPAT_SYMLINKS :=,' -i ${S}/Makefile |
44 | } | 44 | } |
45 | 45 | ||
46 | do_configure_class-native () { | 46 | do_configure:class-native () { |
47 | oe_runconf | 47 | oe_runconf |
48 | } | 48 | } |
49 | 49 | ||
@@ -54,7 +54,7 @@ do_install () { | |||
54 | rm -rf ${D}/${datadir}/emacs | 54 | rm -rf ${D}/${datadir}/emacs |
55 | } | 55 | } |
56 | 56 | ||
57 | do_install_append_class-native () { | 57 | do_install:append:class-native () { |
58 | # Dummy quiltrc file for patch.bbclass | 58 | # Dummy quiltrc file for patch.bbclass |
59 | install -d ${D}${sysconfdir}/ | 59 | install -d ${D}${sysconfdir}/ |
60 | touch ${D}${sysconfdir}/quiltrc | 60 | touch ${D}${sysconfdir}/quiltrc |
@@ -75,16 +75,16 @@ do_install_ptest() { | |||
75 | 75 | ||
76 | PACKAGES += "guards guards-doc" | 76 | PACKAGES += "guards guards-doc" |
77 | 77 | ||
78 | FILES_${PN} = "${sysconfdir} ${datadir}/quilt \ | 78 | FILES:${PN} = "${sysconfdir} ${datadir}/quilt \ |
79 | ${bindir}/quilt ${libdir}/quilt" | 79 | ${bindir}/quilt ${libdir}/quilt" |
80 | FILES_guards = "${bindir}/guards" | 80 | FILES:guards = "${bindir}/guards" |
81 | FILES_${PN}-doc = "${mandir}/man1/quilt.1 ${docdir}/${BPN}" | 81 | FILES:${PN}-doc = "${mandir}/man1/quilt.1 ${docdir}/${BPN}" |
82 | FILES_guards-doc = "${mandir}/man1/guards.1" | 82 | FILES:guards-doc = "${mandir}/man1/guards.1" |
83 | 83 | ||
84 | RDEPENDS_${PN} = "bash patch diffstat bzip2 util-linux less" | 84 | RDEPENDS:${PN} = "bash patch diffstat bzip2 util-linux less" |
85 | RDEPENDS_${PN}_class-native = "diffstat-native patch-native bzip2-native" | 85 | RDEPENDS:${PN}:class-native = "diffstat-native patch-native bzip2-native" |
86 | 86 | ||
87 | RDEPENDS_${PN}-ptest = "make file sed gawk diffutils findutils ed perl \ | 87 | RDEPENDS:${PN}-ptest = "make file sed gawk diffutils findutils ed perl \ |
88 | perl-module-filehandle perl-module-getopt-std \ | 88 | perl-module-filehandle perl-module-getopt-std \ |
89 | perl-module-posix perl-module-file-temp \ | 89 | perl-module-posix perl-module-file-temp \ |
90 | perl-module-text-parsewords perl-module-overloading \ | 90 | perl-module-text-parsewords perl-module-overloading \ |
diff --git a/meta/recipes-devtools/rpm/rpm_4.16.1.3.bb b/meta/recipes-devtools/rpm/rpm_4.16.1.3.bb index 95a6f5cf71..9cb8f551a2 100644 --- a/meta/recipes-devtools/rpm/rpm_4.16.1.3.bb +++ b/meta/recipes-devtools/rpm/rpm_4.16.1.3.bb | |||
@@ -5,16 +5,16 @@ verifying, querying, and updating software packages. Each software \ | |||
5 | package consists of an archive of files along with information about \ | 5 | package consists of an archive of files along with information about \ |
6 | the package like its version, a description, etc." | 6 | the package like its version, a description, etc." |
7 | 7 | ||
8 | SUMMARY_${PN}-dev = "Development files for manipulating RPM packages" | 8 | SUMMARY:${PN}-dev = "Development files for manipulating RPM packages" |
9 | DESCRIPTION_${PN}-dev = "This package contains the RPM C library and header files. These \ | 9 | DESCRIPTION:${PN}-dev = "This package contains the RPM C library and header files. These \ |
10 | development files will simplify the process of writing programs that \ | 10 | development files will simplify the process of writing programs that \ |
11 | manipulate RPM packages and databases. These files are intended to \ | 11 | manipulate RPM packages and databases. These files are intended to \ |
12 | simplify the process of creating graphical package managers or any \ | 12 | simplify the process of creating graphical package managers or any \ |
13 | other tools that need an intimate knowledge of RPM packages in order \ | 13 | other tools that need an intimate knowledge of RPM packages in order \ |
14 | to function." | 14 | to function." |
15 | 15 | ||
16 | SUMMARY_python3-rpm = "Python bindings for apps which will manupulate RPM packages" | 16 | SUMMARY:python3-rpm = "Python bindings for apps which will manupulate RPM packages" |
17 | DESCRIPTION_python3-rpm = "The python3-rpm package contains a module that permits applications \ | 17 | DESCRIPTION:python3-rpm = "The python3-rpm package contains a module that permits applications \ |
18 | written in the Python programming language to use the interface \ | 18 | written in the Python programming language to use the interface \ |
19 | supplied by the RPM Package Manager libraries." | 19 | supplied by the RPM Package Manager libraries." |
20 | 20 | ||
@@ -48,7 +48,7 @@ SRCREV = "3659b8a04f5b8bacf6535e0124e7fe23f15286bd" | |||
48 | S = "${WORKDIR}/git" | 48 | S = "${WORKDIR}/git" |
49 | 49 | ||
50 | DEPENDS = "libgcrypt file popt xz bzip2 elfutils python3" | 50 | DEPENDS = "libgcrypt file popt xz bzip2 elfutils python3" |
51 | DEPENDS_append_class-native = " file-replacement-native bzip2-replacement-native" | 51 | DEPENDS:append:class-native = " file-replacement-native bzip2-replacement-native" |
52 | 52 | ||
53 | inherit autotools gettext pkgconfig python3native | 53 | inherit autotools gettext pkgconfig python3native |
54 | export PYTHON_ABI | 54 | export PYTHON_ABI |
@@ -56,24 +56,24 @@ export PYTHON_ABI | |||
56 | AUTOTOOLS_AUXDIR = "${S}/build-aux" | 56 | AUTOTOOLS_AUXDIR = "${S}/build-aux" |
57 | 57 | ||
58 | # OE-core patches autoreconf to additionally run gnu-configize, which fails with this recipe | 58 | # OE-core patches autoreconf to additionally run gnu-configize, which fails with this recipe |
59 | EXTRA_AUTORECONF_append = " --exclude=gnu-configize" | 59 | EXTRA_AUTORECONF:append = " --exclude=gnu-configize" |
60 | 60 | ||
61 | EXTRA_OECONF_append = " --without-lua --enable-python --with-crypto=libgcrypt" | 61 | EXTRA_OECONF:append = " --without-lua --enable-python --with-crypto=libgcrypt" |
62 | EXTRA_OECONF_append_libc-musl = " --disable-nls --disable-openmp" | 62 | EXTRA_OECONF:append:libc-musl = " --disable-nls --disable-openmp" |
63 | 63 | ||
64 | # --sysconfdir prevents rpm from attempting to access machine-specific configuration in sysroot/etc; we need to have it in rootfs | 64 | # --sysconfdir prevents rpm from attempting to access machine-specific configuration in sysroot/etc; we need to have it in rootfs |
65 | # --localstatedir prevents rpm from writing its database to native sysroot when building images | 65 | # --localstatedir prevents rpm from writing its database to native sysroot when building images |
66 | # Forcibly disable plugins for native/nativesdk, as the inhibit and prioreset | 66 | # Forcibly disable plugins for native/nativesdk, as the inhibit and prioreset |
67 | # plugins both behave badly inside builds. | 67 | # plugins both behave badly inside builds. |
68 | EXTRA_OECONF_append_class-native = " --sysconfdir=/etc --localstatedir=/var --disable-plugins" | 68 | EXTRA_OECONF:append:class-native = " --sysconfdir=/etc --localstatedir=/var --disable-plugins" |
69 | EXTRA_OECONF_append_class-nativesdk = " --sysconfdir=/etc --disable-plugins" | 69 | EXTRA_OECONF:append:class-nativesdk = " --sysconfdir=/etc --disable-plugins" |
70 | 70 | ||
71 | BBCLASSEXTEND = "native nativesdk" | 71 | BBCLASSEXTEND = "native nativesdk" |
72 | 72 | ||
73 | PACKAGECONFIG ??= "bdb ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'inhibit', '', d)}" | 73 | PACKAGECONFIG ??= "bdb ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'inhibit', '', d)}" |
74 | # The inhibit plugin serves no purpose outside of the target | 74 | # The inhibit plugin serves no purpose outside of the target |
75 | PACKAGECONFIG_remove_class-native = "inhibit" | 75 | PACKAGECONFIG:remove:class-native = "inhibit" |
76 | PACKAGECONFIG_remove_class-nativesdk = "inhibit" | 76 | PACKAGECONFIG:remove:class-nativesdk = "inhibit" |
77 | 77 | ||
78 | PACKAGECONFIG[bdb] = "--enable-bdb,--disable-bdb,db" | 78 | PACKAGECONFIG[bdb] = "--enable-bdb,--disable-bdb,db" |
79 | PACKAGECONFIG[imaevm] = "--with-imaevm,,ima-evm-utils" | 79 | PACKAGECONFIG[imaevm] = "--with-imaevm,,ima-evm-utils" |
@@ -98,11 +98,11 @@ WRAPPER_TOOLS = " \ | |||
98 | ${libdir}/rpm/rpmdeps \ | 98 | ${libdir}/rpm/rpmdeps \ |
99 | " | 99 | " |
100 | 100 | ||
101 | do_configure_prepend() { | 101 | do_configure:prepend() { |
102 | mkdir -p ${S}/build-aux | 102 | mkdir -p ${S}/build-aux |
103 | } | 103 | } |
104 | 104 | ||
105 | do_install_append_class-native() { | 105 | do_install:append:class-native() { |
106 | for tool in ${WRAPPER_TOOLS}; do | 106 | for tool in ${WRAPPER_TOOLS}; do |
107 | test -x ${D}$tool && create_wrapper ${D}$tool \ | 107 | test -x ${D}$tool && create_wrapper ${D}$tool \ |
108 | RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm \ | 108 | RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm \ |
@@ -112,7 +112,7 @@ do_install_append_class-native() { | |||
112 | done | 112 | done |
113 | } | 113 | } |
114 | 114 | ||
115 | do_install_append_class-nativesdk() { | 115 | do_install:append:class-nativesdk() { |
116 | for tool in ${WRAPPER_TOOLS}; do | 116 | for tool in ${WRAPPER_TOOLS}; do |
117 | test -x ${D}$tool && create_wrapper ${D}$tool \ | 117 | test -x ${D}$tool && create_wrapper ${D}$tool \ |
118 | RPM_CONFIGDIR='`dirname $''realpath`'/${@os.path.relpath(d.getVar('libdir'), d.getVar('bindir'))}/rpm \ | 118 | RPM_CONFIGDIR='`dirname $''realpath`'/${@os.path.relpath(d.getVar('libdir'), d.getVar('bindir'))}/rpm \ |
@@ -128,11 +128,11 @@ do_install_append_class-nativesdk() { | |||
128 | } | 128 | } |
129 | 129 | ||
130 | # Rpm's make install creates var/tmp which clashes with base-files packaging | 130 | # Rpm's make install creates var/tmp which clashes with base-files packaging |
131 | do_install_append_class-target() { | 131 | do_install:append:class-target() { |
132 | rm -rf ${D}/var | 132 | rm -rf ${D}/var |
133 | } | 133 | } |
134 | 134 | ||
135 | do_install_append () { | 135 | do_install:append () { |
136 | sed -i -e 's:${HOSTTOOLS_DIR}/::g' \ | 136 | sed -i -e 's:${HOSTTOOLS_DIR}/::g' \ |
137 | ${D}/${libdir}/rpm/macros | 137 | ${D}/${libdir}/rpm/macros |
138 | 138 | ||
@@ -140,17 +140,17 @@ do_install_append () { | |||
140 | ${D}${libdir}/rpm/pythondistdeps.py | 140 | ${D}${libdir}/rpm/pythondistdeps.py |
141 | } | 141 | } |
142 | 142 | ||
143 | FILES_${PN} += "${libdir}/rpm-plugins/*.so \ | 143 | FILES:${PN} += "${libdir}/rpm-plugins/*.so \ |
144 | " | 144 | " |
145 | FILES_${PN}_append_class-nativesdk = " ${SDKPATHNATIVE}/environment-setup.d/rpm.sh" | 145 | FILES:${PN}:append:class-nativesdk = " ${SDKPATHNATIVE}/environment-setup.d/rpm.sh" |
146 | 146 | ||
147 | FILES_${PN}-dev += "${libdir}/rpm-plugins/*.la \ | 147 | FILES:${PN}-dev += "${libdir}/rpm-plugins/*.la \ |
148 | " | 148 | " |
149 | PACKAGE_BEFORE_PN += "${PN}-build ${PN}-sign ${PN}-archive" | 149 | PACKAGE_BEFORE_PN += "${PN}-build ${PN}-sign ${PN}-archive" |
150 | 150 | ||
151 | RRECOMMENDS_${PN} += "rpm-build rpm-sign rpm-archive" | 151 | RRECOMMENDS:${PN} += "rpm-build rpm-sign rpm-archive" |
152 | 152 | ||
153 | FILES_${PN}-build = "\ | 153 | FILES:${PN}-build = "\ |
154 | ${bindir}/rpmbuild \ | 154 | ${bindir}/rpmbuild \ |
155 | ${bindir}/gendiff \ | 155 | ${bindir}/gendiff \ |
156 | ${bindir}/rpmspec \ | 156 | ${bindir}/rpmspec \ |
@@ -172,20 +172,20 @@ FILES_${PN}-build = "\ | |||
172 | ${libdir}/rpm/fileattrs/* \ | 172 | ${libdir}/rpm/fileattrs/* \ |
173 | " | 173 | " |
174 | 174 | ||
175 | FILES_${PN}-sign = "\ | 175 | FILES:${PN}-sign = "\ |
176 | ${bindir}/rpmsign \ | 176 | ${bindir}/rpmsign \ |
177 | ${libdir}/librpmsign.so.* \ | 177 | ${libdir}/librpmsign.so.* \ |
178 | " | 178 | " |
179 | 179 | ||
180 | FILES_${PN}-archive = "\ | 180 | FILES:${PN}-archive = "\ |
181 | ${bindir}/rpm2archive \ | 181 | ${bindir}/rpm2archive \ |
182 | " | 182 | " |
183 | 183 | ||
184 | PACKAGES += "python3-rpm" | 184 | PACKAGES += "python3-rpm" |
185 | PROVIDES += "python3-rpm" | 185 | PROVIDES += "python3-rpm" |
186 | FILES_python3-rpm = "${PYTHON_SITEPACKAGES_DIR}/rpm/*" | 186 | FILES:python3-rpm = "${PYTHON_SITEPACKAGES_DIR}/rpm/*" |
187 | 187 | ||
188 | RDEPENDS_${PN}-build = "bash perl python3-core" | 188 | RDEPENDS:${PN}-build = "bash perl python3-core" |
189 | 189 | ||
190 | PACKAGE_PREPROCESS_FUNCS += "rpm_package_preprocess" | 190 | PACKAGE_PREPROCESS_FUNCS += "rpm_package_preprocess" |
191 | 191 | ||
diff --git a/meta/recipes-devtools/rsync/rsync_3.2.3.bb b/meta/recipes-devtools/rsync/rsync_3.2.3.bb index cb18667755..b6d07726d1 100644 --- a/meta/recipes-devtools/rsync/rsync_3.2.3.bb +++ b/meta/recipes-devtools/rsync/rsync_3.2.3.bb | |||
@@ -45,15 +45,15 @@ EXTRA_OECONF = "--disable-simd --disable-md2man --disable-asm --with-nobody-grou | |||
45 | 45 | ||
46 | # rsync 3.0 uses configure.sh instead of configure, and | 46 | # rsync 3.0 uses configure.sh instead of configure, and |
47 | # makefile checks the existence of configure.sh | 47 | # makefile checks the existence of configure.sh |
48 | do_configure_prepend () { | 48 | do_configure:prepend () { |
49 | rm -f ${S}/configure ${S}/configure.sh | 49 | rm -f ${S}/configure ${S}/configure.sh |
50 | } | 50 | } |
51 | 51 | ||
52 | do_configure_append () { | 52 | do_configure:append () { |
53 | cp -f ${S}/configure ${S}/configure.sh | 53 | cp -f ${S}/configure ${S}/configure.sh |
54 | } | 54 | } |
55 | 55 | ||
56 | do_install_append() { | 56 | do_install:append() { |
57 | install -d ${D}${sysconfdir} | 57 | install -d ${D}${sysconfdir} |
58 | install -m 0644 ${WORKDIR}/rsyncd.conf ${D}${sysconfdir} | 58 | install -m 0644 ${WORKDIR}/rsyncd.conf ${D}${sysconfdir} |
59 | } | 59 | } |
diff --git a/meta/recipes-devtools/ruby/ruby.inc b/meta/recipes-devtools/ruby/ruby.inc index 1cede8d47c..c953a27042 100644 --- a/meta/recipes-devtools/ruby/ruby.inc +++ b/meta/recipes-devtools/ruby/ruby.inc | |||
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=5b8c87559868796979806100db3f3805 \ | |||
14 | " | 14 | " |
15 | 15 | ||
16 | DEPENDS = "ruby-native zlib openssl libyaml gdbm readline libffi" | 16 | DEPENDS = "ruby-native zlib openssl libyaml gdbm readline libffi" |
17 | DEPENDS_class-native = "openssl-native libyaml-native readline-native zlib-native" | 17 | DEPENDS:class-native = "openssl-native libyaml-native readline-native zlib-native" |
18 | 18 | ||
19 | SHRT_VER = "${@oe.utils.trim_version("${PV}", 2)}" | 19 | SHRT_VER = "${@oe.utils.trim_version("${PV}", 2)}" |
20 | SRC_URI = "http://cache.ruby-lang.org/pub/ruby/${SHRT_VER}/ruby-${PV}.tar.gz \ | 20 | SRC_URI = "http://cache.ruby-lang.org/pub/ruby/${SHRT_VER}/ruby-${PV}.tar.gz \ |
@@ -33,7 +33,7 @@ inherit autotools ptest | |||
33 | # that the libraries aren't available and hence that the extension can't be | 33 | # that the libraries aren't available and hence that the extension can't be |
34 | # built. | 34 | # built. |
35 | 35 | ||
36 | do_configure_prepend() { | 36 | do_configure:prepend() { |
37 | sed -i "s#%%TARGET_CFLAGS%%#$CFLAGS#; s#%%TARGET_LDFLAGS%%#$LDFLAGS#" ${S}/common.mk | 37 | sed -i "s#%%TARGET_CFLAGS%%#$CFLAGS#; s#%%TARGET_LDFLAGS%%#$LDFLAGS#" ${S}/common.mk |
38 | rm -rf ${S}/ruby/ | 38 | rm -rf ${S}/ruby/ |
39 | } | 39 | } |
diff --git a/meta/recipes-devtools/ruby/ruby_3.0.2.bb b/meta/recipes-devtools/ruby/ruby_3.0.2.bb index f88e874c7b..a082735574 100644 --- a/meta/recipes-devtools/ruby/ruby_3.0.2.bb +++ b/meta/recipes-devtools/ruby/ruby_3.0.2.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | require ruby.inc | 1 | require ruby.inc |
2 | 2 | ||
3 | DEPENDS_append_libc-musl = " libucontext" | 3 | DEPENDS:append:libc-musl = " libucontext" |
4 | 4 | ||
5 | SRC_URI += " \ | 5 | SRC_URI += " \ |
6 | file://remove_has_include_macros.patch \ | 6 | file://remove_has_include_macros.patch \ |
@@ -26,16 +26,16 @@ EXTRA_OECONF = "\ | |||
26 | --with-pkg-config=pkg-config \ | 26 | --with-pkg-config=pkg-config \ |
27 | " | 27 | " |
28 | 28 | ||
29 | EXTRA_OECONF_append_libc-musl = "\ | 29 | EXTRA_OECONF:append:libc-musl = "\ |
30 | LIBS='-lucontext' \ | 30 | LIBS='-lucontext' \ |
31 | ac_cv_func_isnan=yes \ | 31 | ac_cv_func_isnan=yes \ |
32 | ac_cv_func_isinf=yes \ | 32 | ac_cv_func_isinf=yes \ |
33 | " | 33 | " |
34 | 34 | ||
35 | EXTRA_OECONF_append_libc-musl_riscv64 = "\ | 35 | EXTRA_OECONF:append:libc-musl:riscv64 = "\ |
36 | --with-coroutine=copy \ | 36 | --with-coroutine=copy \ |
37 | " | 37 | " |
38 | EXTRA_OECONF_append_libc-musl_riscv32 = "\ | 38 | EXTRA_OECONF:append:libc-musl:riscv32 = "\ |
39 | --with-coroutine=copy \ | 39 | --with-coroutine=copy \ |
40 | " | 40 | " |
41 | 41 | ||
@@ -43,7 +43,7 @@ do_install() { | |||
43 | oe_runmake 'DESTDIR=${D}' install | 43 | oe_runmake 'DESTDIR=${D}' install |
44 | } | 44 | } |
45 | 45 | ||
46 | do_install_append_class-target () { | 46 | do_install:append:class-target () { |
47 | # Find out rbconfig.rb from .installed.list | 47 | # Find out rbconfig.rb from .installed.list |
48 | rbconfig_rb=`grep rbconfig.rb ${B}/.installed.list` | 48 | rbconfig_rb=`grep rbconfig.rb ${B}/.installed.list` |
49 | # Remove build host directories | 49 | # Remove build host directories |
@@ -80,17 +80,17 @@ do_install_ptest () { | |||
80 | 80 | ||
81 | PACKAGES =+ "${PN}-ri-docs ${PN}-rdoc" | 81 | PACKAGES =+ "${PN}-ri-docs ${PN}-rdoc" |
82 | 82 | ||
83 | SUMMARY_${PN}-ri-docs = "ri (Ruby Interactive) documentation for the Ruby standard library" | 83 | SUMMARY:${PN}-ri-docs = "ri (Ruby Interactive) documentation for the Ruby standard library" |
84 | RDEPENDS_${PN}-ri-docs = "${PN}" | 84 | RDEPENDS:${PN}-ri-docs = "${PN}" |
85 | FILES_${PN}-ri-docs += "${datadir}/ri" | 85 | FILES:${PN}-ri-docs += "${datadir}/ri" |
86 | 86 | ||
87 | SUMMARY_${PN}-rdoc = "RDoc documentation generator from Ruby source" | 87 | SUMMARY:${PN}-rdoc = "RDoc documentation generator from Ruby source" |
88 | RDEPENDS_${PN}-rdoc = "${PN}" | 88 | RDEPENDS:${PN}-rdoc = "${PN}" |
89 | FILES_${PN}-rdoc += "${libdir}/ruby/*/rdoc ${bindir}/rdoc" | 89 | FILES:${PN}-rdoc += "${libdir}/ruby/*/rdoc ${bindir}/rdoc" |
90 | 90 | ||
91 | FILES_${PN} += "${datadir}/rubygems" | 91 | FILES:${PN} += "${datadir}/rubygems" |
92 | 92 | ||
93 | FILES_${PN}-ptest_append_class-target = "\ | 93 | FILES:${PN}-ptest:append:class-target = "\ |
94 | ${libdir}/ruby/include \ | 94 | ${libdir}/ruby/include \ |
95 | ${libdir}/ruby/${SHRT_VER}.0/*/-test- \ | 95 | ${libdir}/ruby/${SHRT_VER}.0/*/-test- \ |
96 | " | 96 | " |
diff --git a/meta/recipes-devtools/run-postinsts/run-postinsts_1.0.bb b/meta/recipes-devtools/run-postinsts/run-postinsts_1.0.bb index c353d4b79c..deddf11f4f 100644 --- a/meta/recipes-devtools/run-postinsts/run-postinsts_1.0.bb +++ b/meta/recipes-devtools/run-postinsts/run-postinsts_1.0.bb | |||
@@ -16,7 +16,7 @@ inherit allarch systemd update-rc.d | |||
16 | INITSCRIPT_NAME = "run-postinsts" | 16 | INITSCRIPT_NAME = "run-postinsts" |
17 | INITSCRIPT_PARAMS = "start 99 S ." | 17 | INITSCRIPT_PARAMS = "start 99 S ." |
18 | 18 | ||
19 | SYSTEMD_SERVICE_${PN} = "run-postinsts.service" | 19 | SYSTEMD_SERVICE:${PN} = "run-postinsts.service" |
20 | 20 | ||
21 | do_configure() { | 21 | do_configure() { |
22 | : | 22 | : |
diff --git a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb b/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb index 137e5097fa..1a9e8f108b 100644 --- a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb +++ b/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb | |||
@@ -37,9 +37,9 @@ do_install() { | |||
37 | install -m 0644 "${S}"/squashfs_fs.h "${D}${includedir}" | 37 | install -m 0644 "${S}"/squashfs_fs.h "${D}${includedir}" |
38 | } | 38 | } |
39 | 39 | ||
40 | ARM_INSTRUCTION_SET_armv4 = "arm" | 40 | ARM_INSTRUCTION_SET:armv4 = "arm" |
41 | ARM_INSTRUCTION_SET_armv5 = "arm" | 41 | ARM_INSTRUCTION_SET:armv5 = "arm" |
42 | ARM_INSTRUCTION_SET_armv6 = "arm" | 42 | ARM_INSTRUCTION_SET:armv6 = "arm" |
43 | 43 | ||
44 | BBCLASSEXTEND = "native nativesdk" | 44 | BBCLASSEXTEND = "native nativesdk" |
45 | 45 | ||
diff --git a/meta/recipes-devtools/strace/strace_5.12.bb b/meta/recipes-devtools/strace/strace_5.12.bb index 6a8996535b..24021f866d 100644 --- a/meta/recipes-devtools/strace/strace_5.12.bb +++ b/meta/recipes-devtools/strace/strace_5.12.bb | |||
@@ -19,7 +19,7 @@ SRC_URI[sha256sum] = "29171edf9d252f89c988a4c340dfdec662f458cb8c63d85431d64bab59 | |||
19 | 19 | ||
20 | inherit autotools ptest | 20 | inherit autotools ptest |
21 | 21 | ||
22 | PACKAGECONFIG_class-target ??= "\ | 22 | PACKAGECONFIG:class-target ??= "\ |
23 | ${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)} \ | 23 | ${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)} \ |
24 | " | 24 | " |
25 | 25 | ||
@@ -28,7 +28,7 @@ PACKAGECONFIG[libunwind] = "--with-libunwind,--without-libunwind,libunwind" | |||
28 | 28 | ||
29 | EXTRA_OECONF += "--enable-mpers=no --disable-gcc-Werror" | 29 | EXTRA_OECONF += "--enable-mpers=no --disable-gcc-Werror" |
30 | 30 | ||
31 | CFLAGS_append_libc-musl = " -Dsigcontext_struct=sigcontext" | 31 | CFLAGS:append:libc-musl = " -Dsigcontext_struct=sigcontext" |
32 | 32 | ||
33 | TESTDIR = "tests" | 33 | TESTDIR = "tests" |
34 | PTEST_BUILD_HOST_PATTERN = "^(DEB_CHANGELOGTIME|RPM_CHANGELOGTIME|WARN_CFLAGS_FOR_BUILD|LDFLAGS_FOR_BUILD)" | 34 | PTEST_BUILD_HOST_PATTERN = "^(DEB_CHANGELOGTIME|RPM_CHANGELOGTIME|WARN_CFLAGS_FOR_BUILD|LDFLAGS_FOR_BUILD)" |
@@ -46,9 +46,9 @@ do_install_ptest() { | |||
46 | sed -i -e '/^src/s/strace.*[0-9]/ptest/' ${D}/${PTEST_PATH}/${TESTDIR}/Makefile | 46 | sed -i -e '/^src/s/strace.*[0-9]/ptest/' ${D}/${PTEST_PATH}/${TESTDIR}/Makefile |
47 | } | 47 | } |
48 | 48 | ||
49 | RDEPENDS_${PN}-ptest += "make coreutils grep gawk sed" | 49 | RDEPENDS:${PN}-ptest += "make coreutils grep gawk sed" |
50 | 50 | ||
51 | RDEPENDS_${PN}-ptest_append_libc-glibc = "\ | 51 | RDEPENDS:${PN}-ptest:append:libc-glibc = "\ |
52 | locale-base-en-us.iso-8859-1 \ | 52 | locale-base-en-us.iso-8859-1 \ |
53 | " | 53 | " |
54 | 54 | ||
diff --git a/meta/recipes-devtools/subversion/subversion_1.14.1.bb b/meta/recipes-devtools/subversion/subversion_1.14.1.bb index 0f8a764532..87dc359439 100644 --- a/meta/recipes-devtools/subversion/subversion_1.14.1.bb +++ b/meta/recipes-devtools/subversion/subversion_1.14.1.bb | |||
@@ -6,7 +6,7 @@ LICENSE = "Apache-2 & MIT" | |||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=6487ae7094d359fa90fb9c4096e52e2b" | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=6487ae7094d359fa90fb9c4096e52e2b" |
7 | 7 | ||
8 | DEPENDS = "apr-util serf sqlite3 file lz4" | 8 | DEPENDS = "apr-util serf sqlite3 file lz4" |
9 | DEPENDS_append_class-native = " file-replacement-native" | 9 | DEPENDS:append:class-native = " file-replacement-native" |
10 | 10 | ||
11 | SRC_URI = "${APACHE_MIRROR}/${BPN}/${BPN}-${PV}.tar.bz2 \ | 11 | SRC_URI = "${APACHE_MIRROR}/${BPN}/${BPN}-${PV}.tar.bz2 \ |
12 | file://disable_macos.patch \ | 12 | file://disable_macos.patch \ |
@@ -44,7 +44,7 @@ acpaths = "-I build/ -I build/ac-macros/" | |||
44 | CPPFLAGS += "-P" | 44 | CPPFLAGS += "-P" |
45 | BUILD_CPPFLAGS += "-P" | 45 | BUILD_CPPFLAGS += "-P" |
46 | 46 | ||
47 | do_configure_prepend () { | 47 | do_configure:prepend () { |
48 | rm -f ${S}/libtool | 48 | rm -f ${S}/libtool |
49 | rm -f ${S}/build/libtool.m4 ${S}/build/ltmain.sh ${S}/build/ltoptions.m4 ${S}/build/ltsugar.m4 ${S}/build/ltversion.m4 ${S}/build/lt~obsolete.m4 | 49 | rm -f ${S}/build/libtool.m4 ${S}/build/ltmain.sh ${S}/build/ltoptions.m4 ${S}/build/ltsugar.m4 ${S}/build/ltversion.m4 ${S}/build/lt~obsolete.m4 |
50 | rm -f ${S}/aclocal.m4 | 50 | rm -f ${S}/aclocal.m4 |
@@ -58,6 +58,6 @@ do_configure_prepend () { | |||
58 | #| make: *** [install-serf-lib] Error 1 | 58 | #| make: *** [install-serf-lib] Error 1 |
59 | PARALLEL_MAKEINST = "" | 59 | PARALLEL_MAKEINST = "" |
60 | 60 | ||
61 | RDEPENDS_${PN} = "serf" | 61 | RDEPENDS:${PN} = "serf" |
62 | 62 | ||
63 | BBCLASSEXTEND = "native nativesdk" | 63 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/swig/swig.inc b/meta/recipes-devtools/swig/swig.inc index 292bca393d..eb8d723158 100644 --- a/meta/recipes-devtools/swig/swig.inc +++ b/meta/recipes-devtools/swig/swig.inc | |||
@@ -49,11 +49,11 @@ BBCLASSEXTEND = "native nativesdk" | |||
49 | 49 | ||
50 | # necessary together with bison dependency until a new upstream version after | 50 | # necessary together with bison dependency until a new upstream version after |
51 | # 3.0.12 includes 0001-Fix-generated-code-for-constant-expressions-containi.patch | 51 | # 3.0.12 includes 0001-Fix-generated-code-for-constant-expressions-containi.patch |
52 | do_configure_append() { | 52 | do_configure:append() { |
53 | mkdir -p ${B}/Source/CParse | 53 | mkdir -p ${B}/Source/CParse |
54 | } | 54 | } |
55 | 55 | ||
56 | do_install_append_class-nativesdk() { | 56 | do_install:append:class-nativesdk() { |
57 | cd ${D}${bindir} | 57 | cd ${D}${bindir} |
58 | ln -s swig swig2.0 | 58 | ln -s swig swig2.0 |
59 | } | 59 | } |
@@ -62,6 +62,6 @@ def swiglib_relpath(d): | |||
62 | swiglib = d.getVar('datadir') + "/" + d.getVar('BPN') + "/" + d.getVar('PV') | 62 | swiglib = d.getVar('datadir') + "/" + d.getVar('BPN') + "/" + d.getVar('PV') |
63 | return os.path.relpath(swiglib, d.getVar('bindir')) | 63 | return os.path.relpath(swiglib, d.getVar('bindir')) |
64 | 64 | ||
65 | do_install_append_class-native() { | 65 | do_install:append:class-native() { |
66 | create_wrapper ${D}${bindir}/swig SWIG_LIB='`dirname $''realpath`'/${@swiglib_relpath(d)} | 66 | create_wrapper ${D}${bindir}/swig SWIG_LIB='`dirname $''realpath`'/${@swiglib_relpath(d)} |
67 | } | 67 | } |
diff --git a/meta/recipes-devtools/syslinux/syslinux_6.04-pre2.bb b/meta/recipes-devtools/syslinux/syslinux_6.04-pre2.bb index dadba9eca9..0dd18d7a06 100644 --- a/meta/recipes-devtools/syslinux/syslinux_6.04-pre2.bb +++ b/meta/recipes-devtools/syslinux/syslinux_6.04-pre2.bb | |||
@@ -36,11 +36,11 @@ UPSTREAM_CHECK_REGEX = "syslinux-(?P<pver>.+)\.tar" | |||
36 | UPSTREAM_VERSION_UNKNOWN = "1" | 36 | UPSTREAM_VERSION_UNKNOWN = "1" |
37 | 37 | ||
38 | # We can build the native parts anywhere, but the target has to be x86 | 38 | # We can build the native parts anywhere, but the target has to be x86 |
39 | COMPATIBLE_HOST_class-target = '(x86_64|i.86).*-(linux|freebsd.*)' | 39 | COMPATIBLE_HOST:class-target = '(x86_64|i.86).*-(linux|freebsd.*)' |
40 | 40 | ||
41 | # Don't let the sanity checker trip on the 32 bit real mode BIOS binaries | 41 | # Don't let the sanity checker trip on the 32 bit real mode BIOS binaries |
42 | INSANE_SKIP_${PN}-misc = "arch" | 42 | INSANE_SKIP:${PN}-misc = "arch" |
43 | INSANE_SKIP_${PN}-chain = "arch" | 43 | INSANE_SKIP:${PN}-chain = "arch" |
44 | 44 | ||
45 | # When building the installer, CC is used to link. When building the bootloader, | 45 | # When building the installer, CC is used to link. When building the bootloader, |
46 | # LD is used. However, these variables assume that GCC is used and break the | 46 | # LD is used. However, these variables assume that GCC is used and break the |
@@ -49,7 +49,7 @@ TARGET_LDFLAGS = "" | |||
49 | SECURITY_LDFLAGS = "" | 49 | SECURITY_LDFLAGS = "" |
50 | LDFLAGS_SECTION_REMOVAL = "" | 50 | LDFLAGS_SECTION_REMOVAL = "" |
51 | 51 | ||
52 | CFLAGS_append = " -DNO_INLINE_FUNCS" | 52 | CFLAGS:append = " -DNO_INLINE_FUNCS" |
53 | 53 | ||
54 | EXTRA_OEMAKE = " \ | 54 | EXTRA_OEMAKE = " \ |
55 | BINDIR=${bindir} SBINDIR=${sbindir} LIBDIR=${libdir} \ | 55 | BINDIR=${bindir} SBINDIR=${sbindir} LIBDIR=${libdir} \ |
@@ -87,17 +87,17 @@ do_install() { | |||
87 | # | 87 | # |
88 | # Tasks for target which ship the precompiled bootloader and installer | 88 | # Tasks for target which ship the precompiled bootloader and installer |
89 | # | 89 | # |
90 | do_configure_class-target() { | 90 | do_configure:class-target() { |
91 | # No need to do anything as we're mostly shipping the precompiled binaries | 91 | # No need to do anything as we're mostly shipping the precompiled binaries |
92 | : | 92 | : |
93 | } | 93 | } |
94 | 94 | ||
95 | do_compile_class-target() { | 95 | do_compile:class-target() { |
96 | # No need to do anything as we're mostly shipping the precompiled binaries | 96 | # No need to do anything as we're mostly shipping the precompiled binaries |
97 | : | 97 | : |
98 | } | 98 | } |
99 | 99 | ||
100 | do_install_class-target() { | 100 | do_install:class-target() { |
101 | oe_runmake firmware="bios" install INSTALLROOT="${D}" | 101 | oe_runmake firmware="bios" install INSTALLROOT="${D}" |
102 | 102 | ||
103 | install -d ${D}${datadir}/syslinux/ | 103 | install -d ${D}${datadir}/syslinux/ |
@@ -107,19 +107,19 @@ do_install_class-target() { | |||
107 | 107 | ||
108 | PACKAGES += "${PN}-nomtools ${PN}-extlinux ${PN}-mbr ${PN}-chain ${PN}-pxelinux ${PN}-isolinux ${PN}-misc" | 108 | PACKAGES += "${PN}-nomtools ${PN}-extlinux ${PN}-mbr ${PN}-chain ${PN}-pxelinux ${PN}-isolinux ${PN}-misc" |
109 | 109 | ||
110 | RDEPENDS_${PN} += "mtools" | 110 | RDEPENDS:${PN} += "mtools" |
111 | RDEPENDS_${PN}-nomtools += "libext2fs" | 111 | RDEPENDS:${PN}-nomtools += "libext2fs" |
112 | RDEPENDS_${PN}-misc += "perl" | 112 | RDEPENDS:${PN}-misc += "perl" |
113 | 113 | ||
114 | FILES_${PN} = "${bindir}/syslinux" | 114 | FILES:${PN} = "${bindir}/syslinux" |
115 | FILES_${PN}-nomtools = "${bindir}/syslinux-nomtools" | 115 | FILES:${PN}-nomtools = "${bindir}/syslinux-nomtools" |
116 | FILES_${PN}-extlinux = "${sbindir}/extlinux" | 116 | FILES:${PN}-extlinux = "${sbindir}/extlinux" |
117 | FILES_${PN}-mbr = "${datadir}/${BPN}/mbr.bin" | 117 | FILES:${PN}-mbr = "${datadir}/${BPN}/mbr.bin" |
118 | FILES_${PN}-chain = "${datadir}/${BPN}/chain.c32" | 118 | FILES:${PN}-chain = "${datadir}/${BPN}/chain.c32" |
119 | FILES_${PN}-isolinux = "${datadir}/${BPN}/isolinux.bin" | 119 | FILES:${PN}-isolinux = "${datadir}/${BPN}/isolinux.bin" |
120 | FILES_${PN}-pxelinux = "${datadir}/${BPN}/pxelinux.0" | 120 | FILES:${PN}-pxelinux = "${datadir}/${BPN}/pxelinux.0" |
121 | FILES_${PN}-dev += "${datadir}/${BPN}/com32/lib*${SOLIBS} ${datadir}/${BPN}/com32/include ${datadir}/${BPN}/com32/com32.ld" | 121 | FILES:${PN}-dev += "${datadir}/${BPN}/com32/lib*${SOLIBS} ${datadir}/${BPN}/com32/include ${datadir}/${BPN}/com32/com32.ld" |
122 | FILES_${PN}-staticdev += "${datadir}/${BPN}/com32/lib*.a ${libdir}/${BPN}/com32/lib*.a" | 122 | FILES:${PN}-staticdev += "${datadir}/${BPN}/com32/lib*.a ${libdir}/${BPN}/com32/lib*.a" |
123 | FILES_${PN}-misc = "${datadir}/${BPN}/* ${libdir}/${BPN}/* ${bindir}/*" | 123 | FILES:${PN}-misc = "${datadir}/${BPN}/* ${libdir}/${BPN}/* ${bindir}/*" |
124 | 124 | ||
125 | BBCLASSEXTEND = "native nativesdk" | 125 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-devtools/systemd-bootchart/systemd-bootchart_234.bb b/meta/recipes-devtools/systemd-bootchart/systemd-bootchart_234.bb index 905a0cbb72..fd6f17b656 100644 --- a/meta/recipes-devtools/systemd-bootchart/systemd-bootchart_234.bb +++ b/meta/recipes-devtools/systemd-bootchart/systemd-bootchart_234.bb | |||
@@ -14,7 +14,7 @@ SRC_URI = "git://github.com/systemd/systemd-bootchart.git;protocol=https \ | |||
14 | file://no_lto.patch \ | 14 | file://no_lto.patch \ |
15 | " | 15 | " |
16 | 16 | ||
17 | SRC_URI_append_libc-musl = " \ | 17 | SRC_URI:append:libc-musl = " \ |
18 | file://0001-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch \ | 18 | file://0001-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch \ |
19 | file://0002-musl-does-not-provide-printf-h.patch \ | 19 | file://0002-musl-does-not-provide-printf-h.patch \ |
20 | file://0003-musl-does-not-provide-canonicalize_file_name.patch \ | 20 | file://0003-musl-does-not-provide-canonicalize_file_name.patch \ |
@@ -31,14 +31,14 @@ inherit pkgconfig autotools systemd features_check | |||
31 | 31 | ||
32 | REQUIRED_DISTRO_FEATURES = "systemd" | 32 | REQUIRED_DISTRO_FEATURES = "systemd" |
33 | 33 | ||
34 | SYSTEMD_SERVICE_${PN} = "systemd-bootchart.service" | 34 | SYSTEMD_SERVICE:${PN} = "systemd-bootchart.service" |
35 | 35 | ||
36 | do_configure_prepend() { | 36 | do_configure:prepend() { |
37 | # intltool.m4 is a soft link to /usr/share/aclocal/m4, delete it and use the one in our sysroot | 37 | # intltool.m4 is a soft link to /usr/share/aclocal/m4, delete it and use the one in our sysroot |
38 | rm -f ${S}/m4/intltool.m4 | 38 | rm -f ${S}/m4/intltool.m4 |
39 | } | 39 | } |
40 | 40 | ||
41 | FILES_${PN} += "${systemd_unitdir}/systemd-bootchart" | 41 | FILES:${PN} += "${systemd_unitdir}/systemd-bootchart" |
42 | 42 | ||
43 | EXTRA_OECONF = " --with-rootprefix=${root_prefix} \ | 43 | EXTRA_OECONF = " --with-rootprefix=${root_prefix} \ |
44 | --with-rootlibdir=${base_libdir}" | 44 | --with-rootlibdir=${base_libdir}" |
diff --git a/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb b/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb index 87369c47dd..48e6e02f05 100644 --- a/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb +++ b/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb | |||
@@ -19,13 +19,13 @@ SRC_URI = "git://git.eclipse.org/gitroot/tcf/org.eclipse.tcf.agent \ | |||
19 | " | 19 | " |
20 | 20 | ||
21 | DEPENDS = "util-linux openssl" | 21 | DEPENDS = "util-linux openssl" |
22 | RDEPENDS_${PN} = "bash" | 22 | RDEPENDS:${PN} = "bash" |
23 | 23 | ||
24 | S = "${WORKDIR}/git/agent" | 24 | S = "${WORKDIR}/git/agent" |
25 | 25 | ||
26 | inherit update-rc.d systemd | 26 | inherit update-rc.d systemd |
27 | 27 | ||
28 | SYSTEMD_SERVICE_${PN} = "tcf-agent.service" | 28 | SYSTEMD_SERVICE:${PN} = "tcf-agent.service" |
29 | 29 | ||
30 | INITSCRIPT_NAME = "tcf-agent" | 30 | INITSCRIPT_NAME = "tcf-agent" |
31 | INITSCRIPT_PARAMS = "start 99 3 5 . stop 20 0 1 2 6 ." | 31 | INITSCRIPT_PARAMS = "start 99 3 5 . stop 20 0 1 2 6 ." |
@@ -43,14 +43,14 @@ LCL_STOP_SERVICES = "-DSERVICE_RunControl=0 -DSERVICE_Breakpoints=0 \ | |||
43 | 43 | ||
44 | # These features don't compile for several cases. | 44 | # These features don't compile for several cases. |
45 | # | 45 | # |
46 | CFLAGS_append_arc = " ${LCL_STOP_SERVICES}" | 46 | CFLAGS:append:arc = " ${LCL_STOP_SERVICES}" |
47 | CFLAGS_append_mips = " ${LCL_STOP_SERVICES}" | 47 | CFLAGS:append:mips = " ${LCL_STOP_SERVICES}" |
48 | CFLAGS_append_mips64 = " ${LCL_STOP_SERVICES}" | 48 | CFLAGS:append:mips64 = " ${LCL_STOP_SERVICES}" |
49 | CFLAGS_append_libc-musl = " ${LCL_STOP_SERVICES}" | 49 | CFLAGS:append:libc-musl = " ${LCL_STOP_SERVICES}" |
50 | CFLAGS_append_powerpc64 = " ${LCL_STOP_SERVICES}" | 50 | CFLAGS:append:powerpc64 = " ${LCL_STOP_SERVICES}" |
51 | CFLAGS_append_powerpc64le = " ${LCL_STOP_SERVICES}" | 51 | CFLAGS:append:powerpc64le = " ${LCL_STOP_SERVICES}" |
52 | CFLAGS_append_riscv64 = " ${LCL_STOP_SERVICES}" | 52 | CFLAGS:append:riscv64 = " ${LCL_STOP_SERVICES}" |
53 | CFLAGS_append_riscv32 = " ${LCL_STOP_SERVICES}" | 53 | CFLAGS:append:riscv32 = " ${LCL_STOP_SERVICES}" |
54 | 54 | ||
55 | do_install() { | 55 | do_install() { |
56 | oe_runmake install INSTALLROOT=${D} | 56 | oe_runmake install INSTALLROOT=${D} |
diff --git a/meta/recipes-devtools/tcltk/tcl_8.6.11.bb b/meta/recipes-devtools/tcltk/tcl_8.6.11.bb index 8d58fafeb3..1e91f0827e 100644 --- a/meta/recipes-devtools/tcltk/tcl_8.6.11.bb +++ b/meta/recipes-devtools/tcltk/tcl_8.6.11.bb | |||
@@ -27,7 +27,7 @@ SRC_URI = "${BASE_SRC_URI} \ | |||
27 | " | 27 | " |
28 | SRC_URI[sha256sum] = "cfb49aab82bd179651e23eeeb69606f51b0ddc575ca55c3d35e2457469024cfa" | 28 | SRC_URI[sha256sum] = "cfb49aab82bd179651e23eeeb69606f51b0ddc575ca55c3d35e2457469024cfa" |
29 | 29 | ||
30 | SRC_URI_class-native = "${BASE_SRC_URI}" | 30 | SRC_URI:class-native = "${BASE_SRC_URI}" |
31 | 31 | ||
32 | UPSTREAM_CHECK_REGEX = "tcl(?P<pver>\d+(\.\d+)+)-src" | 32 | UPSTREAM_CHECK_REGEX = "tcl(?P<pver>\d+(\.\d+)+)-src" |
33 | 33 | ||
@@ -59,13 +59,13 @@ do_install() { | |||
59 | SYSROOT_DIRS += "${bindir_crossscripts}" | 59 | SYSROOT_DIRS += "${bindir_crossscripts}" |
60 | 60 | ||
61 | PACKAGES =+ "tcl-lib" | 61 | PACKAGES =+ "tcl-lib" |
62 | FILES_tcl-lib = "${libdir}/libtcl8.6.so.*" | 62 | FILES:tcl-lib = "${libdir}/libtcl8.6.so.*" |
63 | FILES_${PN} += "${libdir}/tcl${VER} ${libdir}/tcl8.6 ${libdir}/tcl8" | 63 | FILES:${PN} += "${libdir}/tcl${VER} ${libdir}/tcl8.6 ${libdir}/tcl8" |
64 | FILES_${PN}-dev += "${libdir}/tclConfig.sh ${libdir}/tclooConfig.sh" | 64 | FILES:${PN}-dev += "${libdir}/tclConfig.sh ${libdir}/tclooConfig.sh" |
65 | 65 | ||
66 | # isn't getting picked up by shlibs code | 66 | # isn't getting picked up by shlibs code |
67 | RDEPENDS_${PN} += "tcl-lib" | 67 | RDEPENDS:${PN} += "tcl-lib" |
68 | RDEPENDS_${PN}-ptest += "libgcc" | 68 | RDEPENDS:${PN}-ptest += "libgcc" |
69 | 69 | ||
70 | BBCLASSEXTEND = "native nativesdk" | 70 | BBCLASSEXTEND = "native nativesdk" |
71 | 71 | ||
diff --git a/meta/recipes-devtools/unfs3/unfs3_git.bb b/meta/recipes-devtools/unfs3/unfs3_git.bb index f9bae720cc..2bc7a9230b 100644 --- a/meta/recipes-devtools/unfs3/unfs3_git.bb +++ b/meta/recipes-devtools/unfs3/unfs3_git.bb | |||
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=9475885294e17c0cc0067820d042792e" | |||
9 | 9 | ||
10 | DEPENDS = "flex-native bison-native flex" | 10 | DEPENDS = "flex-native bison-native flex" |
11 | DEPENDS += "libtirpc" | 11 | DEPENDS += "libtirpc" |
12 | DEPENDS_append_class-nativesdk = " flex-nativesdk" | 12 | DEPENDS:append:class-nativesdk = " flex-nativesdk" |
13 | 13 | ||
14 | ASNEEDED = "" | 14 | ASNEEDED = "" |
15 | 15 | ||
@@ -35,9 +35,9 @@ PV = "0.9.22+${SRCPV}" | |||
35 | BBCLASSEXTEND = "native nativesdk" | 35 | BBCLASSEXTEND = "native nativesdk" |
36 | 36 | ||
37 | inherit autotools | 37 | inherit autotools |
38 | EXTRA_OECONF_append_class-native = " --sbindir=${bindir}" | 38 | EXTRA_OECONF:append:class-native = " --sbindir=${bindir}" |
39 | CFLAGS_append = " -I${STAGING_INCDIR}/tirpc" | 39 | CFLAGS:append = " -I${STAGING_INCDIR}/tirpc" |
40 | EXTRA_OECONF_append = " LIBS=-ltirpc" | 40 | EXTRA_OECONF:append = " LIBS=-ltirpc" |
41 | 41 | ||
42 | # Turn off these header detects else the inode search | 42 | # Turn off these header detects else the inode search |
43 | # will walk entire file systems and this is a real problem | 43 | # will walk entire file systems and this is a real problem |
diff --git a/meta/recipes-devtools/vala/vala.inc b/meta/recipes-devtools/vala/vala.inc index 71da2ef07c..1a1115739d 100644 --- a/meta/recipes-devtools/vala/vala.inc +++ b/meta/recipes-devtools/vala/vala.inc | |||
@@ -8,10 +8,10 @@ DEPENDS = "bison-native flex-native glib-2.0" | |||
8 | # Appending libxslt-native to dependencies has an effect | 8 | # Appending libxslt-native to dependencies has an effect |
9 | # of rebuilding the manual, which is very slow. Let's do this | 9 | # of rebuilding the manual, which is very slow. Let's do this |
10 | # only when api-documentation distro feature is enabled. | 10 | # only when api-documentation distro feature is enabled. |
11 | DEPENDS_append_class-target = " ${@bb.utils.contains('DISTRO_FEATURES', 'api-documentation', 'libxslt-native', '', d)}" | 11 | DEPENDS:append:class-target = " ${@bb.utils.contains('DISTRO_FEATURES', 'api-documentation', 'libxslt-native', '', d)}" |
12 | 12 | ||
13 | # vala-native contains a native version of vapigen, which we use instead of the target one | 13 | # vala-native contains a native version of vapigen, which we use instead of the target one |
14 | DEPENDS_append_class-target = " vala-native" | 14 | DEPENDS:append:class-target = " vala-native" |
15 | BBCLASSEXTEND = "native" | 15 | BBCLASSEXTEND = "native" |
16 | LICENSE = "LGPLv2.1" | 16 | LICENSE = "LGPLv2.1" |
17 | LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" | 17 | LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" |
@@ -21,13 +21,13 @@ SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}" | |||
21 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/${BPN}/${SHRT_VER}/${BP}.tar.xz" | 21 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/${BPN}/${SHRT_VER}/${BP}.tar.xz" |
22 | inherit autotools pkgconfig upstream-version-is-even | 22 | inherit autotools pkgconfig upstream-version-is-even |
23 | 23 | ||
24 | FILES_${PN} += "${datadir}/${BPN}-${SHRT_VER}/vapi ${libdir}/${BPN}-${SHRT_VER}/" | 24 | FILES:${PN} += "${datadir}/${BPN}-${SHRT_VER}/vapi ${libdir}/${BPN}-${SHRT_VER}/" |
25 | FILES_${PN}-doc += "${datadir}/devhelp" | 25 | FILES:${PN}-doc += "${datadir}/devhelp" |
26 | 26 | ||
27 | # .gir files from gobject-introspection are installed to ${libdir} when multilib is enabled | 27 | # .gir files from gobject-introspection are installed to ${libdir} when multilib is enabled |
28 | GIRDIR_OPT = "${@'--girdir=${STAGING_LIBDIR}/gir-1.0' if d.getVar('MULTILIBS') else ''}" | 28 | GIRDIR_OPT = "${@'--girdir=${STAGING_LIBDIR}/gir-1.0' if d.getVar('MULTILIBS') else ''}" |
29 | 29 | ||
30 | do_configure_prepend_class-target() { | 30 | do_configure:prepend:class-target() { |
31 | # Write out a vapigen wrapper that will be provided by pkg-config file installed in target sysroot | 31 | # Write out a vapigen wrapper that will be provided by pkg-config file installed in target sysroot |
32 | # The wrapper will call a native vapigen | 32 | # The wrapper will call a native vapigen |
33 | cat > ${B}/vapigen-wrapper << EOF | 33 | cat > ${B}/vapigen-wrapper << EOF |
@@ -41,16 +41,16 @@ EXTRA_OECONF += " --disable-valadoc" | |||
41 | 41 | ||
42 | # Vapigen wrapper needs to be available system-wide, because it will be used | 42 | # Vapigen wrapper needs to be available system-wide, because it will be used |
43 | # to build vapi files from all other packages with vala support | 43 | # to build vapi files from all other packages with vala support |
44 | do_install_append_class-target() { | 44 | do_install:append:class-target() { |
45 | install -d ${D}${bindir}/ | 45 | install -d ${D}${bindir}/ |
46 | install ${B}/vapigen-wrapper ${D}${bindir}/ | 46 | install ${B}/vapigen-wrapper ${D}${bindir}/ |
47 | } | 47 | } |
48 | 48 | ||
49 | # Put vapigen wrapper into target sysroot so that it can be used when building | 49 | # Put vapigen wrapper into target sysroot so that it can be used when building |
50 | # vapi files. | 50 | # vapi files. |
51 | SYSROOT_DIRS_append_class-target = " ${bindir}" | 51 | SYSROOT_DIRS:append:class-target = " ${bindir}" |
52 | 52 | ||
53 | SYSROOT_PREPROCESS_FUNCS_append_class-target = " vapigen_sysroot_preprocess" | 53 | SYSROOT_PREPROCESS_FUNCS:append:class-target = " vapigen_sysroot_preprocess" |
54 | vapigen_sysroot_preprocess() { | 54 | vapigen_sysroot_preprocess() { |
55 | # Tweak the vapigen name in the vapigen pkgconfig file, so that it picks | 55 | # Tweak the vapigen name in the vapigen pkgconfig file, so that it picks |
56 | # up our wrapper. | 56 | # up our wrapper. |
diff --git a/meta/recipes-devtools/valgrind/valgrind_3.17.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.17.0.bb index 60b248681e..3f8a34becc 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.17.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.17.0.bb | |||
@@ -54,7 +54,7 @@ COMPATIBLE_HOST = '(i.86|x86_64|arm|aarch64|mips|powerpc|powerpc64).*-linux' | |||
54 | 54 | ||
55 | # patch 0001-memcheck-vgtests-remove-fullpath-after-flags.patch removes relative path | 55 | # patch 0001-memcheck-vgtests-remove-fullpath-after-flags.patch removes relative path |
56 | # argument. Change expected stderr files accordingly. | 56 | # argument. Change expected stderr files accordingly. |
57 | do_patch_append() { | 57 | do_patch:append() { |
58 | bb.build.exec_func('do_sed_paths', d) | 58 | bb.build.exec_func('do_sed_paths', d) |
59 | } | 59 | } |
60 | 60 | ||
@@ -64,23 +64,23 @@ do_sed_paths() { | |||
64 | } | 64 | } |
65 | 65 | ||
66 | # valgrind supports armv7 and above | 66 | # valgrind supports armv7 and above |
67 | COMPATIBLE_HOST_armv4 = 'null' | 67 | COMPATIBLE_HOST:armv4 = 'null' |
68 | COMPATIBLE_HOST_armv5 = 'null' | 68 | COMPATIBLE_HOST:armv5 = 'null' |
69 | COMPATIBLE_HOST_armv6 = 'null' | 69 | COMPATIBLE_HOST:armv6 = 'null' |
70 | 70 | ||
71 | # valgrind fails with powerpc soft-float | 71 | # valgrind fails with powerpc soft-float |
72 | COMPATIBLE_HOST_powerpc = "${@bb.utils.contains('TARGET_FPU', 'soft', 'null', '.*-linux', d)}" | 72 | COMPATIBLE_HOST:powerpc = "${@bb.utils.contains('TARGET_FPU', 'soft', 'null', '.*-linux', d)}" |
73 | 73 | ||
74 | # X32 isn't supported by valgrind at this time | 74 | # X32 isn't supported by valgrind at this time |
75 | COMPATIBLE_HOST_linux-gnux32 = 'null' | 75 | COMPATIBLE_HOST:linux-gnux32 = 'null' |
76 | COMPATIBLE_HOST_linux-muslx32 = 'null' | 76 | COMPATIBLE_HOST:linux-muslx32 = 'null' |
77 | 77 | ||
78 | # Disable for some MIPS variants | 78 | # Disable for some MIPS variants |
79 | COMPATIBLE_HOST_mipsarchr6 = 'null' | 79 | COMPATIBLE_HOST:mipsarchr6 = 'null' |
80 | COMPATIBLE_HOST_linux-gnun32 = 'null' | 80 | COMPATIBLE_HOST:linux-gnun32 = 'null' |
81 | 81 | ||
82 | # Disable for powerpc64 with musl | 82 | # Disable for powerpc64 with musl |
83 | COMPATIBLE_HOST_libc-musl_powerpc64 = 'null' | 83 | COMPATIBLE_HOST:libc-musl:powerpc64 = 'null' |
84 | 84 | ||
85 | # brokenseip is unfortunately required by ptests to pass | 85 | # brokenseip is unfortunately required by ptests to pass |
86 | inherit autotools-brokensep ptest multilib_header | 86 | inherit autotools-brokensep ptest multilib_header |
@@ -89,7 +89,7 @@ EXTRA_OECONF = "--enable-tls --without-mpicc" | |||
89 | EXTRA_OECONF += "${@['--enable-only32bit','--enable-only64bit'][d.getVar('SITEINFO_BITS') != '32']}" | 89 | EXTRA_OECONF += "${@['--enable-only32bit','--enable-only64bit'][d.getVar('SITEINFO_BITS') != '32']}" |
90 | 90 | ||
91 | # valgrind checks host_cpu "armv7*)", so we need to over-ride the autotools.bbclass default --host option | 91 | # valgrind checks host_cpu "armv7*)", so we need to over-ride the autotools.bbclass default --host option |
92 | EXTRA_OECONF_append_arm = " --host=armv7${HOST_VENDOR}-${HOST_OS}" | 92 | EXTRA_OECONF:append:arm = " --host=armv7${HOST_VENDOR}-${HOST_OS}" |
93 | 93 | ||
94 | EXTRA_OEMAKE = "-w" | 94 | EXTRA_OEMAKE = "-w" |
95 | 95 | ||
@@ -101,49 +101,49 @@ CACHED_CONFIGUREVARS += "ac_cv_path_PERL='/usr/bin/env perl'" | |||
101 | # which fixes build path issue in DWARF. | 101 | # which fixes build path issue in DWARF. |
102 | SELECTED_OPTIMIZATION = "${DEBUG_FLAGS}" | 102 | SELECTED_OPTIMIZATION = "${DEBUG_FLAGS}" |
103 | 103 | ||
104 | do_configure_prepend () { | 104 | do_configure:prepend () { |
105 | rm -rf ${S}/config.h | 105 | rm -rf ${S}/config.h |
106 | sed -i -e 's:$(abs_top_builddir):$(pkglibdir)/ptest:g' ${S}/none/tests/Makefile.am | 106 | sed -i -e 's:$(abs_top_builddir):$(pkglibdir)/ptest:g' ${S}/none/tests/Makefile.am |
107 | sed -i -e 's:$(top_builddir):$(pkglibdir)/ptest:g' ${S}/memcheck/tests/Makefile.am | 107 | sed -i -e 's:$(top_builddir):$(pkglibdir)/ptest:g' ${S}/memcheck/tests/Makefile.am |
108 | } | 108 | } |
109 | 109 | ||
110 | do_install_append () { | 110 | do_install:append () { |
111 | install -m 644 ${B}/default.supp ${D}/${libexecdir}/valgrind/ | 111 | install -m 644 ${B}/default.supp ${D}/${libexecdir}/valgrind/ |
112 | oe_multilib_header valgrind/config.h | 112 | oe_multilib_header valgrind/config.h |
113 | } | 113 | } |
114 | 114 | ||
115 | VALGRINDARCH ?= "${TARGET_ARCH}" | 115 | VALGRINDARCH ?= "${TARGET_ARCH}" |
116 | VALGRINDARCH_aarch64 = "arm64" | 116 | VALGRINDARCH:aarch64 = "arm64" |
117 | VALGRINDARCH_x86-64 = "amd64" | 117 | VALGRINDARCH:x86-64 = "amd64" |
118 | VALGRINDARCH_x86 = "x86" | 118 | VALGRINDARCH:x86 = "x86" |
119 | VALGRINDARCH_mips = "mips32" | 119 | VALGRINDARCH:mips = "mips32" |
120 | VALGRINDARCH_mipsel = "mips32" | 120 | VALGRINDARCH:mipsel = "mips32" |
121 | VALGRINDARCH_mips64el = "mips64" | 121 | VALGRINDARCH:mips64el = "mips64" |
122 | VALGRINDARCH_powerpc = "ppc" | 122 | VALGRINDARCH:powerpc = "ppc" |
123 | VALGRINDARCH_powerpc64 = "ppc64" | 123 | VALGRINDARCH:powerpc64 = "ppc64" |
124 | VALGRINDARCH_powerpc64le = "ppc64le" | 124 | VALGRINDARCH:powerpc64le = "ppc64le" |
125 | 125 | ||
126 | INHIBIT_PACKAGE_STRIP_FILES = "${PKGD}${libexecdir}/valgrind/vgpreload_memcheck-${VALGRINDARCH}-linux.so" | 126 | INHIBIT_PACKAGE_STRIP_FILES = "${PKGD}${libexecdir}/valgrind/vgpreload_memcheck-${VALGRINDARCH}-linux.so" |
127 | 127 | ||
128 | RDEPENDS_${PN} += "perl" | 128 | RDEPENDS:${PN} += "perl" |
129 | 129 | ||
130 | # valgrind needs debug information for ld.so at runtime in order to | 130 | # valgrind needs debug information for ld.so at runtime in order to |
131 | # redirect functions like strlen. | 131 | # redirect functions like strlen. |
132 | RRECOMMENDS_${PN} += "${TCLIBC}-dbg" | 132 | RRECOMMENDS:${PN} += "${TCLIBC}-dbg" |
133 | 133 | ||
134 | RDEPENDS_${PN}-ptest += " bash coreutils curl file \ | 134 | RDEPENDS:${PN}-ptest += " bash coreutils curl file \ |
135 | gdb libgomp \ | 135 | gdb libgomp \ |
136 | perl \ | 136 | perl \ |
137 | perl-module-file-basename perl-module-file-glob perl-module-getopt-long \ | 137 | perl-module-file-basename perl-module-file-glob perl-module-getopt-long \ |
138 | perl-module-overloading perl-module-cwd perl-module-ipc-open3 \ | 138 | perl-module-overloading perl-module-cwd perl-module-ipc-open3 \ |
139 | perl-module-carp perl-module-symbol \ | 139 | perl-module-carp perl-module-symbol \ |
140 | procps sed ${PN}-dbg ${PN}-src ${TCLIBC}-src gcc-runtime-dbg" | 140 | procps sed ${PN}-dbg ${PN}-src ${TCLIBC}-src gcc-runtime-dbg" |
141 | RDEPENDS_${PN}-ptest_append_libc-glibc = " glibc-utils" | 141 | RDEPENDS:${PN}-ptest:append:libc-glibc = " glibc-utils" |
142 | 142 | ||
143 | # One of the tests contains a bogus interpreter path on purpose. | 143 | # One of the tests contains a bogus interpreter path on purpose. |
144 | # Skip file dependency check | 144 | # Skip file dependency check |
145 | SKIP_FILEDEPS_${PN}-ptest = '1' | 145 | SKIP_FILEDEPS:${PN}-ptest = '1' |
146 | INSANE_SKIP_${PN}-ptest = "debug-deps" | 146 | INSANE_SKIP:${PN}-ptest = "debug-deps" |
147 | 147 | ||
148 | do_compile_ptest() { | 148 | do_compile_ptest() { |
149 | oe_runmake check | 149 | oe_runmake check |
diff --git a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb index d988e1ffce..1214901b65 100644 --- a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb +++ b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | |||
@@ -18,14 +18,14 @@ CLEANBROKEN = "1" | |||
18 | 18 | ||
19 | DEPENDS = "libxml2-native" | 19 | DEPENDS = "libxml2-native" |
20 | 20 | ||
21 | RDEPENDS_${PN} = "docbook-xml-dtd4 \ | 21 | RDEPENDS:${PN} = "docbook-xml-dtd4 \ |
22 | docbook-xsl-stylesheets \ | 22 | docbook-xsl-stylesheets \ |
23 | util-linux \ | 23 | util-linux \ |
24 | libxml2 \ | 24 | libxml2 \ |
25 | libxslt \ | 25 | libxslt \ |
26 | bash \ | 26 | bash \ |
27 | " | 27 | " |
28 | RDEPENDS_${PN}_append_class-target = " \ | 28 | RDEPENDS:${PN}:append:class-target = " \ |
29 | libxml2-utils \ | 29 | libxml2-utils \ |
30 | libxslt-bin \ | 30 | libxslt-bin \ |
31 | coreutils \ | 31 | coreutils \ |
@@ -34,9 +34,9 @@ CACHED_CONFIGUREVARS += "ac_cv_path_TAIL=tail ac_cv_path_GREP=grep" | |||
34 | 34 | ||
35 | BBCLASSEXTEND = "native" | 35 | BBCLASSEXTEND = "native" |
36 | 36 | ||
37 | EXTRA_OECONF_append = " BASH=/bin/bash GCP=/bin/cp XMLLINT=xmllint XSLTPROC=xsltproc" | 37 | EXTRA_OECONF:append = " BASH=/bin/bash GCP=/bin/cp XMLLINT=xmllint XSLTPROC=xsltproc" |
38 | 38 | ||
39 | do_install_append_class-native() { | 39 | do_install:append:class-native() { |
40 | create_wrapper ${D}${bindir}/xmlto XML_CATALOG_FILES=${sysconfdir}/xml/catalog | 40 | create_wrapper ${D}${bindir}/xmlto XML_CATALOG_FILES=${sysconfdir}/xml/catalog |
41 | } | 41 | } |
42 | 42 | ||