Date: Wed, 23 Jul 2014 08:30:09 +0000 (UTC) From: Erwin Lansing <erwin@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362636 - head/dns/opendnssec Message-ID: <201407230830.s6N8U9n9018362@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: erwin Date: Wed Jul 23 08:30:09 2014 New Revision: 362636 URL: http://svnweb.freebsd.org/changeset/ports/362636 QAT: https://qat.redports.org/buildarchive/r362636/ Log: - Fix location of libsofthsm.so [1] - Fix depency on sqlite with non-default LOCALBASE [2] - Update to 1.4.6 Updates: Signer Engine: Print secondary server address when logging notify reply errors. Build: Fixed various OpenBSD compatibility issues found by Patrik Lundin <patrik.lundin.swe () gmail.com>. OPENDNSSEC-621: conf.xml: New options: <PidFile> for both enforcer and signer, and <SocketFile> for the signer. New tool: ods-getconf: to retrieve a configuration value from conf.xml given an expression. Bugfixes: OPENDNSSEC-469: ods-ksmutil: 'zone add' command when zonelist.xml.backup can't be written zone is still added to database, solved it by checking the zonelist.xml.backup is writable before adding zones, and add error message when add zone failed. OPENDNSSEC-617: Signer Engine: Fix DNS Input Adapter to not reject zone the first time due to RFC 1982 serial arethmetic. OPENDNSSEC-619: memory leak when signer failed, solved it by add ldns_rr_free(signature) in libhsm.c OPENDNSSEC-627: Signer Engine: Unable to update serial after restart when the backup files has been removed. OPENDNSSEC-628: Signer Engine: Ingored notifies log level is changed from debug to info. OPENDNSSEC-630: Signer Engine: Fix inbound zone transfer for root zone. libhsm: Fixed a few other memory leaks. simple-dnskey-mailer.sh: Fix syntax error. (by Patrik Lundin https://github.com/eest) PR: 191272 [1], 192021 [2], 192023 [3] Submitted by: Andrew Fyfe <andrew@neptune-one.net> [1], jhujhiti@adjectivism.org [2], Jaap Akkerhuis <jaap@NLnetLabs.nl> (maintainer) [3] Modified: head/dns/opendnssec/Makefile head/dns/opendnssec/distinfo head/dns/opendnssec/pkg-plist Modified: head/dns/opendnssec/Makefile ============================================================================== --- head/dns/opendnssec/Makefile Wed Jul 23 08:28:39 2014 (r362635) +++ head/dns/opendnssec/Makefile Wed Jul 23 08:30:09 2014 (r362636) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= opendnssec -PORTVERSION= 1.4.5 -PORTREVISION= 2 +PORTVERSION= 1.4.6 CATEGORIES= dns -MASTER_SITES= http://dist.opendnssec.org/source/ +MASTER_SITES= http://dist.opendnssec.org/source/ MAINTAINER= jaap@NLnetLabs.nl COMMENT= Tool suite for maintaining DNSSEC @@ -53,13 +52,15 @@ SCRIPTDATA= migrate_adapters_1.mysql mig .endif .if ${PORT_OPTIONS:MSQLITE} +CONFIGURE_ARGS+= --with-sqlite3=${LOCALBASE} +CONFIGURE_ARGS+= --with-database-backend=sqlite3 BUILD_DEPENDS+= sqlite3>=3.3.9:${PORTSDIR}/databases/sqlite3 SCRIPTDATA= database_create.sqlite3 migrate_keyshare_sqlite3.pl \ migrate_adapters_1.sqlite3 migrate_to_ng_sqlite.pl .endif .if ${PORT_OPTIONS:MSOFTHSM} -CONFIGURE_ARGS+= --with-pkcs11-softhsm=${LOCALBASE}/lib/libsofthsm.so +CONFIGURE_ARGS+= --with-pkcs11-softhsm=${LOCALBASE}/lib/softhsm/libsofthsm.so RUN_DEPENDS+= softhsm>=1.2.0:${PORTSDIR}/security/softhsm .endif Modified: head/dns/opendnssec/distinfo ============================================================================== --- head/dns/opendnssec/distinfo Wed Jul 23 08:28:39 2014 (r362635) +++ head/dns/opendnssec/distinfo Wed Jul 23 08:30:09 2014 (r362636) @@ -1,2 +1,2 @@ -SHA256 (opendnssec-1.4.5.tar.gz) = c4d4366497ab096c6887c51f7518d546a0419a44dfad1f57d4ec9e67bb95019b -SIZE (opendnssec-1.4.5.tar.gz) = 1009953 +SHA256 (opendnssec-1.4.6.tar.gz) = 53f9c454f331822925d76c9d9e5e7cb3fe2dfb03e3c467f67f9412f10d0fd5ec +SIZE (opendnssec-1.4.6.tar.gz) = 1014314 Modified: head/dns/opendnssec/pkg-plist ============================================================================== --- head/dns/opendnssec/pkg-plist Wed Jul 23 08:28:39 2014 (r362635) +++ head/dns/opendnssec/pkg-plist Wed Jul 23 08:30:09 2014 (r362636) @@ -1,3 +1,4 @@ +bin/ods-getconf bin/ods-hsmspeed bin/ods-hsmutil bin/ods-kaspcheck @@ -42,6 +43,7 @@ man/man5/ods-timing.5.gz man/man7/opendnssec.7.gz man/man8/ods-control.8.gz man/man8/ods-enforcerd.8.gz +man/man8/ods-getconf.8.gz man/man8/ods-signer.8.gz man/man8/ods-signerd.8.gz @owner opendnssec
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407230830.s6N8U9n9018362>