FreeBSD Bugzilla – Attachment 254153 Details for
Bug 281913
dns/dnsdist update to 1.9.7
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Update dnsdist to 1.9.7 and fix Makefile as suggested
dnsdist-1.9.7.patch (text/plain), 3.85 KB, created by
Ralf van der Enden
on 2024-10-11 09:20:03 UTC
(
hide
)
Description:
Update dnsdist to 1.9.7 and fix Makefile as suggested
Filename:
MIME Type:
Creator:
Ralf van der Enden
Created:
2024-10-11 09:20:03 UTC
Size:
3.85 KB
patch
obsolete
>From ce56a0cba8119379dc208cc866fa31786bbeef1f Mon Sep 17 00:00:00 2001 >From: Ralf van der Enden <tremere@cainites.net> >Date: Fri, 4 Oct 2024 15:35:41 +0200 >Subject: [PATCH 1/3] dns/dnsdist: update to 1.9.7 - Fix BUILD_DEPENDS and > LIB_DEPENDS as suggested by committer (vvd) > >PR: 281913 >Approved by: submitter is maintainer >--- > dns/dnsdist/Makefile | 9 ++++----- > dns/dnsdist/distinfo | 6 +++--- > 2 files changed, 7 insertions(+), 8 deletions(-) > >diff --git a/dns/dnsdist/Makefile b/dns/dnsdist/Makefile >index 4c88d776b4..426cc4edee 100644 >--- a/dns/dnsdist/Makefile >+++ b/dns/dnsdist/Makefile >@@ -1,6 +1,5 @@ > PORTNAME= dnsdist >-DISTVERSION= 1.9.6 >-PORTREVISION= 1 >+DISTVERSION= 1.9.7 > CATEGORIES= dns net > MASTER_SITES= https://downloads.powerdns.com/releases/ > >@@ -17,9 +16,9 @@ LICENSE_FILE_MIT= ${WRKSRC}/ext/yahttp/LICENSE > NOT_FOR_ARCHS= i386 > NOT_FOR_ARCHS_REASON= archs with 32-bits time_t are no longer supported by upstream > >-BUILD_DEPENDS= ${LOCALBASE}/lib/libatomic_ops.a:devel/libatomic_ops >-LIB_DEPENDS= libboost_serialization.so:devel/boost-libs \ >- libnghttp2.so:www/libnghttp2 \ >+BUILD_DEPENDS= ${LOCALBASE}/lib/libatomic_ops.a:devel/libatomic_ops \ >+ boost-libs>0:devel/boost-libs >+LIB_DEPENDS= libnghttp2.so:www/libnghttp2 \ > libquiche.so:net/quiche \ > libre2.so:devel/re2 \ > libsodium.so:security/libsodium >diff --git a/dns/dnsdist/distinfo b/dns/dnsdist/distinfo >index 2abc074908..f0339d4ea1 100644 >--- a/dns/dnsdist/distinfo >+++ b/dns/dnsdist/distinfo >@@ -1,3 +1,3 @@ >-TIMESTAMP = 1721310460 >-SHA256 (dnsdist-1.9.6.tar.bz2) = f6c48d95525693fea6bd9422f3fdf69a77c75b06f02ed14ff0f42072f72082c9 >-SIZE (dnsdist-1.9.6.tar.bz2) = 1598874 >+TIMESTAMP = 1728048497 >+SHA256 (dnsdist-1.9.7.tar.bz2) = 285111c2b7dff6bc8a2407106a51c365cc5bf5e6287fe459a29b396c74620332 >+SIZE (dnsdist-1.9.7.tar.bz2) = 1594532 >-- >2.47.0 > > >From 8900d16159367899cec8825bf2adfc096baa7823 Mon Sep 17 00:00:00 2001 >From: Ralf van der Enden <tremere@cainites.net> >Date: Fri, 11 Oct 2024 11:03:29 +0200 >Subject: [PATCH 2/3] dns/dnsdist: add EXTLUA_DESC > >--- > dns/dnsdist/Makefile | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/dns/dnsdist/Makefile b/dns/dnsdist/Makefile >index 426cc4edee..3288e60a3b 100644 >--- a/dns/dnsdist/Makefile >+++ b/dns/dnsdist/Makefile >@@ -56,10 +56,11 @@ OPTIONS_SINGLE_EXTLUA= LUA LUAJIT > > CDB_DESC= CDB backend > DNSTAP_DESC= dnstap support (see dnstap.info) >+EXTLUA_DESC= Lua library > KSVOPT_DESC= Key Value Stores > LMDB_DESC= LMDB backend >-LUAJIT_DESC= Use luajit > LUA_DESC= Use lang/lua >+LUAJIT_DESC= Use luajit > > CDB_LIB_DEPENDS= libcdb.so:databases/tinycdb > CDB_CONFIGURE_ON= CDB_CFLAGS="-I${LOCALBASE}/include" \ >-- >2.47.0 > > >From 086aa43f4e3bef6706f72ff89990babf27fb470b Mon Sep 17 00:00:00 2001 >From: Ralf van der Enden <tremere@cainites.net> >Date: Fri, 11 Oct 2024 11:14:50 +0200 >Subject: [PATCH 3/3] dns/dnsdist: process Makefile with portfmt and add > EXTLUA_DESC > >--- > dns/dnsdist/Makefile | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > >diff --git a/dns/dnsdist/Makefile b/dns/dnsdist/Makefile >index 3288e60a3b..8f53fe9bc4 100644 >--- a/dns/dnsdist/Makefile >+++ b/dns/dnsdist/Makefile >@@ -17,8 +17,8 @@ NOT_FOR_ARCHS= i386 > NOT_FOR_ARCHS_REASON= archs with 32-bits time_t are no longer supported by upstream > > BUILD_DEPENDS= ${LOCALBASE}/lib/libatomic_ops.a:devel/libatomic_ops \ >- boost-libs>0:devel/boost-libs >-LIB_DEPENDS= libnghttp2.so:www/libnghttp2 \ >+ boost-libs>0:devel/boost-libs >+LIB_DEPENDS= libnghttp2.so:www/libnghttp2 \ > libquiche.so:net/quiche \ > libre2.so:devel/re2 \ > libsodium.so:security/libsodium >@@ -59,8 +59,8 @@ DNSTAP_DESC= dnstap support (see dnstap.info) > EXTLUA_DESC= Lua library > KSVOPT_DESC= Key Value Stores > LMDB_DESC= LMDB backend >-LUA_DESC= Use lang/lua > LUAJIT_DESC= Use luajit >+LUA_DESC= Use lang/lua > > CDB_LIB_DEPENDS= libcdb.so:databases/tinycdb > CDB_CONFIGURE_ON= CDB_CFLAGS="-I${LOCALBASE}/include" \ >-- >2.47.0 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
tremere
:
maintainer-approval+
Actions:
View
|
Diff
Attachments on
bug 281913
:
254086
|
254152
| 254153