mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-17 04:37:19 +00:00
Convert to new override syntax
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
+1
-1
@@ -36,7 +36,7 @@ help for each package.
|
||||
|
||||
1) vim local.conf:
|
||||
...
|
||||
IMAGE_INSTALL_append = " libdbd-sqlite-perl"
|
||||
IMAGE_INSTALL:append = " libdbd-sqlite-perl"
|
||||
PERL_DBM_TEST = "1"
|
||||
...
|
||||
2) build core-image-sato and boot the target
|
||||
|
||||
@@ -21,9 +21,9 @@ S = "${WORKDIR}/${BPN}"
|
||||
inherit useradd
|
||||
|
||||
USERADD_PACKAGES = "${PN}"
|
||||
USERADD_PARAM_${PN} = "-m -g ${BPN} -G adm -r -d ${localstatedir}/lib/${BPN} \
|
||||
USERADD_PARAM:${PN} = "-m -g ${BPN} -G adm -r -d ${localstatedir}/lib/${BPN} \
|
||||
-s /bin/false -c 'logcheck account' ${BPN}"
|
||||
GROUPADD_PARAM_${PN} = "-r ${BPN}"
|
||||
GROUPADD_PARAM:${PN} = "-r ${BPN}"
|
||||
|
||||
do_install() {
|
||||
# Fix QA Issue
|
||||
@@ -62,7 +62,7 @@ do_install() {
|
||||
|
||||
VIRTUAL-RUNTIME_syslog ??= "rsyslog"
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
RDEPENDS:${PN} = "\
|
||||
bash \
|
||||
cronie \
|
||||
debianutils-run-parts \
|
||||
@@ -76,4 +76,4 @@ RDEPENDS_${PN} = "\
|
||||
${VIRTUAL-RUNTIME_syslog} \
|
||||
"
|
||||
|
||||
FILES_${PN} += "${datadir}/logtail"
|
||||
FILES:${PN} += "${datadir}/logtail"
|
||||
|
||||
@@ -17,11 +17,11 @@ SRC_URI[sha256sum] = "4cd7bb61b51d41192d1498c1051aa6a4ccd75aeb09b71d2ec706a7084a
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} += "libmime-types-perl libproc-waitstat-perl msmtp \
|
||||
RDEPENDS:${PN} += "libmime-types-perl libproc-waitstat-perl msmtp \
|
||||
perl-module-filehandle perl-module-mime-base64 perl-module-mime-quotedprint perl-module-posix \
|
||||
"
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
#change the interpreter in file
|
||||
sed -i -e "s|${STAGING_BINDIR_NATIVE}/perl-native/perl -w|${bindir}/env perl|g" \
|
||||
${D}/${bindir}/mime-construct
|
||||
|
||||
@@ -37,7 +37,7 @@ do_install() {
|
||||
cp -rf ${S}/examples ${D}${docdir}/${BPN}
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} += "\
|
||||
RDEPENDS:${PN} += "\
|
||||
shadow \
|
||||
perl-module-getopt-long \
|
||||
perl-module-overloading \
|
||||
@@ -45,7 +45,7 @@ RDEPENDS_${PN} += "\
|
||||
perl-module-file-temp \
|
||||
"
|
||||
|
||||
ALTERNATIVE_${PN} = "adduser deluser addgroup delgroup"
|
||||
ALTERNATIVE:${PN} = "adduser deluser addgroup delgroup"
|
||||
ALTERNATIVE_PRIORITY = "60"
|
||||
ALTERNATIVE_LINK_NAME[adduser] = "${sbindir}/adduser"
|
||||
ALTERNATIVE_LINK_NAME[deluser] = "${sbindir}/deluser"
|
||||
|
||||
@@ -27,14 +27,14 @@ do_install_ptest() {
|
||||
install -m 0755 ${S}/test.pl ${D}${PTEST_PATH}
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} += "\
|
||||
RDEPENDS:${PN} += "\
|
||||
libdata-hexdump-perl \
|
||||
perl-module-digest-md5 \
|
||||
perl-module-data-dumper \
|
||||
perl-module-io-select \
|
||||
perl-module-io-socket \
|
||||
"
|
||||
RDEPENDS_${PN}-ptest += " \
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
${@bb.utils.contains('PTEST_ENABLED', '1', 'freeradius', '', d)} \
|
||||
"
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ LICENSE = "Artistic-1.0|GPL-1.0+"
|
||||
LIC_FILES_CHKSUM = "file://lib/Authen/SASL/Perl.pm;beginline=1;endline=3;md5=17123315bbcda19f484c07227594a609"
|
||||
|
||||
DEPENDS = "perl"
|
||||
RDEPENDS_${PN} = "libdigest-hmac-perl"
|
||||
RDEPENDS:${PN} = "libdigest-hmac-perl"
|
||||
|
||||
SRC_URI = "http://www.cpan.org/authors/id/G/GB/GBARR/Authen-SASL-${PV}.tar.gz \
|
||||
file://run-ptest \
|
||||
|
||||
@@ -22,7 +22,7 @@ S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
RDEPENDS_${PN} = " \
|
||||
RDEPENDS:${PN} = " \
|
||||
perl-module-carp \
|
||||
perl-module-exporter \
|
||||
perl-module-extutils-makemaker \
|
||||
@@ -40,6 +40,6 @@ RDEPENDS_${PN} = " \
|
||||
perl-module-warnings \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest += "perl-module-perlio"
|
||||
RDEPENDS:${PN}-ptest += "perl-module-perlio"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
@@ -16,14 +16,14 @@ S = "${WORKDIR}/CGI-${PV}"
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
RDEPENDS_${PN} += "\
|
||||
RDEPENDS:${PN} += "\
|
||||
libhtml-parser-perl \
|
||||
perl-module-base \
|
||||
perl-module-deprecate \
|
||||
perl-module-if \
|
||||
"
|
||||
|
||||
do_install_prepend() {
|
||||
do_install:prepend() {
|
||||
# requires "-T" (taint) command line option
|
||||
rm -rf ${B}/t/push.t
|
||||
rm -rf ${B}/t/utf8.t
|
||||
@@ -31,7 +31,7 @@ do_install_prepend() {
|
||||
rm -rf ${B}/t/compiles_pod.t
|
||||
}
|
||||
|
||||
RDEPENDS_${PN}-ptest += " \
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
libtest-deep-perl \
|
||||
libtest-warn-perl \
|
||||
perl-module-bytes \
|
||||
@@ -45,6 +45,6 @@ RDEPENDS_${PN}-ptest += " \
|
||||
perl-module-utf8 \
|
||||
"
|
||||
|
||||
RPROVIDES_${PN} += "perl-module-cgi"
|
||||
RPROVIDES:${PN} += "perl-module-cgi"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
@@ -17,7 +17,7 @@ S = "${WORKDIR}/Class-Method-Modifiers-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} = " perl-module-b \
|
||||
RDEPENDS:${PN} = " perl-module-b \
|
||||
perl-module-base \
|
||||
perl-module-carp \
|
||||
perl-module-exporter \
|
||||
|
||||
@@ -18,21 +18,21 @@ SRC_URI = "${CPAN_MIRROR}/authors/id/R/RE/REHSACK/Config-AutoConf-${PV}.tar.gz"
|
||||
|
||||
SRC_URI[md5sum] = "eeeab8cc93eef7dd2e2c343ecdf247b7"
|
||||
SRC_URI[sha256sum] = "304f66cc2653264c0fe127d21669e86d3d18cd72f2574d8f5131beec31a0a33e"
|
||||
RDEPENDS_${PN} += "libcapture-tiny-perl"
|
||||
RDEPENDS_${PN} += "perl-module-base"
|
||||
RDEPENDS_${PN} += "perl-module-carp"
|
||||
RDEPENDS_${PN} += "perl-module-config"
|
||||
RDEPENDS_${PN} += "perl-module-constant"
|
||||
RDEPENDS_${PN} += "perl-module-file-basename"
|
||||
RDEPENDS_${PN} += "perl-module-file-spec"
|
||||
RDEPENDS_${PN} += "perl-module-file-temp"
|
||||
RDEPENDS_${PN} += "perl-module-extutils-cbuilder"
|
||||
RDEPENDS_${PN} += "perl-module-extutils-cbuilder-platform-unix"
|
||||
RDEPENDS_${PN} += "perl-module-scalar-util"
|
||||
RDEPENDS_${PN} += "perl-module-strict"
|
||||
RDEPENDS_${PN} += "perl-module-text-parsewords"
|
||||
RDEPENDS_${PN} += "perl-module-warnings"
|
||||
RRECOMMENDS_${PN} += "libfile-slurper-perl"
|
||||
RDEPENDS:${PN} += "libcapture-tiny-perl"
|
||||
RDEPENDS:${PN} += "perl-module-base"
|
||||
RDEPENDS:${PN} += "perl-module-carp"
|
||||
RDEPENDS:${PN} += "perl-module-config"
|
||||
RDEPENDS:${PN} += "perl-module-constant"
|
||||
RDEPENDS:${PN} += "perl-module-file-basename"
|
||||
RDEPENDS:${PN} += "perl-module-file-spec"
|
||||
RDEPENDS:${PN} += "perl-module-file-temp"
|
||||
RDEPENDS:${PN} += "perl-module-extutils-cbuilder"
|
||||
RDEPENDS:${PN} += "perl-module-extutils-cbuilder-platform-unix"
|
||||
RDEPENDS:${PN} += "perl-module-scalar-util"
|
||||
RDEPENDS:${PN} += "perl-module-strict"
|
||||
RDEPENDS:${PN} += "perl-module-text-parsewords"
|
||||
RDEPENDS:${PN} += "perl-module-warnings"
|
||||
RRECOMMENDS:${PN} += "libfile-slurper-perl"
|
||||
|
||||
S = "${WORKDIR}/Config-AutoConf-${PV}"
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ SRC_URI[sha256sum] = "87c1dd7f0f80fcd3d1396bce9fd9962e7791e748dc0584802f8d10cc95
|
||||
|
||||
DEPENDS += "openssl"
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
RDEPENDS:${PN} = "\
|
||||
perl-module-config \
|
||||
perl-module-exporter \
|
||||
perl-module-extutils-mm \
|
||||
@@ -31,6 +31,6 @@ BBCLASSEXTEND = "native"
|
||||
# for backwards compatibility
|
||||
PROVIDES_${PN} += "libcrypt-openssl-guess"
|
||||
|
||||
RDEPENDS_${PN}-ptest += "\
|
||||
RDEPENDS:${PN}-ptest += "\
|
||||
perl-module-test-more \
|
||||
"
|
||||
|
||||
@@ -19,14 +19,14 @@ EXTRA_CPANFLAGS = "INC='-I${STAGING_INCDIR}' LIBS='-L${STAGING_LIBDIR} -L${STAGI
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
RDEPENDS_${PN} += "\
|
||||
RDEPENDS:${PN} += "\
|
||||
perl-module-exporter \
|
||||
perl-module-strict \
|
||||
perl-module-vars \
|
||||
perl-module-xsloader \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest += "\
|
||||
RDEPENDS:${PN}-ptest += "\
|
||||
perl-module-file-copy \
|
||||
perl-module-test-more \
|
||||
"
|
||||
|
||||
@@ -10,7 +10,7 @@ SRC_URI[sha256sum] = "4173403ad4cf76732192099f833fbfbf3cd8104e0246b3844187ae384d
|
||||
|
||||
DEPENDS += "libcrypt-openssl-guess-perl-native openssl"
|
||||
|
||||
RDEPENDS_${PN} = " \
|
||||
RDEPENDS:${PN} = " \
|
||||
libcrypt-openssl-random-perl \
|
||||
perl-module-autoloader \
|
||||
perl-module-carp \
|
||||
@@ -30,7 +30,7 @@ do_compile() {
|
||||
cpan_do_compile
|
||||
}
|
||||
|
||||
RDEPENDS_${PN}-ptest = " \
|
||||
RDEPENDS:${PN}-ptest = " \
|
||||
${PN} \
|
||||
perl-module-file-copy \
|
||||
perl-module-test \
|
||||
|
||||
@@ -33,6 +33,6 @@ do_install_ptest () {
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
ALTERNATIVES_PRIORITY = "100"
|
||||
ALTERNATIVE_${PN} = "hexdump"
|
||||
ALTERNATIVE:${PN} = "hexdump"
|
||||
ALTERNATIVE_LINK_NAME[hexdump] = "${bindir}/hexdump"
|
||||
|
||||
|
||||
@@ -24,14 +24,14 @@ DEPENDS += "libdbi-perl-native"
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
RDEPENDS_${PN} += "libdbi-perl \
|
||||
RDEPENDS:${PN} += "libdbi-perl \
|
||||
sqlite3 \
|
||||
perl-module-constant \
|
||||
perl-module-locale \
|
||||
perl-module-tie-hash \
|
||||
"
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
if [ ${PERL_DBM_TEST} = "1" ]; then
|
||||
install -m 755 -D ${WORKDIR}/sqlite-perl-test.pl ${D}/${bindir}/sqlite-perl-test.pl
|
||||
fi
|
||||
@@ -42,7 +42,7 @@ do_install_ptest() {
|
||||
chown -R root:root ${D}${PTEST_PATH}
|
||||
}
|
||||
|
||||
RDEPENDS_${PN}-ptest += " \
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
libtest-nowarnings-perl \
|
||||
perl-module-lib \
|
||||
perl-module-encode \
|
||||
|
||||
@@ -17,7 +17,7 @@ S = "${WORKDIR}/Devel-GlobalDestruction-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} = " libsub-exporter-progressive-perl \
|
||||
RDEPENDS:${PN} = " libsub-exporter-progressive-perl \
|
||||
"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
@@ -6,7 +6,7 @@ SECTION = "libs"
|
||||
LICENSE = "Artistic-1.0|GPLv1+"
|
||||
LIC_FILES_CHKSUM = "file://README;beginline=13;endline=17;md5=da980cdc026faa065e5d5004115334e6"
|
||||
|
||||
RDEPENDS_${PN} = "libdigest-sha1-perl perl-module-extutils-makemaker perl-module-digest-md5"
|
||||
RDEPENDS:${PN} = "libdigest-sha1-perl perl-module-extutils-makemaker perl-module-digest-md5"
|
||||
|
||||
SRC_URI = "http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-HMAC-${PV}.tar.gz \
|
||||
file://run-ptest \
|
||||
|
||||
@@ -22,4 +22,4 @@ do_install_ptest () {
|
||||
|
||||
BBCLASSEXTEND="native"
|
||||
|
||||
FILES_${PN}-dbg =+ "${libdir}/perl/vendor_perl/*/auto/Digest/SHA1/.debug/"
|
||||
FILES:${PN}-dbg =+ "${libdir}/perl/vendor_perl/*/auto/Digest/SHA1/.debug/"
|
||||
|
||||
@@ -13,7 +13,7 @@ S = "${WORKDIR}/Encode-Locale-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} += "libencode-perl \
|
||||
RDEPENDS:${PN} += "libencode-perl \
|
||||
libencode-alias-perl \
|
||||
perl-module-base \
|
||||
"
|
||||
|
||||
@@ -23,7 +23,7 @@ S = "${WORKDIR}/Encode-${PV}"
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
do_install_prepend() {
|
||||
do_install:prepend() {
|
||||
# Requires "-T" (taint) option on command line
|
||||
rm -rf ${B}/t/taint.t
|
||||
# Circular dependency of perl-module-open on perl-module-encode
|
||||
@@ -42,9 +42,9 @@ do_install_ptest() {
|
||||
# file /usr/bin/enc2xs from install of perl-misc-5.24.1-r0.i586 conflicts with file from package libencode-perl-2.94-r0.i586
|
||||
# file /usr/bin/encguess from install of perl-misc-5.24.1-r0.i586 conflicts with file from package libencode-perl-2.94-r0.i586
|
||||
# file /usr/bin/piconv from install of perl-misc-5.24.1-r0.i586 conflicts with file from package libencode-perl-2.94-r0.i586
|
||||
RCONFLICTS_${PN} = "perl-misc perl-module-encode"
|
||||
RCONFLICTS:${PN} = "perl-misc perl-module-encode"
|
||||
|
||||
RDEPENDS_${PN} += " \
|
||||
RDEPENDS:${PN} += " \
|
||||
perl-module-bytes \
|
||||
perl-module-constant \
|
||||
perl-module-parent \
|
||||
@@ -52,7 +52,7 @@ RDEPENDS_${PN} += " \
|
||||
perl-module-xsloader \
|
||||
"
|
||||
|
||||
RPROVIDES_${PN} += " \
|
||||
RPROVIDES:${PN} += " \
|
||||
libencode-alias-perl \
|
||||
libencode-byte-perl \
|
||||
libencode-cjkconstants-perl \
|
||||
@@ -82,7 +82,7 @@ RPROVIDES_${PN} += " \
|
||||
libencode-utf_ebcdic-perl \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest += " \
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
perl-module-blib \
|
||||
perl-module-charnames \
|
||||
perl-module-file-compare \
|
||||
|
||||
@@ -15,7 +15,7 @@ S = "${WORKDIR}/ExtUtils-Config-${PV}"
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
RDEPENDS_${PN} = " perl-module-extutils-makemaker \
|
||||
RDEPENDS:${PN} = " perl-module-extutils-makemaker \
|
||||
perl-module-data-dumper \
|
||||
perl-module-ipc-open3 \
|
||||
perl-module-test-more \
|
||||
|
||||
@@ -22,7 +22,7 @@ do_install () {
|
||||
cpan_do_install
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} = " libcapture-tiny-perl \
|
||||
RDEPENDS:${PN} = " libcapture-tiny-perl \
|
||||
perl-module-scalar-util \
|
||||
perl-module-io-file \
|
||||
perl-module-extutils-makemaker \
|
||||
|
||||
@@ -15,7 +15,7 @@ S = "${WORKDIR}/ExtUtils-Helpers-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} = " perl-module-file-copy \
|
||||
RDEPENDS:${PN} = " perl-module-file-copy \
|
||||
perl-module-extutils-makemaker \
|
||||
perl-module-exporter \
|
||||
perl-module-carp \
|
||||
|
||||
@@ -16,7 +16,7 @@ S = "${WORKDIR}/ExtUtils-InstallPaths-${PV}"
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
RDEPENDS_${PN} = " \
|
||||
RDEPENDS:${PN} = " \
|
||||
libextutils-config-perl \
|
||||
perl-module-bytes \
|
||||
perl-module-data-dumper \
|
||||
@@ -25,7 +25,7 @@ RDEPENDS_${PN} = " \
|
||||
perl-module-test-more \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest = " \
|
||||
RDEPENDS:${PN}-ptest = " \
|
||||
${PN} \
|
||||
perl-module-file-spec-functions \
|
||||
perl-module-test-more \
|
||||
|
||||
@@ -21,7 +21,7 @@ S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} += " perl-module-carp \
|
||||
RDEPENDS:${PN} += " perl-module-carp \
|
||||
perl-module-cwd \
|
||||
perl-module-dynaloader \
|
||||
perl-module-extutils-cbuilder \
|
||||
@@ -33,7 +33,7 @@ RDEPENDS_${PN} += " perl-module-carp \
|
||||
perl-module-test-more \
|
||||
"
|
||||
|
||||
RPROVIDES_${PN} += " libextutils-parsexs-constants-perl \
|
||||
RPROVIDES:${PN} += " libextutils-parsexs-constants-perl \
|
||||
libextutils-parsexs-countlines-perl \
|
||||
libextutils-parsexs-eval-perl \
|
||||
libextutils-parsexs-utilities-perl \
|
||||
|
||||
@@ -15,7 +15,7 @@ SRC_URI = "${CPAN_MIRROR}/authors/id/L/LE/LEONT/File-Slurper-${PV}.tar.gz"
|
||||
|
||||
SRC_URI[md5sum] = "5742c63096392dfee50b8db314bcca18"
|
||||
SRC_URI[sha256sum] = "4efb2ea416b110a1bda6f8133549cc6ea3676402e3caf7529fce0313250aa578"
|
||||
RDEPENDS_${PN} = " \
|
||||
RDEPENDS:${PN} = " \
|
||||
perl-module-carp \
|
||||
perl-module-encode \
|
||||
perl-module-exporter \
|
||||
@@ -25,7 +25,7 @@ RDEPENDS_${PN} = " \
|
||||
perl-module-warnings \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest += "libtest-warnings-perl \
|
||||
RDEPENDS:${PN}-ptest += "libtest-warnings-perl \
|
||||
perl-module-test-more \
|
||||
"
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ do_compile() {
|
||||
cpan_do_compile
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} += "\
|
||||
RDEPENDS:${PN} += "\
|
||||
perl-module-exporter \
|
||||
perl-module-strict \
|
||||
perl-module-vars \
|
||||
@@ -31,7 +31,7 @@ RDEPENDS_${PN} += "\
|
||||
libhtml-tagset-perl \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest += "\
|
||||
RDEPENDS:${PN}-ptest += "\
|
||||
liburi-perl \
|
||||
perl-module-config \
|
||||
perl-module-file-spec \
|
||||
|
||||
@@ -17,11 +17,11 @@ S = "${WORKDIR}/HTML-Tagset-${PV}"
|
||||
inherit cpan ptest-perl
|
||||
|
||||
|
||||
RDEPENDS_${PN} += "perl-module-strict perl-module-vars"
|
||||
RDEPENDS:${PN} += "perl-module-strict perl-module-vars"
|
||||
|
||||
RDEPENDS_${PN}-ptest += "perl-module-test"
|
||||
RDEPENDS:${PN}-ptest += "perl-module-test"
|
||||
|
||||
do_install_prepend() {
|
||||
do_install:prepend() {
|
||||
# requires "-T" (taint) command line option
|
||||
rm -rf ${B}/t/pod.t
|
||||
}
|
||||
|
||||
@@ -26,13 +26,13 @@ export PERL_USE_UNSAFE_INC = "1"
|
||||
DEPENDS += "libmodule-build-perl-native \
|
||||
"
|
||||
|
||||
RPROVIDES_${PN} = " libhtml-element-perl \
|
||||
RPROVIDES:${PN} = " libhtml-element-perl \
|
||||
libhtml-tree-assubs-perl \
|
||||
libhtml-tree-perl \
|
||||
libhtml-treebuilder-perl \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN} = " perl-module-b \
|
||||
RDEPENDS:${PN} = " perl-module-b \
|
||||
perl-module-base \
|
||||
perl-module-strict \
|
||||
perl-module-warnings \
|
||||
|
||||
@@ -24,7 +24,7 @@ S = "${WORKDIR}/Import-Into-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} = " libmodule-runtime-perl \
|
||||
RDEPENDS:${PN} = " libmodule-runtime-perl \
|
||||
perl-module-strict \
|
||||
perl-module-warnings \
|
||||
"
|
||||
|
||||
@@ -12,7 +12,7 @@ SECTION = "libs"
|
||||
LICENSE = "Artistic-1.0|GPLv1+"
|
||||
LIC_FILES_CHKSUM = "file://META.yml;beginline=12;endline=12;md5=963ce28228347875ace682de56eef8e8"
|
||||
|
||||
RDEPENDS_${PN} += "\
|
||||
RDEPENDS:${PN} += "\
|
||||
libnet-ssleay-perl \
|
||||
perl-module-autoloader \
|
||||
perl-module-scalar-util \
|
||||
@@ -28,7 +28,7 @@ S = "${WORKDIR}/IO-Socket-SSL-${PV}"
|
||||
|
||||
inherit cpan ptest
|
||||
|
||||
do_install_append () {
|
||||
do_install:append () {
|
||||
mkdir -p ${D}${docdir}/${PN}/
|
||||
cp ${S}/BUGS ${D}${docdir}/${PN}/
|
||||
cp ${S}/Changes ${D}${docdir}/${PN}/
|
||||
|
||||
@@ -17,7 +17,7 @@ S = "${WORKDIR}/IO-stringy-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RPROVIDES_${PN} += " libio-atomicfile-perl \
|
||||
RPROVIDES:${PN} += " libio-atomicfile-perl \
|
||||
libio-innerfile-perl \
|
||||
libio-lines-perl \
|
||||
libio-scalar-perl \
|
||||
|
||||
@@ -21,14 +21,14 @@ S = "${WORKDIR}/MIME-Types-${PV}"
|
||||
|
||||
inherit cpan ptest
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
RDEPENDS:${PN} = "\
|
||||
perl-module-base \
|
||||
perl-module-file-basename \
|
||||
perl-module-file-spec \
|
||||
perl-module-overload \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest = "perl-module-lib perl-module-test-more"
|
||||
RDEPENDS:${PN}-ptest = "perl-module-lib perl-module-test-more"
|
||||
#RSUGGESTS_${PN}-ptest = "libmojo-base-perl"
|
||||
|
||||
do_install () {
|
||||
|
||||
@@ -26,7 +26,7 @@ do_install () {
|
||||
cpan_build_do_install
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} = " libextutils-config-perl \
|
||||
RDEPENDS:${PN} = " libextutils-config-perl \
|
||||
libextutils-helpers-perl \
|
||||
libextutils-installpaths-perl \
|
||||
perl-module-xsloader \
|
||||
|
||||
@@ -30,7 +30,7 @@ S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} = " perl-module-base \
|
||||
RDEPENDS:${PN} = " perl-module-base \
|
||||
perl-module-deprecate \
|
||||
perl-module-file-basename \
|
||||
perl-module-file-find \
|
||||
|
||||
@@ -30,7 +30,7 @@ S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} = " perl-module-test-more \
|
||||
RDEPENDS:${PN} = " perl-module-test-more \
|
||||
perl-module-strict \
|
||||
"
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ S = "${WORKDIR}/Moo-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} = " libclass-method-modifiers-perl \
|
||||
RDEPENDS:${PN} = " libclass-method-modifiers-perl \
|
||||
libdevel-globaldestruction-perl \
|
||||
libmodule-runtime-perl \
|
||||
librole-tiny-perl \
|
||||
@@ -26,7 +26,7 @@ RDEPENDS_${PN} = " libclass-method-modifiers-perl \
|
||||
perl-module-scalar-util \
|
||||
"
|
||||
|
||||
RPROVIDES_${PN} = " libmethod-inliner-perl \
|
||||
RPROVIDES:${PN} = " libmethod-inliner-perl \
|
||||
libmethod-generate-accessor-perl \
|
||||
libmethod-generate-buildall-perl \
|
||||
libmethod-generate-constructor-perl \
|
||||
|
||||
@@ -19,7 +19,7 @@ EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
RDEPENDS_${PN} = " \
|
||||
RDEPENDS:${PN} = " \
|
||||
libdigest-hmac-perl \
|
||||
perl-module-base \
|
||||
perl-module-constant \
|
||||
@@ -37,11 +37,11 @@ RDEPENDS_${PN} = " \
|
||||
perl-module-time-local \
|
||||
"
|
||||
|
||||
RRECOMMENDS_${PN} += " \
|
||||
RRECOMMENDS:${PN} += " \
|
||||
libnet-dns-sec-perl \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest += " \
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
perl-module-encode \
|
||||
perl-module-encode-byte \
|
||||
perl-module-extutils-mm \
|
||||
|
||||
@@ -19,7 +19,7 @@ EXTRA_CPANFLAGS = "INC='-I${STAGING_INCDIR}' LIBS='-L${STAGING_LIBDIR} -lssl -L$
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
RDEPENDS_${PN} = " \
|
||||
RDEPENDS:${PN} = " \
|
||||
libnet-dns-perl \
|
||||
libcrypto \
|
||||
perl-module-dynaloader \
|
||||
|
||||
@@ -18,7 +18,7 @@ S = "${WORKDIR}/perl-ldap-${PV}"
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
do_configure_prepend() {
|
||||
do_configure:prepend() {
|
||||
perl -pi -e 's/auto_install_now.*//g' Makefile.PL
|
||||
}
|
||||
|
||||
@@ -27,14 +27,14 @@ do_install_ptest() {
|
||||
chown -R root:root ${D}${PTEST_PATH}
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} += " \
|
||||
RDEPENDS:${PN} += " \
|
||||
libconvert-asn1-perl \
|
||||
libio-socket-ssl-perl \
|
||||
libauthen-sasl-perl \
|
||||
perl-module-integer \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest += " \
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
libxml-sax-base-perl \
|
||||
libxml-sax-writer-perl \
|
||||
perl-module-file-compare \
|
||||
|
||||
@@ -10,7 +10,7 @@ HOMEPAGE = "http://search.cpan.org/dist/Net-LibIDN/"
|
||||
DEPENDS += "libidn"
|
||||
# We must need glibc-gconvs to enable charset related functions,
|
||||
# such as Net::LibIDN::idn_to_ascii().
|
||||
RDEPENDS_${PN}_append_libc-glibc = " glibc-gconvs"
|
||||
RDEPENDS:${PN}:append:libc-glibc = " glibc-gconvs"
|
||||
|
||||
SRC_URI = "http://search.cpan.org/CPAN/authors/id/T/TH/THOR/Net-LibIDN-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "c3e4de2065009d67bcb1df0afb473e12"
|
||||
@@ -27,8 +27,8 @@ EXTRA_CPANFLAGS += "--disable-tld"
|
||||
|
||||
inherit cpan
|
||||
|
||||
FILES_${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/Net/LibIDN/.debug/"
|
||||
FILES:${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/Net/LibIDN/.debug/"
|
||||
|
||||
do_configure_prepend() {
|
||||
do_configure:prepend() {
|
||||
rm -rf ${S}/.pc/
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ LICENSE = "Artistic-1.0 | GPL-1.0+"
|
||||
LIC_FILES_CHKSUM = "file://README;beginline=274;endline=294;md5=67d67095d83e339da538a082fad5f38e"
|
||||
|
||||
DEPENDS = "openssl zlib openssl-native"
|
||||
RDEPENDS_${PN} += "\
|
||||
RDEPENDS:${PN} += "\
|
||||
libssl \
|
||||
libcrypto \
|
||||
perl-module-carp \
|
||||
@@ -43,6 +43,6 @@ do_install_ptest() {
|
||||
cp -r ${B}/t ${D}${PTEST_PATH}
|
||||
}
|
||||
|
||||
FILES_${PN}-dbg =+ "${libdir}/perl/vendor_perl/*/auto/Net/SSLeay/.debug/"
|
||||
FILES:${PN}-dbg =+ "${libdir}/perl/vendor_perl/*/auto/Net/SSLeay/.debug/"
|
||||
|
||||
RDEPENDS_${PN}-ptest = " perl"
|
||||
RDEPENDS:${PN}-ptest = " perl"
|
||||
|
||||
@@ -22,4 +22,4 @@ S = "${WORKDIR}/Net-Telnet-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} = "perl"
|
||||
RDEPENDS:${PN} = "perl"
|
||||
|
||||
@@ -8,7 +8,7 @@ SECTION = "libraries"
|
||||
LICENSE = "Artistic-1.0|GPLv1+"
|
||||
LIC_FILES_CHKSUM = "file://README;beginline=21;endline=23;md5=f36550f59a0ae5e6e3b0be6a4da60d26"
|
||||
|
||||
RDEPENDS_${PN} += "perl libipc-signal-perl"
|
||||
RDEPENDS:${PN} += "perl libipc-signal-perl"
|
||||
|
||||
S = "${WORKDIR}/Proc-WaitStat-${PV}"
|
||||
|
||||
|
||||
@@ -16,13 +16,13 @@ S = "${WORKDIR}/Role-Tiny-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} = " perl-module-exporter \
|
||||
RDEPENDS:${PN} = " perl-module-exporter \
|
||||
perl-module-strict \
|
||||
perl-module-test-more \
|
||||
perl-module-warnings \
|
||||
"
|
||||
|
||||
RPROVIDES_${PN} = " librole-tiny-perl \
|
||||
RPROVIDES:${PN} = " librole-tiny-perl \
|
||||
librole-tiny-with-perl \
|
||||
"
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ LICENSE = "Artistic-1.0 | GPL-1.0+ | LGPL-2.1+"
|
||||
DEPENDS += "libcapture-tiny-perl-native"
|
||||
DEPENDS += "libconfig-autoconf-perl-native"
|
||||
DEPENDS += "libstatgrab"
|
||||
RDEPENDS_${PN} += "\
|
||||
RDEPENDS:${PN} += "\
|
||||
libstatgrab \
|
||||
perl-module-autoloader \
|
||||
perl-module-carp \
|
||||
|
||||
@@ -36,13 +36,13 @@ S = "${WORKDIR}/strictures-${PV}"
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
RDEPENDS_${PN} += " \
|
||||
RDEPENDS:${PN} += " \
|
||||
perl-module-carp \
|
||||
perl-module-strict \
|
||||
perl-module-test-more \
|
||||
perl-module-warnings \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest += "perl-module-perlio perl-module-perlio-scalar"
|
||||
RDEPENDS:${PN}-ptest += "perl-module-perlio perl-module-perlio-scalar"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
@@ -21,7 +21,7 @@ S = "${WORKDIR}/Sub-Exporter-Progressive-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} += " perl-module-carp \
|
||||
RDEPENDS:${PN} += " perl-module-carp \
|
||||
perl-module-list-util \
|
||||
"
|
||||
|
||||
|
||||
@@ -24,14 +24,14 @@ S = "${WORKDIR}/${CPAN_PACKAGE}-${PV}"
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
RDEPENDS_${PN} += " \
|
||||
RDEPENDS:${PN} += " \
|
||||
perl-module-carp \
|
||||
perl-module-constant \
|
||||
perl-module-strict \
|
||||
perl-module-warnings \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest += " \
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
perl-module-cpan \
|
||||
perl-module-exporter \
|
||||
perl-module-extutils-makemaker \
|
||||
|
||||
@@ -28,11 +28,11 @@ DEPENDS = "libterm-readkey-perl-native"
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
RDEPENDS_${PN}-ptest += " \
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
perl-module-test-more \
|
||||
"
|
||||
|
||||
do_configure_append () {
|
||||
do_configure:append () {
|
||||
# Hack the dynamic module loader so that it use native modules since it can't load
|
||||
# the target ones.
|
||||
if [ "${BUILD_SYS}" != "${HOST_SYS}" ]; then
|
||||
|
||||
@@ -35,7 +35,7 @@ S = "${WORKDIR}/Test-Deep-${PV}"
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
RDEPENDS_${PN} += " \
|
||||
RDEPENDS:${PN} += " \
|
||||
perl-module-dynaloader \
|
||||
perl-module-exporter \
|
||||
perl-module-fcntl \
|
||||
@@ -46,7 +46,7 @@ RDEPENDS_${PN} += " \
|
||||
perl-module-warnings \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest += " \
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
perl-module-if \
|
||||
perl-module-lib \
|
||||
perl-module-test-more \
|
||||
|
||||
@@ -35,11 +35,11 @@ S = "${WORKDIR}/Test-Harness-${PV}"
|
||||
|
||||
inherit cpan ptest-perl
|
||||
|
||||
RDEPENDS_${PN} += "\
|
||||
RDEPENDS:${PN} += "\
|
||||
perl-module-benchmark \
|
||||
"
|
||||
|
||||
RPROVIDES_${PN} += "libapp-prove-perl \
|
||||
RPROVIDES:${PN} += "libapp-prove-perl \
|
||||
libapp-prove-state-perl \
|
||||
libapp-prove-state-result-perl \
|
||||
libapp-prove-state-result-test-perl \
|
||||
@@ -88,7 +88,7 @@ RPROVIDES_${PN} += "libapp-prove-perl \
|
||||
libtap-parser-yamlish-writer-perl \
|
||||
"
|
||||
|
||||
do_install_prepend() {
|
||||
do_install:prepend() {
|
||||
# these tests are inappropriate on target
|
||||
rm -rf ${B}/t/000-load.t
|
||||
rm -rf ${B}/t/state.t
|
||||
@@ -107,7 +107,7 @@ do_install_prepend() {
|
||||
rm -rf ${B}/t/compat/version.t
|
||||
}
|
||||
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
install -d ${D}/usr/local/bin
|
||||
# do not clobber perl-misc /usr/bin/prove
|
||||
install -m 0755 ${B}/bin/prove ${D}/usr/local/bin/
|
||||
@@ -115,6 +115,6 @@ do_install_append() {
|
||||
rm -rf ${D}${bindir}
|
||||
}
|
||||
|
||||
FILES_${PN} += "/usr/local/bin/prove"
|
||||
FILES:${PN} += "/usr/local/bin/prove"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
@@ -28,7 +28,7 @@ SRC_URI = "${CPAN_MIRROR}/authors/id/A/AD/${CPAN_AUTHOR}/${CPAN_PACKAGE}-${PV}.t
|
||||
SRC_URI[md5sum] = "682ed043f7d3e38f3dfd8745fd21c49a"
|
||||
SRC_URI[sha256sum] = "638a57658cb119af1fe5b15e73d47c2544dcfef84af0c6b1b2e97f08202b686c"
|
||||
|
||||
RDEPENDS_${PN} += "perl-module-test-builder perl-module-test-more perl-module-test-tester"
|
||||
RDEPENDS:${PN} += "perl-module-test-builder perl-module-test-more perl-module-test-tester"
|
||||
|
||||
S = "${WORKDIR}/${CPAN_PACKAGE}-${PV}"
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ do_install_ptest() {
|
||||
chown -R root:root ${D}${PTEST_PATH}
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} += " \
|
||||
RDEPENDS:${PN} += " \
|
||||
libsub-uplevel-perl \
|
||||
perl-module-blib \
|
||||
perl-module-carp \
|
||||
@@ -38,7 +38,7 @@ RDEPENDS_${PN} += " \
|
||||
perl-module-test-tester \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest += " \
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
perl-module-file-spec \
|
||||
perl-module-test-more \
|
||||
"
|
||||
|
||||
@@ -19,7 +19,7 @@ S = "${WORKDIR}/Text-Diff-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} = " libalgorithm-diff-perl \
|
||||
RDEPENDS:${PN} = " libalgorithm-diff-perl \
|
||||
perl-module-extutils-makemaker \
|
||||
perl-module-exporter \
|
||||
"
|
||||
|
||||
@@ -10,7 +10,7 @@ documentation."
|
||||
SECTION = "libs"
|
||||
LICENSE = "Artistic-1.0 | GPL-1.0+"
|
||||
LIC_FILES_CHKSUM = "file://README;beginline=3;endline=6;md5=fadf2919c7128e887d26b4d905f90649"
|
||||
RRECOMMENDS_${PN}_append_libc-glibc = " glibc-gconvs"
|
||||
RRECOMMENDS:${PN}:append:libc-glibc = " glibc-gconvs"
|
||||
|
||||
SRC_URI = "http://search.cpan.org/CPAN/authors/id/M/MP/MPIOTR/Text-Iconv-${PV}.tar.gz"
|
||||
|
||||
@@ -21,4 +21,4 @@ S = "${WORKDIR}/Text-Iconv-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
FILES_${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/Text/Iconv/.debug/"
|
||||
FILES:${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/Text/Iconv/.debug/"
|
||||
|
||||
@@ -25,7 +25,7 @@ S = "${WORKDIR}/Text-WrapI18N-${PV}"
|
||||
|
||||
DEPENDS = "libtext-charwidth-perl"
|
||||
|
||||
RDEPENDS_${PN} = "libtext-charwidth-perl"
|
||||
RDEPENDS:${PN} = "libtext-charwidth-perl"
|
||||
|
||||
inherit cpan
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ do_install_ptest() {
|
||||
chown -R root:root ${D}${PTEST_PATH}
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} += " \
|
||||
RDEPENDS:${PN} += " \
|
||||
libmime-charset-perl \
|
||||
libsombok3 \
|
||||
perl-module-carp \
|
||||
@@ -40,14 +40,14 @@ RDEPENDS_${PN} += " \
|
||||
perl-module-xsloader \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-ptest += " \
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
perl-module-findbin \
|
||||
perl-module-lib \
|
||||
perl-module-strict \
|
||||
perl-module-test-more \
|
||||
"
|
||||
|
||||
RPROVIDES_${PN} += " \
|
||||
RPROVIDES:${PN} += " \
|
||||
libtext-linefold-perl \
|
||||
libunicode-gcstring-perl \
|
||||
"
|
||||
|
||||
@@ -10,7 +10,7 @@ SECTION = "libs"
|
||||
LICENSE = "Artistic-1.0 | GPLv1+"
|
||||
HOMEPAGE = "http://search.cpan.org/dist/XML-Filter-BufferText/"
|
||||
DEPENDS += "libxml-sax-perl-native"
|
||||
RDEPENDS_${PN} += "libxml-sax-perl"
|
||||
RDEPENDS:${PN} += "libxml-sax-perl"
|
||||
|
||||
SRC_URI = "http://search.cpan.org/CPAN/authors/id/R/RB/RBERJON/XML-Filter-BufferText-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "2992c0387632583b966ab9c965b25512"
|
||||
|
||||
@@ -13,7 +13,7 @@ DEPENDS += "libxml2 \
|
||||
libxml-sax-perl-native \
|
||||
zlib \
|
||||
"
|
||||
RDEPENDS_${PN} += "\
|
||||
RDEPENDS:${PN} += "\
|
||||
libxml2 \
|
||||
libxml-sax-perl \
|
||||
libxml-sax-base-perl \
|
||||
@@ -44,9 +44,9 @@ BBCLASSEXTEND = "native"
|
||||
CFLAGS += " -D_GNU_SOURCE "
|
||||
BUILD_CFLAGS += " -D_GNU_SOURCE "
|
||||
|
||||
FILES_${PN}-dbg =+ "${libdir}/perl/vendor_perl/*/auto/XML/LibXML/.debug/"
|
||||
FILES:${PN}-dbg =+ "${libdir}/perl/vendor_perl/*/auto/XML/LibXML/.debug/"
|
||||
|
||||
RDEPENDS_${PN}-ptest += " \
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
liburi-perl \
|
||||
perl-module-encode-byte \
|
||||
perl-module-encode-unicode \
|
||||
@@ -55,7 +55,7 @@ RDEPENDS_${PN}-ptest += " \
|
||||
perl-module-test-more \
|
||||
"
|
||||
|
||||
do_install_prepend() {
|
||||
do_install:prepend() {
|
||||
# test requires "-T" (taint) command line option
|
||||
rm -rf ${B}/t/pod.t
|
||||
# this only applies to author build
|
||||
|
||||
@@ -10,7 +10,7 @@ SECTION = "libs"
|
||||
LICENSE = "Artistic-1.0 | GPLv1+"
|
||||
HOMEPAGE = "http://search.cpan.org/dist/XML-SAX-Writer/"
|
||||
DEPENDS += "libxml-filter-buffertext-perl-native"
|
||||
RDEPENDS_${PN} += "libxml-filter-buffertext-perl"
|
||||
RDEPENDS:${PN} += "libxml-filter-buffertext-perl"
|
||||
|
||||
SRC_URI = "http://search.cpan.org/CPAN/authors/id/P/PE/PERIGRIN/XML-SAX-Writer-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "3e3023c648e3003c04de2fb04435f8bd"
|
||||
|
||||
@@ -9,7 +9,7 @@ PACKAGES = "\
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "ptest", "packagegroup-meta-perl-ptest-packages", "", d)} \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-perl = "\
|
||||
RDEPENDS:packagegroup-meta-perl = "\
|
||||
adduser \
|
||||
libalgorithm-diff-perl \
|
||||
libauthen-sasl-perl \
|
||||
@@ -78,12 +78,12 @@ RDEPENDS_packagegroup-meta-perl = "\
|
||||
po4a \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-perl-extended = "\
|
||||
RDEPENDS:packagegroup-meta-perl-extended = "\
|
||||
logcheck \
|
||||
mime-construct \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-meta-perl-ptest-packages = "\
|
||||
RDEPENDS:packagegroup-meta-perl-ptest-packages = "\
|
||||
libmime-types-perl-ptest \
|
||||
libio-socket-ssl-perl-ptest \
|
||||
libdata-hexdump-perl-ptest \
|
||||
|
||||
@@ -21,7 +21,7 @@ DEPENDS = " \
|
||||
libunicode-linebreak-perl \
|
||||
"
|
||||
|
||||
RRECOMMENDS_${PN} = " \
|
||||
RRECOMMENDS:${PN} = " \
|
||||
libtext-wrapi18n-perl \
|
||||
libterm-readkey-perl \
|
||||
liblocale-gettext-perl \
|
||||
|
||||
Reference in New Issue
Block a user