mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-07 05:10:20 +00:00
libnet-dns-perl: upgrade 1.17 -> 1.18; enable ptest
* Add UPSTREAM_CHECK_REGEX to ignore DEV releases
* Add RDEPENDS that were missing
* Enable ptest and add RDEPENDS for tests
* Add RRECOMMENDS for libnet-dns-sec-perl
* Upstream release notes:
"""
**** 1.18 Sep 21, 2018
Documentation revised to remove ambigous use of "answer" which
has been used to refer to both the answer section of a packet
and the entire reply packet received from a nameserver.
Fix rt.cpan.org #127018
Net::DNS::ZoneFile->parse() fails if include directory specified.
Fix rt.cpan.org #127012
DNS resolution broken when options ndots used in /etc/resolv.conf
"""
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
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[md5sum] = "28fcbcbf4483a9f23f75be4b9e3e45c8"
|
||||
SRC_URI[sha256sum] = "9a79fd8fea1a708726c18d193ae4437479206ccb20ffa7f0971371e172e2c2e0"
|
||||
|
||||
S = "${WORKDIR}/Net-DNS-${PV}"
|
||||
|
||||
EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS_${PN} = "perl-module-integer"
|
||||
|
||||
do_compile() {
|
||||
export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')"
|
||||
cpan_do_compile
|
||||
}
|
||||
BBCLASSEXTEND = "native"
|
||||
@@ -0,0 +1,66 @@
|
||||
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[md5sum] = "67af7e5c1c339f60c45c1054374bd8ee"
|
||||
SRC_URI[sha256sum] = "52ce1494fc9707fd5a60ed71db5cde727157b7f2363787d730d4d1bd9800a9d3"
|
||||
|
||||
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"
|
||||
Reference in New Issue
Block a user