mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-18 13:11:57 +02:00
**** 1.31 May 2, 2021
Improve implementation of SVCB record.
**** 1.30 Mar 30, 2021
Simplify parsing of multi-line RRs in zone file.
Improve robustness of "dry" resolver tests.
Avoid deep recursion in non-fatal test report.
**** 1.29 Nov 18, 2020
Include test number in summary of failed non-fatal tests.
Remove Net::DNS::SEC specific tests.
Fix faulty test plan in t/08-recurse.t.
**** 1.28 Oct 23, 2020
Eliminate indirect object syntax.
Eliminate grep/map <expression>.
**** 1.27 Sep 11, 2020
Fix rt.cpan.org #133203
Net::DNS::RR::LOC erroneously strips non default values from
string representation
Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
66 lines
1.8 KiB
BlitzBasic
66 lines
1.8 KiB
BlitzBasic
DESCRIPTION = "This package contains the DNS.pm module with friends."
|
|
HOMEPAGE = "http://www.net-dns.org/"
|
|
SECTION = "libs"
|
|
LICENSE = "MIT"
|
|
|
|
LIC_FILES_CHKSUM = "file://README;beginline=252;endline=269;md5=27db37b42cd1a5173a53922d67072bcb"
|
|
|
|
DEPENDS += "perl"
|
|
|
|
SRC_URI = "http://search.cpan.org/CPAN/authors/id/N/NL/NLNETLABS/Net-DNS-${PV}.tar.gz"
|
|
|
|
SRC_URI[sha256sum] = "00024a8e371605c6d8422a27a0a87af8b7cf66f26502102e68ddd4baf7cfc615"
|
|
|
|
UPSTREAM_CHECK_REGEX = "Net\-DNS\-(?P<pver>(\d+\.\d+))(?!_\d+).tar"
|
|
|
|
S = "${WORKDIR}/Net-DNS-${PV}"
|
|
|
|
EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}"
|
|
|
|
inherit cpan ptest-perl
|
|
|
|
RDEPENDS_${PN} = " \
|
|
libdigest-hmac-perl \
|
|
perl-module-base \
|
|
perl-module-constant \
|
|
perl-module-digest-md5 \
|
|
perl-module-digest-sha \
|
|
perl-module-file-spec \
|
|
perl-module-integer \
|
|
perl-module-io-file \
|
|
perl-module-io-select \
|
|
perl-module-io-socket \
|
|
perl-module-io-socket-ip \
|
|
perl-module-mime-base64 \
|
|
perl-module-scalar-util \
|
|
perl-module-test-more \
|
|
perl-module-time-local \
|
|
"
|
|
|
|
RRECOMMENDS_${PN} += " \
|
|
libnet-dns-sec-perl \
|
|
"
|
|
|
|
RDEPENDS_${PN}-ptest += " \
|
|
perl-module-encode \
|
|
perl-module-encode-byte \
|
|
perl-module-extutils-mm \
|
|
perl-module-extutils-mm-unix \
|
|
perl-module-overload \
|
|
"
|
|
|
|
python __anonymous () {
|
|
# rather than use "find" to determine libc-*.so,
|
|
# statically export the known paths for glibc and musl
|
|
import os
|
|
if d.getVar('TCLIBC') == "glibc":
|
|
os.environ["LIBC"] = "${STAGING_BASELIBDIR}/libc.so.6"
|
|
elif d.getVar('TCLIBC') == "musl":
|
|
os.environ["LIBC"] = "${STAGING_LIBDIR}/libc.so"
|
|
else:
|
|
raise bb.parse.SkipRecipe("incompatible with %s C library" %
|
|
d.getVar('TCLIBC'))
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|