Port details |
- botan3 Portable, easy to use and efficient C++ crypto library
- 3.7.1 security
=2 3.6.1Version of this port present on the latest quarterly branch. - Maintainer: fluffy@FreeBSD.org
 - Port Added: 2023-08-08 11:09:05
- Last Update: 2025-02-06 19:34:58
- Commit Hash: eb68e13
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- License: BSD2CLAUSE
- WWW:
- https://botan.randombit.net/
- Description:
- Botan is a crypto library written in C++. It provides a variety of
cryptographic algorithms, including common ones such as AES, MD5, SHA,
HMAC, RSA, Diffie-Hellman, DSA, and ECDSA, as well as many others that
are more obscure or specialized. It also offers X.509v3 certificates
and CRLs, and PKCS #10 certificate requests. A message processing
system that uses a filter/pipeline metaphor allows for many common
cryptographic tasks to be completed with just a few lines of code.
Assembly optimizations for common CPUs, including x86, x86-64, and
PowerPC, offers further speedups for critical tasks such as SHA-1
hashing and multiple precision integer operations.
Botan is licensed under the same permissive terms as FreeBSD itself.
¦ ¦ ¦ ¦ 
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- To install the port:
- cd /usr/ports/security/botan3/ && make install clean
- To add the package, run one of these commands:
- pkg install security/botan3
- pkg install botan3
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: botan3
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1738854685
SHA256 (Botan-3.7.1.tar.xz) = fc0620463461caaea8e60f06711d7e437a3ad1eebd6de4ac29c14bbd901ccd1b
SIZE (Botan-3.7.1.tar.xz) = 8659408
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- asio.hpp : devel/boost-libs
- py311-sphinx>=0 : textproc/py-sphinx@py311
- py311-furo>=2022.6.21 : textproc/py-furo@py311
- gmake>=4.4.1 : devel/gmake
- llvm-config15 : devel/llvm15
- python3.11 : lang/python311
- There are no ports dependent upon this port
Configuration Options:
- ===> The following configuration options are available for botan3-3.7.1:
DOCS=on: Build and/or install documentation
MANPAGES=on: Build and/or install manual pages
PYTHON=off: Python bindings or support
SQLITE3=off: SQLite 3 database support
===> Use 'make config' to modify these settings
- Options name:
- security_botan3
- USES:
- compiler:c++20-lang cpe gmake llvm shebangfix tar:xz python:build
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
3.7.1 06 Feb 2025 19:34:58
    |
Dima Panov (fluffy)  |
security/botan3: update to 3.7.1 release (+)
While here, install manpage as botan3.1 to avoid conflicts with botan2 package
Release notes: https://botan.randombit.net/news.html#version-3-7-0-2025-02-04 \
https://botan.randombit.net/news.html#version-3-7-1-2025-02-05 |
3.6.1_1 29 Jan 2025 16:56:42
    |
Piotr Kubaj (pkubaj)  |
security/botan3: fix runtime on powerpc64le
INFO: Assuming target ppc64 is big endian |
3.6.1 06 Nov 2024 15:51:52
    |
Dima Panov (fluffy)  |
security/botan3: update to 3.6.1 release (+)
Changelog: https://botan.randombit.net/news.html#version-3-6-1-2024-10-26
https://botan.randombit.net/news.html#version-3-6-0-2024-10-21 |
3.5.0 01 Oct 2024 18:56:20
    |
Rene Ladan (rene)  |
all: drop support for expired FreeBSD 14.0
Simplify expressions for FreeBSD 13.X
Reviewed by: many
Differential Revision: https://reviews.freebsd.org/D46601 |
3.5.0 04 Aug 2024 00:18:51
    |
Dima Panov (fluffy)  |
security/botan3: update to 3.5.0 release (+)
Changelog: https://botan.randombit.net/news.html#version-3-4-0-2024-04-08 \
https://botan.randombit.net/news.html#version-3-5-0-2024-07-08 |
3.3.0 03 Jun 2024 15:11:59
    |
Piotr Kubaj (pkubaj)  |
security/botan3: fix build on powerpc64
In file included from src/lib/block/aes/aes_power8/aes_power8.cpp:16:
/usr/lib/clang/18/include/altivec.h:17365:10: error:
'__builtin_altivec_crypto_vcipher' needs target feature power8-vector
17365 | return __builtin_altivec_crypto_vcipher(__a, __b); |
3.3.0 29 May 2024 07:05:30
    |
Matthias Andree (mandree)  |
security/botan3: Optimize build, add TEST_TARGET
- relax LLVM requirement, per PR #279136, any llvm from
ports can compile botan3
- pass --compiler-cache if CCACHE_BIN is nonempty to
actually make use of ccache
- replace boost-libs LIB_DEPENDS=libboost_filesystem.so by
BUILD_DEPENDS=...asio.hpp to make purpose clearer and avoid
the stage-qa warning that libboost_filesystem.so is unused.
- add TEST_TARGET for "make test" and WITH_TESTING[_PORTS].
- strip support for FreeBSD before 1300000, end of life.
PR: 279173
Approved by: fluffy@ (maintainer) |
3.3.0 29 May 2024 00:32:21
    |
Matthias Andree (mandree)  |
security/botan3: libc++<16 lacks std::ranges::find, work around
...by using boost::range::find, we already depend on boost already.
PR: 279173
Approved by: portmgr@ (just-fix-it blanket approval) |
3.3.0 22 May 2024 07:39:54
    |
Yuri Victorovich (yuri)  |
security/botan3: Followup to build fix: add comment for clarity |
3.3.0 22 May 2024 01:59:38
    |
Yuri Victorovich (yuri)  |
security/botan3: Unbreak on amd64 and arm64 by using llvm-17
PR: 279136 |
3.3.0 18 May 2024 18:58:46
    |
Yuri Victorovich (yuri)  |
security/botan3: Broken on aarch64, amd64 and 13
Reported by: fallout |
3.3.0 18 Mar 2024 01:48:15
    |
Dima Panov (fluffy)  |
security/botan3: update to 3.3.0 release (+)
Changelog: https://botan.randombit.net/news.html#version-3-3-0-2024-02-20 |
3.2.0 25 Oct 2023 18:29:52
    |
Dima Panov (fluffy)  |
security/botan3: update to 3.2.0 release (+)
Release notes: https://botan.randombit.net/news.html#version-3-2-0-2023-10-09 |
3.1.1 22 Sep 2023 08:28:45
    |
Dima Panov (fluffy)  |
security/botan3: fix build on 12.4 (+)
Botan3 require at least llvm14 to build but 12.4 still have only llvm13 in base
Reported by: pkg-fallout |
3.1.1 25 Aug 2023 21:54:51
    |
Muhammad Moinur Rahman (bofh)  |
security/botan3: Fix build on 14
Approved by: portmgr (blanket)
Sponsored by: The FreeBSD Foundation |
3.1.1 08 Aug 2023 11:02:38
    |
Dima Panov (fluffy)  |
security/botan3: add Botan 3.1.1 release (+)
Introduce Botan 3.x branch as separated concurrent port to allow consumers
migrate in their own progress due to API/ABI incompatibility between 2.x/3.x
releases
Release notes: https://botan.randombit.net/news.html#version-3-0-0-2023-04-11
https://botan.randombit.net/news.html#version-3-1-0-2023-07-11
https://botan.randombit.net/news.html#version-3-1-1-2023-07-13 |