Date: Fri, 10 Jan 2020 10:45:10 +0000 (UTC) From: Dima Panov <fluffy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r522563 - head/security/botan2 Message-ID: <202001101045.00AAjA6i075600@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: fluffy Date: Fri Jan 10 10:45:10 2020 New Revision: 522563 URL: https://svnweb.freebsd.org/changeset/ports/522563 Log: security/botan2: update to 2.13.0 release * Fix a bug introduced in 2.12.0 where TLS::Channel::is_active and TLS::Channel::is_closed could simultaneously return true. (GH #2174 #2171) * Use std::shared_ptr instead of boost::shared_ptr in some examples. (GH #2155) * Add Roughtime client (GH #2143 #1842) * Add support for XMSS X.509 certificates (GH #2172) * Add support for X.509 CRLs in FFI layer and Python wrapper (GH #2213) https://botan.randombit.net/news.html PR: 243239 Submitted by: maintainer Approved by: maintainer MFH: 2020Q1 Modified: head/security/botan2/Makefile head/security/botan2/distinfo head/security/botan2/pkg-plist Modified: head/security/botan2/Makefile ============================================================================== --- head/security/botan2/Makefile Fri Jan 10 10:38:54 2020 (r522562) +++ head/security/botan2/Makefile Fri Jan 10 10:45:10 2020 (r522563) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= botan -DISTVERSION= 2.12.1 -PORTREVISION= 1 +DISTVERSION= 2.13.0 CATEGORIES= security MASTER_SITES= http://botan.randombit.net/releases/ PKGNAMESUFFIX= 2 @@ -37,7 +36,8 @@ LDFLAGS+= -pthread DOCSDIR= ${LOCALBASE}/share/doc/${PORTNAME}-${PORTVERSION} _SHLIBVER= ${DISTVERSION:S/./ /g:[2]} -PLIST_SUB= SHLIBVER=${_SHLIBVER} +_SHLIBVERPATCH= ${DISTVERSION:S/./ /g:[3]} +PLIST_SUB= SHLIBVER=${_SHLIBVER} SHLIBVERPATCH=${_SHLIBVERPATCH} PORTDOCS= * OPTIONS_DEFINE= DOCS PYTHON SQLITE3 SSL @@ -78,6 +78,6 @@ post-patch: ${WRKSRC}/src/build-data/cc/clang.txt post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/botan ${STAGEDIR}${PREFIX}/lib/libbotan-2.so.${_SHLIBVER}.${_SHLIBVER}.1 + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/botan ${STAGEDIR}${PREFIX}/lib/libbotan-2.so.${_SHLIBVER}.${_SHLIBVER}.${_SHLIBVERPATCH} .include <bsd.port.mk> Modified: head/security/botan2/distinfo ============================================================================== --- head/security/botan2/distinfo Fri Jan 10 10:38:54 2020 (r522562) +++ head/security/botan2/distinfo Fri Jan 10 10:45:10 2020 (r522563) @@ -1,3 +1,3 @@ -TIMESTAMP = 1574608870 -SHA256 (Botan-2.12.1.tar.xz) = 7e035f142a51fca1359705792627a282456d49749bf62a37a8e48375d41baaa9 -SIZE (Botan-2.12.1.tar.xz) = 5844528 +TIMESTAMP = 1578385259 +SHA256 (Botan-2.13.0.tar.xz) = f57ae42a41e1091bca58f44f41addebd9a390b651603952c881ec89d50187e90 +SIZE (Botan-2.13.0.tar.xz) = 5911360 Modified: head/security/botan2/pkg-plist ============================================================================== --- head/security/botan2/pkg-plist Fri Jan 10 10:38:54 2020 (r522562) +++ head/security/botan2/pkg-plist Fri Jan 10 10:45:10 2020 (r522563) @@ -19,6 +19,7 @@ include/botan-2/botan/asn1_time.h include/botan-2/botan/assert.h include/botan-2/botan/atomic.h include/botan-2/botan/auto_rng.h +include/botan-2/botan/b64_filt.h include/botan-2/botan/base32.h include/botan-2/botan/base58.h include/botan-2/botan/base64.h @@ -123,6 +124,7 @@ include/botan-2/botan/gost_3411.h include/botan-2/botan/hash.h include/botan-2/botan/hash_id.h include/botan-2/botan/hex.h +include/botan-2/botan/hex_filt.h include/botan-2/botan/hkdf.h include/botan-2/botan/hmac.h include/botan-2/botan/hmac_drbg.h @@ -220,6 +222,7 @@ include/botan-2/botan/rfc6979.h include/botan-2/botan/rmd160.h include/botan-2/botan/rng.h include/botan-2/botan/rotate.h +include/botan-2/botan/roughtime.h include/botan-2/botan/rsa.h include/botan-2/botan/salsa20.h include/botan-2/botan/scan_name.h @@ -316,6 +319,6 @@ include/botan-2/botan/zlib.h lib/libbotan-2.a lib/libbotan-2.so lib/libbotan-2.so.%%SHLIBVER%% -lib/libbotan-2.so.%%SHLIBVER%%.%%SHLIBVER%%.1 +lib/libbotan-2.so.%%SHLIBVER%%.%%SHLIBVER%%.%%SHLIBVERPATCH%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/botan2.py libdata/pkgconfig/botan-2.pc
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001101045.00AAjA6i075600>