From owner-dev-commits-ports-branches@freebsd.org Thu Sep 2 20:54:25 2021 Return-Path: Delivered-To: dev-commits-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5F2696672C5; Thu, 2 Sep 2021 20:54:25 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4H0tTF1zrhz3Nn1; Thu, 2 Sep 2021 20:54:25 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2C4FD1FC1F; Thu, 2 Sep 2021 20:54:25 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 182KsPUZ070592; Thu, 2 Sep 2021 20:54:25 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 182KsPB3070591; Thu, 2 Sep 2021 20:54:25 GMT (envelope-from git) Date: Thu, 2 Sep 2021 20:54:25 GMT Message-Id: <202109022054.182KsPB3070591@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org From: Matthias Andree Subject: git: b097c5c96721 - 2021Q3 - dns/dnsmasq-devel: update to v2.86rc3 (MFH, squashed) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: mandree X-Git-Repository: ports X-Git-Refname: refs/heads/2021Q3 X-Git-Reftype: branch X-Git-Commit: b097c5c9672126f607bacdca82479ff1ba7250fa Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the quarterly branches of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2021 20:54:25 -0000 The branch 2021Q3 has been updated by mandree: URL: https://cgit.FreeBSD.org/ports/commit/?id=b097c5c9672126f607bacdca82479ff1ba7250fa commit b097c5c9672126f607bacdca82479ff1ba7250fa Author: Matthias Andree AuthorDate: 2021-07-16 16:26:23 +0000 Commit: Matthias Andree CommitDate: 2021-09-02 20:51:10 +0000 dns/dnsmasq-devel: update to v2.86rc3 (MFH, squashed) CHANGELOG diff from test4: Allow smaller than 64 prefix lengths in synth-domain, with caveats. --synth-domain=1234:4567::/56,example.com is now valid. Make domains generated by --synth-domain appear in replies when in authoritative mode. Ensure CAP_NET_ADMIN capability is available when conntrack is configured. Thanks to Yick Xie for spotting the lack of this. When --dhcp-hostsfile --dhcp-optsfile and --addn-hosts are given a directory as argument, define the order in which files within that directory are read (alphabetical order of filename). Thanks to Ed Wildgoose for the initial patch and motivation for this. (cherry picked from commit 0184db0c0590d7b58913669a6d890bba9257dff7) (cherry picked from commit 35d8b4a982cb1902fdb8e336ced81f1134652367) (cherry picked from commit 47af927eedf2af55ad3e3b96353a101d8d41e632) (cherry picked from commit 64736881ef05a7e44878848bac0622be7504bad8) (cherry picked from commit a41b136cce04e8f822319b992d39f95db2ca5885) (cherry picked from commit 17426ba8b1c664edd43d57c735f2193030e5a170) --- dns/dnsmasq-devel/Makefile | 10 +++++----- dns/dnsmasq-devel/distinfo | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dns/dnsmasq-devel/Makefile b/dns/dnsmasq-devel/Makefile index df47f0a0b1e5..c97b6b157847 100644 --- a/dns/dnsmasq-devel/Makefile +++ b/dns/dnsmasq-devel/Makefile @@ -1,15 +1,15 @@ # Created by: Steven Honson PORTNAME= dnsmasq -DISTVERSION= 2.86test4 +DISTVERSION= 2.86rc3 # Leave the PORTREVISION in even if 0 to avoid accidental PORTEPOCH bumps: PORTREVISION= 0 -PORTEPOCH= 3 # attn - different between -devel and dnsmasq ports! +PORTEPOCH= 4 # attn - different between -devel and dnsmasq ports! CATEGORIES= dns -#MASTER_SITES= https://www.thekelleys.org.uk/dnsmasq/release-candidates/ \ - LOCAL/mandree/ -MASTER_SITES= https://www.thekelleys.org.uk/dnsmasq/test-releases/ \ +MASTER_SITES= https://www.thekelleys.org.uk/dnsmasq/release-candidates/ \ LOCAL/mandree/ +#MASTER_SITES= https://www.thekelleys.org.uk/dnsmasq/test-releases/ \ +# LOCAL/mandree/ PKGNAMESUFFIX= -devel MAINTAINER= mandree@FreeBSD.org diff --git a/dns/dnsmasq-devel/distinfo b/dns/dnsmasq-devel/distinfo index f9cf63429658..4f58a1e768cf 100644 --- a/dns/dnsmasq-devel/distinfo +++ b/dns/dnsmasq-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1624894444 -SHA256 (dnsmasq-2.86test4.tar.xz) = 0b3c79cf4c03d4b6a01f8d20e0e96c2fd9edd33bc23826ffcd0aa9fb21cbefc2 -SIZE (dnsmasq-2.86test4.tar.xz) = 549476 +TIMESTAMP = 1630614912 +SHA256 (dnsmasq-2.86rc3.tar.xz) = 78c25c55603bdf18d8e55d110f0b9d24a71b6c41a6ee518ee0627f30827fc4df +SIZE (dnsmasq-2.86rc3.tar.xz) = 551944