From 7055b4903ebb7e438d69c40501ebe190111a9dff Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 9 Dec 2025 17:55:20 +0800 Subject: ldns: upgrade 1.8.4 -> 1.9.0 Changelog: =========== * PR #246: Make ldns_calc_keytag() available for CDNSKEY RR * PR #247: Make ldns_key_rr2ds() available for CDNSKEY RR * PR #248: Make ldns_rr_compare_{ds,ds_dnskey}() available for CDS and CDNSKEY RRs. * PR #245: Make drill trace use IPv6 when used with -6 * Fix #254: Unquoted "value" rdata for CAA records fail to validate. Follows the long string unquoted syntax from RFC8659, section 4.1.1. * Fix #266: ldns-read-zone -u fails if a type is the only type in a window and the type modulo 256 is equal to zero. * Fix #271: Intermittent build failure with multi-job builds (make -j). * Add ldns-verify-zone -s option. It checks all signature results, instead of passing by when one RRSIG validates. That prints output for spurious RRSIGs, the failures for them. * Fix RR types NSAP-PTR, GPOS and RESINFO to print unquoted strings. * Fix memory leak when trying to read zones that have equal RRs. the ldns_dnssec_*_add_rr() functions now return LDNS_STATUS_EQUAL_RR when an already existing RR is tried to be added. This is a API change, hence this also bumps the version to 1.9.0 * PR #282: ensure returning pkt with LDNS_STATUS_OK. * PR #286: Fix RR Type AMTRELAY type nogateway, to print relay '.', and memory leaks in parsing it. * DSYNC is no longer a draft RR type and compiled by default * RFC 9824 support: Compact Denial of Existence in DNSSEC * The HHIT and BRID draft RR types * PR #249: If RNG is already seeded, return early. * PR #221: Improve error messages. * PR #256: Use SWIG_AppendOutput to support swig 4.3 * PR #188: Homogenize paths for source files during compilation * Fix #283: ldns-walk fails after update from 1.8.3 to 1.8.4 * PR #200: Allow compiled tests to link to ldns statically via environment variable. * PR #220: Optionally exclude ZONEMD RRs in ldns-compare-zone * Fix #285: A WALLET RR breaks TXT signing. * Fix #287: ldns-verify-zone hangs with missing NSEC3 RRs. Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-oe/recipes-devtools/ldns/ldns_1.8.4.bb | 24 ------------------------ meta-oe/recipes-devtools/ldns/ldns_1.9.0.bb | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+), 24 deletions(-) delete mode 100644 meta-oe/recipes-devtools/ldns/ldns_1.8.4.bb create mode 100644 meta-oe/recipes-devtools/ldns/ldns_1.9.0.bb (limited to 'meta-oe/recipes-devtools') diff --git a/meta-oe/recipes-devtools/ldns/ldns_1.8.4.bb b/meta-oe/recipes-devtools/ldns/ldns_1.8.4.bb deleted file mode 100644 index f071f579df..0000000000 --- a/meta-oe/recipes-devtools/ldns/ldns_1.8.4.bb +++ /dev/null @@ -1,24 +0,0 @@ -SUMMARY = "LDNS is a DNS library that facilitates DNS tool programming" -HOMEPAGE = "https://nlnetlabs.nl/ldns" -LICENSE = "BSD-3-Clause" -LIC_FILES_CHKSUM = "file://LICENSE;md5=34330f15b2b4abbbaaa7623f79a6a019" - -SRC_URI = "https://www.nlnetlabs.nl/downloads/ldns/ldns-${PV}.tar.gz" -SRC_URI[sha256sum] = "838b907594baaff1cd767e95466a7745998ae64bc74be038dccc62e2de2e4247" - -DEPENDS = "openssl" - -inherit autotools-brokensep - -PACKAGECONFIG ??= "" -PACKAGECONFIG[drill] = "--with-drill,--without-drill" - -EXTRA_OECONF = "--with-ssl=${STAGING_EXECPREFIXDIR}" - -do_install:append() { - sed -e 's@[^ ]*-ffile-prefix-map=[^ "]*@@g' \ - -e 's@[^ ]*-fdebug-prefix-map=[^ "]*@@g' \ - -e 's@[^ ]*-fmacro-prefix-map=[^ "]*@@g' \ - -e 's@${RECIPE_SYSROOT}@@g' \ - -i ${D}${libdir}/pkgconfig/*.pc ${D}${bindir}/ldns-config -} diff --git a/meta-oe/recipes-devtools/ldns/ldns_1.9.0.bb b/meta-oe/recipes-devtools/ldns/ldns_1.9.0.bb new file mode 100644 index 0000000000..de75c73207 --- /dev/null +++ b/meta-oe/recipes-devtools/ldns/ldns_1.9.0.bb @@ -0,0 +1,24 @@ +SUMMARY = "LDNS is a DNS library that facilitates DNS tool programming" +HOMEPAGE = "https://nlnetlabs.nl/ldns" +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://LICENSE;md5=34330f15b2b4abbbaaa7623f79a6a019" + +SRC_URI = "https://www.nlnetlabs.nl/downloads/ldns/ldns-${PV}.tar.gz" +SRC_URI[sha256sum] = "abaeed2858fbea84a4eb9833e19e7d23380cc0f3d9b6548b962be42276ffdcb3" + +DEPENDS = "openssl" + +inherit autotools-brokensep + +PACKAGECONFIG ??= "" +PACKAGECONFIG[drill] = "--with-drill,--without-drill" + +EXTRA_OECONF = "--with-ssl=${STAGING_EXECPREFIXDIR}" + +do_install:append() { + sed -e 's@[^ ]*-ffile-prefix-map=[^ "]*@@g' \ + -e 's@[^ ]*-fdebug-prefix-map=[^ "]*@@g' \ + -e 's@[^ ]*-fmacro-prefix-map=[^ "]*@@g' \ + -e 's@${RECIPE_SYSROOT}@@g' \ + -i ${D}${libdir}/pkgconfig/*.pc ${D}${bindir}/ldns-config +} -- cgit v1.2.3-54-g00ecf