MFH: r522563
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 Approved by: ports-secteam (joneum)
This commit is contained in:
parent
01c6a28f29
commit
03fc8c2708
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/branches/2020Q1/; revision=522680
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user