FreeBSD Bugzilla – Attachment 185016 Details for
Bug 221177
dns/knot-resolver: Update to 1.3.2
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Fix various issues in previous patch
knot-resolver.patch (text/plain), 4.64 KB, created by
Matthew Seaman
on 2017-08-04 14:01:10 UTC
(
hide
)
Description:
Fix various issues in previous patch
Filename:
MIME Type:
Creator:
Matthew Seaman
Created:
2017-08-04 14:01:10 UTC
Size:
4.64 KB
patch
obsolete
>Index: Makefile >=================================================================== >--- Makefile (revision 447199) >+++ Makefile (working copy) >@@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= knot-resolver >-PORTVERSION= 1.3.1 >+PORTVERSION= 1.3.2 > CATEGORIES= dns ipv6 > MASTER_SITES= https://secure.nic.cz/files/knot-resolver/ \ > https://dns.company/downloads/knot-resolver/ >@@ -30,38 +30,55 @@ > USE_CSTD= c99 > USE_LDCONFIG= yes > >-OPTIONS_DEFINE= COOKIES DNSTAP DOXYGEN GO MEMCACHED REDIS STATS >+OPTIONS_DEFINE= COOKIES DNSTAP DOXYGEN GO MEMCACHED REDIS TRUSTANCHOR > > COOKIES_DESC= cookies > COOKIES_LIB_DEPENDS= libnettle.so:security/nettle >+COOKIES_MAKE_ARGS_ON= HAS_nettle=yes >+COOKIES_MAKE_ARGS_OFF= HAS_nettle=no >+COOKIES_PLIST_FILES= lib/kdns_modules/cookies.so \ >+ include/libkres/alg_containers.h \ >+ include/libkres/alg_sha.h \ >+ include/libkres/control.h \ >+ include/libkres/helper.h \ >+ include/libkres/lru_cache.h \ >+ include/libkres/nonce.h > > DNSTAP_DESC= dnstap support > DNSTAP_LIB_DEPENDS= libprotobuf.so:devel/protobuf \ > libprotobuf-c.so:devel/protobuf-c \ > libfstrm.so:devel/fstrm >+DNSTAP_MAKE_ARGS_ON= HAS_libprotobuf-c=yes HAS_libfstrm=yes >+DNSTAP_MAKE_ARGS_OFF= HAS_libprotobuf-c=no HAS_libfstrm=no >+DNSTAP_PLIST_FILES= lib/kdns_modules/dnstap.so > > DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen >-DOXYGEN_MAKE_ARGS= HAS_doxygen=yes >+DOXYGEN_MAKE_ARGS_ON= HAS_doxygen=yes > DOXYGEN_MAKE_ARGS_OFF= HAS_doxygen=no > > GO_DESC= go > GO_BUILD_DEPENDS= go>=1.5:lang/go >+GO_MAKE_ARGS_ON= HAS_go=yes >+GO_MAKE_ARGS_OFF= HAS_go=no > > MEMCACHED_DESC= memcached in-memory data-backend > MEMCACHED_LIB_DEPENDS= libmemcached.so:databases/libmemcached >-MEMCACHED_MAKE_ARGS= HAS_libmemcached=yes >+MEMCACHED_MAKE_ARGS_ON= HAS_libmemcached=yes > MEMCACHED_MAKE_ARGS_OFF= HAS_libmemcached=no > MEMCACHED_PLIST_FILES= lib/kdns_modules/kmemcached.so > > REDIS_DESC= redis in-memory data-backend > REDIS_LIB_DEPENDS= libhiredis.so:databases/hiredis >-REDIS_MAKE_ARGS= HAS_hiredis=yes >+REDIS_MAKE_ARGS_ON= HAS_hiredis=yes > REDIS_MAKE_ARGS_OFF= HAS_hiredis=no > REDIS_PLIST_FILES= lib/kdns_modules/redis.so > >-STATS_DESC= stats >-STATS_BUILD_DEPENDS= luasocket:net/luasocket \ >- luasec:security/luasec >+TRUSTANCHOR_DESC= Trust anchor bootstrapping and stats >+TRUSTANCHOR_USES= lua >+TRUSTANCHOR_MAKE_ARGS_ON= HAS_ltn12=yes HAS_ssl.https=yes >+TRUSTANCHOR_MAKE_ARGS_OFF= HAS_ltn12=no HAS_ssl.https=no >+TRUSTANCHOR_BUILD_DEPENDS= ${LUA_PKGNAMEPREFIX}luasocket>=0:net/luasocket \ >+ ${LUA_PKGNAMEPREFIX}luasec>=0:security/luasec > > USERS= kresd > GROUPS= kresd >@@ -68,8 +85,22 @@ > > PORTDOCS= AUTHORS COPYING CodingStyle README.md > >+STRIP_TARGETS= sbin/kresd \ >+ sbin/kresc \ >+ lib/libkres.so.3 \ >+ lib/kdns_modules/cookies.so \ >+ lib/kdns_modules/dnstap.so \ >+ lib/kdns_modules/hints.so \ >+ lib/kdns_modules/kmemcached.so \ >+ lib/kdns_modules/stats.so >+ > post-install: > @${MKDIR} ${STAGEDIR}${DOCSDIR} > ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}/ >+.for STRIP_TGT in ${STRIP_TARGETS} >+ if [ -f ${STAGEDIR}${PREFIX}/${STRIP_TGT} ]; then \ >+ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${STRIP_TGT}; \ >+ fi >+.endfor > > .include <bsd.port.mk> >Index: distinfo >=================================================================== >--- distinfo (revision 447199) >+++ distinfo (working copy) >@@ -1,3 +1,3 @@ >-TIMESTAMP = 1498699706 >-SHA256 (knot-resolver-1.3.1.tar.xz) = cc9631fe1a92628e81e74b324a7f70c0b29840d426de05d7d045fdf85ab01117 >-SIZE (knot-resolver-1.3.1.tar.xz) = 1074804 >+TIMESTAMP = 1501506968 >+SHA256 (knot-resolver-1.3.2.tar.xz) = 846b7496cb6273b831fd52eca09078c0454b06a8a6b792e2125c7b6818246edb >+SIZE (knot-resolver-1.3.2.tar.xz) = 1080224 >Index: pkg-plist >=================================================================== >--- pkg-plist (revision 447199) >+++ pkg-plist (working copy) >@@ -3,21 +3,15 @@ > etc/kresd/config.personal > etc/kresd/config.splitview > etc/kresd/icann-ca.pem >-include/libkres/alg_containers.h >-include/libkres/alg_sha.h > include/libkres/array.h > include/libkres/cache.h > include/libkres/cdb.h > include/libkres/cdb_lmdb.h >-include/libkres/control.h > include/libkres/dnssec.h >-include/libkres/helper.h > include/libkres/layer.h > include/libkres/lru.h >-include/libkres/lru_cache.h > include/libkres/map.h > include/libkres/module.h >-include/libkres/nonce.h > include/libkres/nsec.h > include/libkres/nsec3.h > include/libkres/nsrep.h >@@ -29,7 +23,6 @@ > include/libkres/utils.h > include/libkres/zonecut.h > lib/kdns_modules/aho-corasick.lua >-lib/kdns_modules/cookies.so > lib/kdns_modules/daf.lua > lib/kdns_modules/daf/daf.js > lib/kdns_modules/dns64.lua >@@ -74,3 +67,4 @@ > man/man8/kresd.8.gz > sbin/kresc > sbin/kresd >+
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:
matthew
:
maintainer-approval?
(
freebsd
)
Actions:
View
|
Diff
Attachments on
bug 221177
:
184956
| 185016 |
185225