diff options
Diffstat (limited to 'dns')
-rw-r--r-- | dns/Makefile | 2 | ||||
-rw-r--r-- | dns/dnsmasq-devel/Makefile | 2 | ||||
-rw-r--r-- | dns/dnsmasq-devel/distinfo | 6 | ||||
-rw-r--r-- | dns/dnssec-rr/Makefile | 46 | ||||
-rw-r--r-- | dns/dnssec-rr/distinfo | 3 | ||||
-rw-r--r-- | dns/dnssec-rr/files/patch-Makefile | 10 | ||||
-rw-r--r-- | dns/dnssec-rr/files/patch-zone.c | 10 | ||||
-rw-r--r-- | dns/dnssec-rr/pkg-descr | 9 | ||||
-rw-r--r-- | dns/kf6-kdnssd/distinfo | 6 | ||||
-rw-r--r-- | dns/pear-Horde_Idna/Makefile | 2 | ||||
-rw-r--r-- | dns/pear-Net_DNS2/Makefile | 13 | ||||
-rw-r--r-- | dns/pear-Net_DNS2/distinfo | 6 | ||||
-rw-r--r-- | dns/pear-Net_DNS2/pkg-plist | 122 | ||||
-rw-r--r-- | dns/pear-Net_DNS21/Makefile | 23 | ||||
-rw-r--r-- | dns/pear-Net_DNS21/distinfo | 3 | ||||
-rw-r--r-- | dns/pear-Net_DNS21/pkg-descr | 6 | ||||
-rw-r--r-- | dns/py-publicsuffixlist/Makefile | 2 | ||||
-rw-r--r-- | dns/py-publicsuffixlist/distinfo | 6 |
18 files changed, 259 insertions, 18 deletions
diff --git a/dns/Makefile b/dns/Makefile index bb1bcc5070ee..905cf18e2c35 100644 --- a/dns/Makefile +++ b/dns/Makefile @@ -42,6 +42,7 @@ SUBDIR += dnsproxy SUBDIR += dnsrecon SUBDIR += dnsreflector + SUBDIR += dnssec-rr SUBDIR += dnstable SUBDIR += dnstable-convert SUBDIR += dnstop @@ -169,6 +170,7 @@ SUBDIR += pear-File_DNS SUBDIR += pear-Horde_Idna SUBDIR += pear-Net_DNS2 + SUBDIR += pear-Net_DNS21 SUBDIR += powerdns SUBDIR += powerdns-recursor SUBDIR += prometheus-dnssec-exporter diff --git a/dns/dnsmasq-devel/Makefile b/dns/dnsmasq-devel/Makefile index d1889c18e436..79e3d4a4d0a0 100644 --- a/dns/dnsmasq-devel/Makefile +++ b/dns/dnsmasq-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= dnsmasq -DISTVERSION= 2.92test13 # remember to bump PORTEPOCH when going from test to rc! +DISTVERSION= 2.92test14 # remember to bump PORTEPOCH when going from test to rc! # Leave the PORTREVISION in even if 0 to avoid accidental PORTEPOCH bumps: PORTREVISION= 0 PORTEPOCH= 6 diff --git a/dns/dnsmasq-devel/distinfo b/dns/dnsmasq-devel/distinfo index 83ac6d911bd3..bf9c91d33cbb 100644 --- a/dns/dnsmasq-devel/distinfo +++ b/dns/dnsmasq-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749509231 -SHA256 (dnsmasq-2.92test13.tar.xz) = ee47735aeabb9f19cac70d103bec2f26f63fb66fdd50ffa6f6a18df80f00deb6 -SIZE (dnsmasq-2.92test13.tar.xz) = 582912 +TIMESTAMP = 1750716872 +SHA256 (dnsmasq-2.92test14.tar.xz) = cacd60d76b11ead7eacc1bbf3e7ed48cd667989af49b48f1fe4872946dbad51b +SIZE (dnsmasq-2.92test14.tar.xz) = 583132 diff --git a/dns/dnssec-rr/Makefile b/dns/dnssec-rr/Makefile new file mode 100644 index 000000000000..96d05c9969da --- /dev/null +++ b/dns/dnssec-rr/Makefile @@ -0,0 +1,46 @@ +PORTNAME= dnssec-rr +DISTVERSION= 0.2 +CATEGORIES= dns security +MASTER_SITES= https://git.sr.ht/~mcf/dnssec-rr/refs/download/${DISTVERSION}/ + +MAINTAINER= dch@FreeBSD.org +COMMENT= Set of C programs for working with DNSSEC +WWW= https://git.sr.ht/~mcf/dnssec-rr + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libbearssl.so:security/bearssl + +USES= localbase:ldflags + +PLIST_FILES= bin/dnskey \ + bin/ds \ + bin/nsec \ + bin/rrsig \ + bin/tlsa \ + share/man/man1/dnskey.1.gz \ + share/man/man1/ds.1.gz \ + share/man/man1/nsec.1.gz \ + share/man/man1/rrsig.1.gz \ + share/man/man1/tlsa.1.gz + +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +do-install: + ${MKDIR} ${STAGEDIR}${MANDIRS}/man1 +.for i in dnskey ds nsec rrsig tlsa + ${INSTALL_MAN} ${WRKSRC}/$i.1 \ + ${STAGEDIR}${MANDIRS}/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/$i \ + ${STAGEDIR}${PREFIX}/bin +.endfor + +do-install-DOCS-on: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md \ + ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> diff --git a/dns/dnssec-rr/distinfo b/dns/dnssec-rr/distinfo new file mode 100644 index 000000000000..871b3d94cb5b --- /dev/null +++ b/dns/dnssec-rr/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1750592067 +SHA256 (dnssec-rr-0.2.tar.gz) = 658699a0c094ae1715c7b6bc2b638dac24f21f25c889aaf4c27359a4cf40bdaf +SIZE (dnssec-rr-0.2.tar.gz) = 19425 diff --git a/dns/dnssec-rr/files/patch-Makefile b/dns/dnssec-rr/files/patch-Makefile new file mode 100644 index 000000000000..94e2a03ba201 --- /dev/null +++ b/dns/dnssec-rr/files/patch-Makefile @@ -0,0 +1,10 @@ +--- Makefile.orig 2025-06-21 08:07:07 UTC ++++ Makefile +@@ -1,7 +1,5 @@ + .PHONY: all install clean + +--include config.mk +- + PREFIX?=/usr/local + BINDIR?=$(PREFIX)/bin + MANDIR?=$(PREFIX)/share/man diff --git a/dns/dnssec-rr/files/patch-zone.c b/dns/dnssec-rr/files/patch-zone.c new file mode 100644 index 000000000000..448e52f8b919 --- /dev/null +++ b/dns/dnssec-rr/files/patch-zone.c @@ -0,0 +1,10 @@ +--- zone.c.orig 2025-06-21 08:09:31 UTC ++++ zone.c +@@ -4,6 +4,7 @@ + #include <stdio.h> + #include <stdlib.h> + #include <arpa/inet.h> ++#include <sys/socket.h> + #include "dnssec.h" + + struct input { diff --git a/dns/dnssec-rr/pkg-descr b/dns/dnssec-rr/pkg-descr new file mode 100644 index 000000000000..ff114db05955 --- /dev/null +++ b/dns/dnssec-rr/pkg-descr @@ -0,0 +1,9 @@ +A set of tools for working with DNSSEC, using BearSSL for cryptography. + +- dnskey: generate DNSKEY records from private keys +- ds: generate DS records for parent zones +- nsec: generate NSEC records for zones +- rrsig: sign records in zones, generating RRSIG records +- tlsa: generate DANE TLSA records for certificates + +See also https://mforney.org/blog/2020-05-21-securing-your-zone-with-dnssec-and-dane.html diff --git a/dns/kf6-kdnssd/distinfo b/dns/kf6-kdnssd/distinfo index 79584417d53a..8b72ef83a820 100644 --- a/dns/kf6-kdnssd/distinfo +++ b/dns/kf6-kdnssd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746358557 -SHA256 (KDE/frameworks/6.14/kdnssd-6.14.0.tar.xz) = ce903952b908566b99d50a4a549825ea4ef95d7544686cdccccf693b81106199 -SIZE (KDE/frameworks/6.14/kdnssd-6.14.0.tar.xz) = 2269284 +TIMESTAMP = 1749476623 +SHA256 (KDE/frameworks/6.15/kdnssd-6.15.0.tar.xz) = 192164a395ce9f0667184cae78f369a7c0b8acab0e0d073cdedb2a54bc7c4d5a +SIZE (KDE/frameworks/6.15/kdnssd-6.15.0.tar.xz) = 2246100 diff --git a/dns/pear-Horde_Idna/Makefile b/dns/pear-Horde_Idna/Makefile index 24e634117a27..244051a8fd4f 100644 --- a/dns/pear-Horde_Idna/Makefile +++ b/dns/pear-Horde_Idna/Makefile @@ -11,4 +11,6 @@ USE_PHP= dom USE_HORDE_RUN= Horde_Exception +NO_ARCH= yes + .include <bsd.port.mk> diff --git a/dns/pear-Net_DNS2/Makefile b/dns/pear-Net_DNS2/Makefile index e3fa54bf203b..c6000ee89a75 100644 --- a/dns/pear-Net_DNS2/Makefile +++ b/dns/pear-Net_DNS2/Makefile @@ -1,22 +1,27 @@ PORTNAME= Net_DNS2 -PORTVERSION= 1.5.5 +PORTVERSION= 2.0.1 DISTVERSIONPREFIX= v CATEGORIES= dns net pear MAINTAINER= sunpoet@FreeBSD.org COMMENT= PHP Resolver library used to communicate with a DNS server -WWW= https://pear.php.net/package/Net_DNS2 \ +WWW= https://netdns2.com/ \ https://github.com/mikepultz/netdns2 LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= pear +USES= pear:env + +NO_ARCH= yes +NO_BUILD= yes USE_GITHUB= yes GH_ACCOUNT= mikepultz GH_PROJECT= netdns2 -NO_ARCH= yes +do-install: + ${MKDIR} ${STAGEDIR}${DATADIR} + cd ${WRKSRC}/src/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} .include <bsd.port.mk> diff --git a/dns/pear-Net_DNS2/distinfo b/dns/pear-Net_DNS2/distinfo index ae0afddd27ab..aaa38efa3ddd 100644 --- a/dns/pear-Net_DNS2/distinfo +++ b/dns/pear-Net_DNS2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1747715328 -SHA256 (PEAR/mikepultz-netdns2-v1.5.5_GH0.tar.gz) = 69c65d7d1a775d0b4d4a6b0b0ac8cfbb242aa5d2f03b331400ad7c2d1fdf0eb6 -SIZE (PEAR/mikepultz-netdns2-v1.5.5_GH0.tar.gz) = 87826 +TIMESTAMP = 1750188046 +SHA256 (mikepultz-netdns2-v2.0.1_GH0.tar.gz) = 68c945769eecf19ce04527827cd20839b2f593d2112866feaebcecb05f80fbf4 +SIZE (mikepultz-netdns2-v2.0.1_GH0.tar.gz) = 98619 diff --git a/dns/pear-Net_DNS2/pkg-plist b/dns/pear-Net_DNS2/pkg-plist new file mode 100644 index 000000000000..0040627efe66 --- /dev/null +++ b/dns/pear-Net_DNS2/pkg-plist @@ -0,0 +1,122 @@ +%%DATADIR%%/NetDNS2/BitMap.php +%%DATADIR%%/NetDNS2/Cache.php +%%DATADIR%%/NetDNS2/Cache/File.php +%%DATADIR%%/NetDNS2/Cache/Memcached.php +%%DATADIR%%/NetDNS2/Cache/Model/Data.php +%%DATADIR%%/NetDNS2/Cache/Redis.php +%%DATADIR%%/NetDNS2/Cache/Shm.php +%%DATADIR%%/NetDNS2/Client.php +%%DATADIR%%/NetDNS2/Data.php +%%DATADIR%%/NetDNS2/Data/Domain.php +%%DATADIR%%/NetDNS2/Data/IPv4.php +%%DATADIR%%/NetDNS2/Data/IPv6.php +%%DATADIR%%/NetDNS2/Data/Mailbox.php +%%DATADIR%%/NetDNS2/Data/Text.php +%%DATADIR%%/NetDNS2/EDNS.php +%%DATADIR%%/NetDNS2/ENUM/Base.php +%%DATADIR%%/NetDNS2/ENUM/CertFormat.php +%%DATADIR%%/NetDNS2/ENUM/DNSSEC/Algorithm.php +%%DATADIR%%/NetDNS2/ENUM/DNSSEC/Digest.php +%%DATADIR%%/NetDNS2/ENUM/EDNS/Opt.php +%%DATADIR%%/NetDNS2/ENUM/Error.php +%%DATADIR%%/NetDNS2/ENUM/OpCode.php +%%DATADIR%%/NetDNS2/ENUM/RR/Classes.php +%%DATADIR%%/NetDNS2/ENUM/RR/Code.php +%%DATADIR%%/NetDNS2/ENUM/RR/Type.php +%%DATADIR%%/NetDNS2/ENUM/TKEYMode.php +%%DATADIR%%/NetDNS2/Exception.php +%%DATADIR%%/NetDNS2/Header.php +%%DATADIR%%/NetDNS2/Notifier.php +%%DATADIR%%/NetDNS2/Packet.php +%%DATADIR%%/NetDNS2/Packet/Request.php +%%DATADIR%%/NetDNS2/Packet/Response.php +%%DATADIR%%/NetDNS2/PrivateKey.php +%%DATADIR%%/NetDNS2/Question.php +%%DATADIR%%/NetDNS2/RR.php +%%DATADIR%%/NetDNS2/RR/A.php +%%DATADIR%%/NetDNS2/RR/AAAA.php +%%DATADIR%%/NetDNS2/RR/AFSDB.php +%%DATADIR%%/NetDNS2/RR/AMTRELAY.php +%%DATADIR%%/NetDNS2/RR/ANY.php +%%DATADIR%%/NetDNS2/RR/APL.php +%%DATADIR%%/NetDNS2/RR/AVC.php +%%DATADIR%%/NetDNS2/RR/CAA.php +%%DATADIR%%/NetDNS2/RR/CDNSKEY.php +%%DATADIR%%/NetDNS2/RR/CDS.php +%%DATADIR%%/NetDNS2/RR/CERT.php +%%DATADIR%%/NetDNS2/RR/CNAME.php +%%DATADIR%%/NetDNS2/RR/CSYNC.php +%%DATADIR%%/NetDNS2/RR/DHCID.php +%%DATADIR%%/NetDNS2/RR/DLV.php +%%DATADIR%%/NetDNS2/RR/DNAME.php +%%DATADIR%%/NetDNS2/RR/DNSKEY.php +%%DATADIR%%/NetDNS2/RR/DS.php +%%DATADIR%%/NetDNS2/RR/DSYNC.php +%%DATADIR%%/NetDNS2/RR/EID.php +%%DATADIR%%/NetDNS2/RR/EUI48.php +%%DATADIR%%/NetDNS2/RR/EUI64.php +%%DATADIR%%/NetDNS2/RR/GPOS.php +%%DATADIR%%/NetDNS2/RR/HINFO.php +%%DATADIR%%/NetDNS2/RR/HIP.php +%%DATADIR%%/NetDNS2/RR/HTTPS.php +%%DATADIR%%/NetDNS2/RR/IPSECKEY.php +%%DATADIR%%/NetDNS2/RR/ISDN.php +%%DATADIR%%/NetDNS2/RR/KEY.php +%%DATADIR%%/NetDNS2/RR/KX.php +%%DATADIR%%/NetDNS2/RR/L32.php +%%DATADIR%%/NetDNS2/RR/L64.php +%%DATADIR%%/NetDNS2/RR/LOC.php +%%DATADIR%%/NetDNS2/RR/LP.php +%%DATADIR%%/NetDNS2/RR/MX.php +%%DATADIR%%/NetDNS2/RR/NAPTR.php +%%DATADIR%%/NetDNS2/RR/NID.php +%%DATADIR%%/NetDNS2/RR/NIMLOC.php +%%DATADIR%%/NetDNS2/RR/NS.php +%%DATADIR%%/NetDNS2/RR/NSEC.php +%%DATADIR%%/NetDNS2/RR/NSEC3.php +%%DATADIR%%/NetDNS2/RR/NSEC3PARAM.php +%%DATADIR%%/NetDNS2/RR/NUL.php +%%DATADIR%%/NetDNS2/RR/OPENPGPKEY.php +%%DATADIR%%/NetDNS2/RR/OPT.php +%%DATADIR%%/NetDNS2/RR/OPT/CHAIN.php +%%DATADIR%%/NetDNS2/RR/OPT/COOKIE.php +%%DATADIR%%/NetDNS2/RR/OPT/DAU.php +%%DATADIR%%/NetDNS2/RR/OPT/DHU.php +%%DATADIR%%/NetDNS2/RR/OPT/ECS.php +%%DATADIR%%/NetDNS2/RR/OPT/EDE.php +%%DATADIR%%/NetDNS2/RR/OPT/EXPIRE.php +%%DATADIR%%/NetDNS2/RR/OPT/KEEPALIVE.php +%%DATADIR%%/NetDNS2/RR/OPT/KEYTAG.php +%%DATADIR%%/NetDNS2/RR/OPT/N3U.php +%%DATADIR%%/NetDNS2/RR/OPT/NSID.php +%%DATADIR%%/NetDNS2/RR/OPT/PADDING.php +%%DATADIR%%/NetDNS2/RR/OPT/RCHANNEL.php +%%DATADIR%%/NetDNS2/RR/OPT/UL.php +%%DATADIR%%/NetDNS2/RR/OPT/ZONEVERSION.php +%%DATADIR%%/NetDNS2/RR/PTR.php +%%DATADIR%%/NetDNS2/RR/PX.php +%%DATADIR%%/NetDNS2/RR/RESINFO.php +%%DATADIR%%/NetDNS2/RR/RP.php +%%DATADIR%%/NetDNS2/RR/RRSIG.php +%%DATADIR%%/NetDNS2/RR/RT.php +%%DATADIR%%/NetDNS2/RR/SIG.php +%%DATADIR%%/NetDNS2/RR/SMIMEA.php +%%DATADIR%%/NetDNS2/RR/SOA.php +%%DATADIR%%/NetDNS2/RR/SPF.php +%%DATADIR%%/NetDNS2/RR/SRV.php +%%DATADIR%%/NetDNS2/RR/SSHFP.php +%%DATADIR%%/NetDNS2/RR/SVCB.php +%%DATADIR%%/NetDNS2/RR/TA.php +%%DATADIR%%/NetDNS2/RR/TALINK.php +%%DATADIR%%/NetDNS2/RR/TKEY.php +%%DATADIR%%/NetDNS2/RR/TLSA.php +%%DATADIR%%/NetDNS2/RR/TSIG.php +%%DATADIR%%/NetDNS2/RR/TXT.php +%%DATADIR%%/NetDNS2/RR/TYPE65534.php +%%DATADIR%%/NetDNS2/RR/URI.php +%%DATADIR%%/NetDNS2/RR/WKS.php +%%DATADIR%%/NetDNS2/RR/X25.php +%%DATADIR%%/NetDNS2/RR/ZONEMD.php +%%DATADIR%%/NetDNS2/Resolver.php +%%DATADIR%%/NetDNS2/Socket.php +%%DATADIR%%/NetDNS2/Updater.php diff --git a/dns/pear-Net_DNS21/Makefile b/dns/pear-Net_DNS21/Makefile new file mode 100644 index 000000000000..6fdc9a1f0448 --- /dev/null +++ b/dns/pear-Net_DNS21/Makefile @@ -0,0 +1,23 @@ +PORTNAME= Net_DNS2 +PORTVERSION= 1.5.5 +DISTVERSIONPREFIX= v +CATEGORIES= dns net pear +PKGNAMESUFFIX= 1 + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= PHP Resolver library used to communicate with a DNS server +WWW= https://pear.php.net/package/Net_DNS2 \ + https://github.com/mikepultz/netdns2 + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= pear + +NO_ARCH= yes + +USE_GITHUB= yes +GH_ACCOUNT= mikepultz +GH_PROJECT= netdns2 + +.include <bsd.port.mk> diff --git a/dns/pear-Net_DNS21/distinfo b/dns/pear-Net_DNS21/distinfo new file mode 100644 index 000000000000..ae0afddd27ab --- /dev/null +++ b/dns/pear-Net_DNS21/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1747715328 +SHA256 (PEAR/mikepultz-netdns2-v1.5.5_GH0.tar.gz) = 69c65d7d1a775d0b4d4a6b0b0ac8cfbb242aa5d2f03b331400ad7c2d1fdf0eb6 +SIZE (PEAR/mikepultz-netdns2-v1.5.5_GH0.tar.gz) = 87826 diff --git a/dns/pear-Net_DNS21/pkg-descr b/dns/pear-Net_DNS21/pkg-descr new file mode 100644 index 000000000000..18bb93606b8c --- /dev/null +++ b/dns/pear-Net_DNS21/pkg-descr @@ -0,0 +1,6 @@ +Provides (roughly) the same functionality as Net_DNS, but using modern PHP +objects, exceptions for error handling, better sockets support. + +This release is (in most cases) 2x - 10x faster than Net_DNS, as well as +includes more RR's (including DNSSEC RR's), and improved sockets and streams +support. diff --git a/dns/py-publicsuffixlist/Makefile b/dns/py-publicsuffixlist/Makefile index 546755048acc..e8e4599fcf0f 100644 --- a/dns/py-publicsuffixlist/Makefile +++ b/dns/py-publicsuffixlist/Makefile @@ -1,5 +1,5 @@ PORTNAME= publicsuffixlist -PORTVERSION= 1.0.2.20250611 +PORTVERSION= 1.0.2.20250617 CATEGORIES= dns python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/dns/py-publicsuffixlist/distinfo b/dns/py-publicsuffixlist/distinfo index 651286796812..8b675678aefc 100644 --- a/dns/py-publicsuffixlist/distinfo +++ b/dns/py-publicsuffixlist/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749813092 -SHA256 (publicsuffixlist-1.0.2.20250611.tar.gz) = fc9ca4d8c186429e0a50fa7fd09b1e48412e2bed60a61e13ac89053c6a3904f4 -SIZE (publicsuffixlist-1.0.2.20250611.tar.gz) = 105453 +TIMESTAMP = 1750188120 +SHA256 (publicsuffixlist-1.0.2.20250617.tar.gz) = 5042d7fc63f572f92632936efb3ce6432c1a2a464f24fd43f25af742618790e6 +SIZE (publicsuffixlist-1.0.2.20250617.tar.gz) = 105467 |