summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-perl/conf/include/ptest-packagelists-meta-perl.inc2
-rw-r--r--meta-perl/recipes-perl/libnet/libnet-dns-sec-perl_1.10.bb30
-rw-r--r--meta-perl/recipes-perl/libnet/libnet-dns-sec-perl_1.26.bb46
3 files changed, 47 insertions, 31 deletions
diff --git a/meta-perl/conf/include/ptest-packagelists-meta-perl.inc b/meta-perl/conf/include/ptest-packagelists-meta-perl.inc
index 612754635b..fc32c709bc 100644
--- a/meta-perl/conf/include/ptest-packagelists-meta-perl.inc
+++ b/meta-perl/conf/include/ptest-packagelists-meta-perl.inc
@@ -26,6 +26,7 @@ PTESTS_FAST_META_PERL = "\
26 libmime-types-perl \ 26 libmime-types-perl \
27 libmozilla-ca-perl \ 27 libmozilla-ca-perl \
28 libnet-dns-perl \ 28 libnet-dns-perl \
29 libnet-dns-sec-perl \
29 libnet-ldap-perl \ 30 libnet-ldap-perl \
30 libnet-ssleay-perl \ 31 libnet-ssleay-perl \
31 libstrictures-perl \ 32 libstrictures-perl \
@@ -48,7 +49,6 @@ PTESTS_PROBLEMS_META_PERL = "\
48 libconfig-autoconf-perl \ 49 libconfig-autoconf-perl \
49 libhtml-parser-perl \ 50 libhtml-parser-perl \
50 libmodule-build-tiny-perl \ 51 libmodule-build-tiny-perl \
51 libnet-dns-sec-perl \
52 libunix-statgrab \ 52 libunix-statgrab \
53 libxml-libxml-perl \ 53 libxml-libxml-perl \
54" 54"
diff --git a/meta-perl/recipes-perl/libnet/libnet-dns-sec-perl_1.10.bb b/meta-perl/recipes-perl/libnet/libnet-dns-sec-perl_1.10.bb
deleted file mode 100644
index ee365f9328..0000000000
--- a/meta-perl/recipes-perl/libnet/libnet-dns-sec-perl_1.10.bb
+++ /dev/null
@@ -1,30 +0,0 @@
1DESCRIPTION = "DNSSEC extensions to Net::DNS"
2HOMEPAGE = "http://www.net-dns.org/"
3SECTION = "libs"
4
5LICENSE = "MIT"
6LIC_FILES_CHKSUM = "file://README;beginline=165;endline=192;md5=6ef523fa09e8c272675839e21de16bde"
7
8SRC_URI = "${CPAN_MIRROR}/authors/id/W/WI/WILLEM/Net-DNS-SEC-${PV}.tar.gz"
9SRC_URI[sha256sum] = "37a47d4def72d7338f3cc7cd807ec19bd9e2ae638ae656fa536cf0314801989e"
10
11DEPENDS += "openssl"
12
13UPSTREAM_CHECK_REGEX = "Net\-DNS\-SEC\-(?P<pver>(\d+\.\d+))(?!_\d+).tar"
14
15S = "${UNPACKDIR}/Net-DNS-SEC-${PV}"
16
17EXTRA_CPANFLAGS = "INC='-I${STAGING_INCDIR}' LIBS='-L${STAGING_LIBDIR} -lssl -L${STAGING_BASELIBDIR} -lcrypto'"
18
19inherit cpan ptest-perl
20
21RDEPENDS:${PN} = " \
22 libnet-dns-perl \
23 libcrypto \
24 perl-module-dynaloader \
25 perl-module-file-find \
26 perl-module-file-spec \
27 perl-module-io-file \
28 perl-module-mime-base64 \
29 perl-module-test-more \
30"
diff --git a/meta-perl/recipes-perl/libnet/libnet-dns-sec-perl_1.26.bb b/meta-perl/recipes-perl/libnet/libnet-dns-sec-perl_1.26.bb
new file mode 100644
index 0000000000..d0e46783d5
--- /dev/null
+++ b/meta-perl/recipes-perl/libnet/libnet-dns-sec-perl_1.26.bb
@@ -0,0 +1,46 @@
1DESCRIPTION = "DNSSEC extensions to Net::DNS"
2HOMEPAGE = "http://www.net-dns.org/"
3SECTION = "libs"
4
5LICENSE = "MIT"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=2b7e4176275d57d0b036bdccbc01a0e7"
7
8SRC_URI = "${CPAN_MIRROR}/authors/id/N/NL/NLNETLABS/Net-DNS-SEC-${PV}.tar.gz"
9SRC_URI[sha256sum] = "88592c65487fb7b4d05134f2f9c48e649a9cd533a8493c50189b649b4ea711a6"
10
11DEPENDS += "openssl"
12
13UPSTREAM_CHECK_REGEX = "Net\-DNS\-SEC\-(?P<pver>(\d+\.\d+))(?!_\d+).tar"
14
15S = "${UNPACKDIR}/Net-DNS-SEC-${PV}"
16
17EXTRA_CPANFLAGS = "INC='-I${STAGING_INCDIR}' LIBS='-L${STAGING_LIBDIR} -lssl -L${STAGING_BASELIBDIR} -lcrypto'"
18
19inherit cpan ptest-perl
20
21RDEPENDS:${PN} = " \
22 libnet-dns-perl \
23 libcrypto \
24 perl-module-dynaloader \
25 perl-module-file-find \
26 perl-module-file-spec \
27 perl-module-io-file \
28 perl-module-mime-base64 \
29 perl-module-test-more \
30"
31
32do_install_ptest_perl:append(){
33 cp ${D}${PTEST_PATH}/t/TestToolkit.pm ${D}${PTEST_PATH}
34
35 # This test reconciles the perl module's MANIFEST file with the actual files
36 # in the module. This might be useful for package integrity check, but not so
37 # much for runtime testing - and it also requires the whole source tree to
38 # be installed. Rather just remove it.
39 rm ${D}${PTEST_PATH}/t/00-install.t
40}
41
42RDEPENDS:${PN}-ptest += "\
43 libnet-dns-perl \
44 perl-module-extutils-mm-unix \
45 perl-module-file-spec-functions \
46 perl-module-perlio"