diff options
author | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2018-07-14 17:17:51 +0800 |
---|---|---|
committer | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2018-07-14 17:17:51 +0800 |
commit | 4bde2935615a2ae6bad29c86536ee59c1910aac2 (patch) | |
tree | 0f4012b8d9f83eec832d1bfe18af75b75d73703c /dns | |
parent | bafa583aa81eaf7525a7dde9c04e6a670bc28fec (diff) | |
download | freebsd-ports-gnome-4bde2935615a2ae6bad29c86536ee59c1910aac2.tar.gz freebsd-ports-gnome-4bde2935615a2ae6bad29c86536ee59c1910aac2.tar.zst freebsd-ports-gnome-4bde2935615a2ae6bad29c86536ee59c1910aac2.zip |
dns/dnsdist: Update to 1.3.2
- Add a note to UPDATING about breaking changes
Changelog: https://dnsdist.org/changelog.html#change-1.3.2
PR: 229742
Submitted by: Ralf van der Enden <tremere@cainites.net>
Approved by: cpm
Diffstat (limited to 'dns')
-rw-r--r-- | dns/dnsdist/Makefile | 3 | ||||
-rw-r--r-- | dns/dnsdist/distinfo | 6 | ||||
-rw-r--r-- | dns/dnsdist/files/patch-boost-1.67 | 53 |
3 files changed, 4 insertions, 58 deletions
diff --git a/dns/dnsdist/Makefile b/dns/dnsdist/Makefile index 4a1f77a14d36..c8080e19e31a 100644 --- a/dns/dnsdist/Makefile +++ b/dns/dnsdist/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= dnsdist -DISTVERSION= 1.3.0 -PORTREVISION= 5 +DISTVERSION= 1.3.2 CATEGORIES= dns net MASTER_SITES= https://downloads.powerdns.com/releases/ \ LOCAL/cpm diff --git a/dns/dnsdist/distinfo b/dns/dnsdist/distinfo index 599974ced8ea..61ffc181baa5 100644 --- a/dns/dnsdist/distinfo +++ b/dns/dnsdist/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1522585108 -SHA256 (dnsdist-1.3.0.tar.bz2) = aa67cd4db8404a13ed4ed1097dd850203dab8a327372f72bb140df11ef7eba08 -SIZE (dnsdist-1.3.0.tar.bz2) = 924183 +TIMESTAMP = 1531293770 +SHA256 (dnsdist-1.3.2.tar.bz2) = 0be7704e5a418a8ed6908fc110ecfb9bc23f270b5af8a5525f1fa934ef0e6bc4 +SIZE (dnsdist-1.3.2.tar.bz2) = 918200 diff --git a/dns/dnsdist/files/patch-boost-1.67 b/dns/dnsdist/files/patch-boost-1.67 deleted file mode 100644 index a0d189c44969..000000000000 --- a/dns/dnsdist/files/patch-boost-1.67 +++ /dev/null @@ -1,53 +0,0 @@ -https://github.com/PowerDNS/pdns/commit/e6a9dde524b5 - ---- dns.hh.orig 2018-03-29 15:25:58 UTC -+++ dns.hh -@@ -235,7 +235,6 @@ inline uint16_t * getFlagsFromDNSHeader(struct dnshead - #define FLAGS_CD_OFFSET (12) - #endif - --#define L theL() - extern time_t s_starttime; - - uint32_t hashQuestion(const char* packet, uint16_t len, uint32_t init); ---- dnsdist-carbon.cc.orig 2018-03-29 15:25:58 UTC -+++ dnsdist-carbon.cc -@@ -27,7 +27,6 @@ - #include "sstuff.hh" - - #include "namespaces.hh" --#undef L - #include "dnsdist.hh" - - GlobalStateHolder<vector<CarbonConfig> > g_carbon; ---- dnsdist.cc.orig 2018-03-29 15:25:58 UTC -+++ dnsdist.cc -@@ -2258,7 +2258,7 @@ try - bindAny(cs->local.sin4.sin_family, cs->udpFD); - - // if (!setSocketTimestamps(cs->udpFD)) -- // L<<Logger::Warning<<"Unable to enable timestamp reporting for socket"<<endl; -+ // g_log<<Logger::Warning<<"Unable to enable timestamp reporting for socket"<<endl; - - - if(IsAnyAddress(cs->local)) { ---- remote_logger.cc.orig 2018-03-29 15:25:58 UTC -+++ remote_logger.cc -@@ -22,7 +22,7 @@ bool RemoteLogger::reconnect() - } - catch(const std::exception& e) { - #ifdef WE_ARE_RECURSOR -- L<<Logger::Warning<<"Error connecting to remote logger "<<d_remote.toStringWithPort()<<": "<<e.what()<<std::endl; -+ g_log<<Logger::Warning<<"Error connecting to remote logger "<<d_remote.toStringWithPort()<<": "<<e.what()<<std::endl; - #else - warnlog("Error connecting to remote logger %s: %s", d_remote.toStringWithPort(), e.what()); - #endif -@@ -63,7 +63,7 @@ void RemoteLogger::worker() - } - catch(const std::runtime_error& e) { - #ifdef WE_ARE_RECURSOR -- L<<Logger::Info<<"Error sending data to remote logger "<<d_remote.toStringWithPort()<<": "<< e.what()<<endl; -+ g_log<<Logger::Info<<"Error sending data to remote logger "<<d_remote.toStringWithPort()<<": "<< e.what()<<endl; - #else - vinfolog("Error sending data to remote logger (%s): %s", d_remote.toStringWithPort(), e.what()); - #endif |