diff options
Diffstat (limited to 'dns')
| -rw-r--r-- | dns/dnscontrol/Makefile | 3 | ||||
| -rw-r--r-- | dns/dnscontrol/distinfo | 10 | ||||
| -rw-r--r-- | dns/dnsmasq-devel/Makefile | 4 | ||||
| -rw-r--r-- | dns/dnsmasq-devel/files/patch-inotify | 40 | ||||
| -rw-r--r-- | dns/py-publicsuffixlist/Makefile | 2 | ||||
| -rw-r--r-- | dns/py-publicsuffixlist/distinfo | 6 | ||||
| -rw-r--r-- | dns/rubygem-resolv/Makefile | 2 | ||||
| -rw-r--r-- | dns/rubygem-resolv/distinfo | 6 |
8 files changed, 57 insertions, 16 deletions
diff --git a/dns/dnscontrol/Makefile b/dns/dnscontrol/Makefile index ecaa706971b9..8544e3d643c5 100644 --- a/dns/dnscontrol/Makefile +++ b/dns/dnscontrol/Makefile @@ -1,7 +1,6 @@ PORTNAME= dnscontrol DISTVERSIONPREFIX=v -DISTVERSION= 4.27.1 -PORTREVISION= 1 +DISTVERSION= 4.29.0 CATEGORIES= dns MAINTAINER= decke@FreeBSD.org diff --git a/dns/dnscontrol/distinfo b/dns/dnscontrol/distinfo index b09ae801b6fc..6781c5f45937 100644 --- a/dns/dnscontrol/distinfo +++ b/dns/dnscontrol/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1762689825 -SHA256 (go/dns_dnscontrol/dnscontrol-v4.27.1/v4.27.1.mod) = 05308651eeef032139c119718fb3e79fac0ae226cef5a9cdbcc6b479fbc6827e -SIZE (go/dns_dnscontrol/dnscontrol-v4.27.1/v4.27.1.mod) = 7650 -SHA256 (go/dns_dnscontrol/dnscontrol-v4.27.1/v4.27.1.zip) = cc85a48ce4686f3e9d1b92914adf2dd71a44489cb83c18fa4136f3d231aae94b -SIZE (go/dns_dnscontrol/dnscontrol-v4.27.1/v4.27.1.zip) = 5577171 +TIMESTAMP = 1766133789 +SHA256 (go/dns_dnscontrol/dnscontrol-v4.29.0/v4.29.0.mod) = 48cee65839e17c6353d14bcf710e9a45977acc346dd73ef8075026b4080c47ac +SIZE (go/dns_dnscontrol/dnscontrol-v4.29.0/v4.29.0.mod) = 8630 +SHA256 (go/dns_dnscontrol/dnscontrol-v4.29.0/v4.29.0.zip) = fab7285d4cec09895efa742bb8489a615d604c040f9e51647e5d2dd4b8d5abf7 +SIZE (go/dns_dnscontrol/dnscontrol-v4.29.0/v4.29.0.zip) = 5713579 diff --git a/dns/dnsmasq-devel/Makefile b/dns/dnsmasq-devel/Makefile index 06d297411326..a20c6f643af8 100644 --- a/dns/dnsmasq-devel/Makefile +++ b/dns/dnsmasq-devel/Makefile @@ -1,7 +1,7 @@ PORTNAME= dnsmasq DISTVERSION= 2.92rc3 # remember to bump PORTEPOCH when going from test to rc! # Leave the PORTREVISION in even if 0 to avoid accidental PORTEPOCH bumps: -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 7 CATEGORIES= dns MASTER_SITES= LOCAL/mandree/ \ @@ -56,6 +56,8 @@ CPPFLAGS+= -I${LOCALBASE}/include CONFLICTS_INSTALL= dnsmasq-2* +PATCH_STRIP= -p1 + SUB_FILES= pkg-message PORTDOCS= CHANGELOG CHANGELOG.archive FAQ doc.html setup.html diff --git a/dns/dnsmasq-devel/files/patch-inotify b/dns/dnsmasq-devel/files/patch-inotify new file mode 100644 index 000000000000..c9175850667f --- /dev/null +++ b/dns/dnsmasq-devel/files/patch-inotify @@ -0,0 +1,40 @@ +commit c1d456f4fbf1409b4aa61bbf4d358ddf616353e0 +Author: Matthias Andree <matthias.andree@gmx.de> +Date: Sat Dec 20 10:03:56 2025 +0100 + + Enable inotify support on FreeBSD 15. + + FreeBSD 15.0 has added Linux-compatible inotify support, so + enable it by looking if the version matches. Since FreeBSD inotify has + seen a few bug fixes in 2025H2, so only enable it if + __FreeBSD_version >= 1500068. The latter can be checked through + osreldate.h or sys/param.h; the latter defines more macros that clash + with dnsmasq's, such as MIN and MAX, so use the former. + +diff --git a/src/config.h b/src/config.h +index 0994f95..191c72e 100644 +--- a/src/config.h ++++ b/src/config.h +@@ -142,7 +142,8 @@ HAVE_LOOP + include functionality to probe for and remove DNS forwarding loops. + + HAVE_INOTIFY +- use the Linux inotify facility to efficiently re-read configuration files. ++ use the Linux and FreeBSD >= 15 inotify facility ++ to efficiently re-read configuration files. + + NO_ID + Don't report *.bind CHAOS info to clients, forward such requests upstream instead. +@@ -378,6 +379,12 @@ HAVE_SOCKADDR_SA_LEN + #if defined (HAVE_LINUX_NETWORK) && !defined(NO_INOTIFY) + #define HAVE_INOTIFY + #endif ++#if defined (__FreeBSD__) && __FreeBSD__ + 0 >= 15 ++# include <osreldate.h> ++# if __FreeBSD_version >= 1500068 /* 15.0.0 */ ++# define HAVE_INOTIFY ++# endif ++#endif + + /* This never compiles code, it's only used by the makefile to fingerprint builds. */ + #ifdef DNSMASQ_COMPILE_FLAGS diff --git a/dns/py-publicsuffixlist/Makefile b/dns/py-publicsuffixlist/Makefile index 46a4a3be7830..cdc121fbedc5 100644 --- a/dns/py-publicsuffixlist/Makefile +++ b/dns/py-publicsuffixlist/Makefile @@ -1,5 +1,5 @@ PORTNAME= publicsuffixlist -PORTVERSION= 1.0.2.20251209 +PORTVERSION= 1.0.2.20251217 CATEGORIES= dns python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/dns/py-publicsuffixlist/distinfo b/dns/py-publicsuffixlist/distinfo index 3f236d6061e2..ab1ca8cc68cf 100644 --- a/dns/py-publicsuffixlist/distinfo +++ b/dns/py-publicsuffixlist/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1765895742 -SHA256 (publicsuffixlist-1.0.2.20251209.tar.gz) = dfb863d00dfb9bc071340596229468ae89a75d62546eabce38ebbd8b0d350ca9 -SIZE (publicsuffixlist-1.0.2.20251209.tar.gz) = 107238 +TIMESTAMP = 1766036489 +SHA256 (publicsuffixlist-1.0.2.20251217.tar.gz) = f5e8dbbf240cba4c1c5d426fefd7285362fb6047bc7c0dfdddcc810ba4b6402a +SIZE (publicsuffixlist-1.0.2.20251217.tar.gz) = 107276 diff --git a/dns/rubygem-resolv/Makefile b/dns/rubygem-resolv/Makefile index d29919232439..d5dbc2cfc639 100644 --- a/dns/rubygem-resolv/Makefile +++ b/dns/rubygem-resolv/Makefile @@ -1,5 +1,5 @@ PORTNAME= resolv -PORTVERSION= 0.6.3 +PORTVERSION= 0.7.0 CATEGORIES= dns rubygems MASTER_SITES= RG diff --git a/dns/rubygem-resolv/distinfo b/dns/rubygem-resolv/distinfo index ab57ed214e14..1ee5ced6e4e6 100644 --- a/dns/rubygem-resolv/distinfo +++ b/dns/rubygem-resolv/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1762587428 -SHA256 (rubygem/resolv-0.6.3.gem) = c7a80098be7a2017caa6ea7f8805bb35c7f6df5db9ac614ce2ecdc10a9c4eae5 -SIZE (rubygem/resolv-0.6.3.gem) = 31232 +TIMESTAMP = 1766036623 +SHA256 (rubygem/resolv-0.7.0.gem) = e20ce2c00d1e1d1bd13aa98f52d9b5166509f80f50673084ae54dd26a0b083ad +SIZE (rubygem/resolv-0.7.0.gem) = 28672 |
