summaryrefslogtreecommitdiffstats
path: root/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.33.bb
diff options
context:
space:
mode:
authorzhengruoqin <zhengrq.fnst@fujitsu.com>2021-12-21 08:06:31 +0800
committerKhem Raj <raj.khem@gmail.com>2021-12-21 18:49:37 -0800
commit347a9d7456fbc705c58113adf397025a0cd12e24 (patch)
treeecd6c930119d56365333058c36a32cf6ee99609e /meta-perl/recipes-perl/libnet/libnet-dns-perl_1.33.bb
parent917d6c301a8e648e9037dcdd72b3b93806cb9282 (diff)
downloadmeta-openembedded-347a9d7456fbc705c58113adf397025a0cd12e24.tar.gz
libnet-dns-perl: upgrade 1.32 -> 1.33
License-Update: change "the above copyright" to "the original copyright" Changelog: ========= Fix rt.cpan.org #137768 Test t/05-SVCB.t on Perl 5.18.0 fails with deep recursion. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl/libnet/libnet-dns-perl_1.33.bb')
-rw-r--r--meta-perl/recipes-perl/libnet/libnet-dns-perl_1.33.bb65
1 files changed, 65 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.33.bb b/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.33.bb
new file mode 100644
index 0000000000..2c7d793a7b
--- /dev/null
+++ b/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.33.bb
@@ -0,0 +1,65 @@
1DESCRIPTION = "This package contains the DNS.pm module with friends."
2HOMEPAGE = "http://www.net-dns.org/"
3SECTION = "libs"
4LICENSE = "MIT"
5
6LIC_FILES_CHKSUM = "file://README;beginline=252;endline=269;md5=de95b6a896d5f861d724ea854d316a0b"
7
8DEPENDS += "perl"
9
10SRC_URI = "http://search.cpan.org/CPAN/authors/id/N/NL/NLNETLABS/Net-DNS-${PV}.tar.gz"
11
12SRC_URI[sha256sum] = "5a40e7cf524e4bd2c33cf03b82b47d5308b712083aa5ee180b0b5af54c71fbd2"
13
14UPSTREAM_CHECK_REGEX = "Net\-DNS\-(?P<pver>(\d+\.\d+))(?!_\d+).tar"
15
16S = "${WORKDIR}/Net-DNS-${PV}"
17
18EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}"
19
20inherit cpan ptest-perl
21
22RDEPENDS:${PN} = " \
23 libdigest-hmac-perl \
24 perl-module-base \
25 perl-module-constant \
26 perl-module-digest-md5 \
27 perl-module-digest-sha \
28 perl-module-file-spec \
29 perl-module-integer \
30 perl-module-io-file \
31 perl-module-io-select \
32 perl-module-io-socket \
33 perl-module-io-socket-ip \
34 perl-module-mime-base64 \
35 perl-module-scalar-util \
36 perl-module-test-more \
37 perl-module-time-local \
38"
39
40RRECOMMENDS:${PN} += " \
41 libnet-dns-sec-perl \
42"
43
44RDEPENDS:${PN}-ptest += " \
45 perl-module-encode \
46 perl-module-encode-byte \
47 perl-module-extutils-mm \
48 perl-module-extutils-mm-unix \
49 perl-module-overload \
50"
51
52python __anonymous () {
53 # rather than use "find" to determine libc-*.so,
54 # statically export the known paths for glibc and musl
55 import os
56 if d.getVar('TCLIBC') == "glibc":
57 os.environ["LIBC"] = "${STAGING_BASELIBDIR}/libc.so.6"
58 elif d.getVar('TCLIBC') == "musl":
59 os.environ["LIBC"] = "${STAGING_LIBDIR}/libc.so"
60 else:
61 raise bb.parse.SkipRecipe("incompatible with %s C library" %
62 d.getVar('TCLIBC'))
63}
64
65BBCLASSEXTEND = "native"