dev-libs/botan: add 3.9.0

CPU_FLAGS_* are gone: https://github.com/randombit/botan/pull/4927.

We could maybe add disabling certain modules for stress-testing compilers
and such but not going to worry for now and the mapping of the USE -> modules
isn't obvious either.

Detection is done at runtime w/ cpuid.

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2025-08-06 06:20:29 +01:00
parent 2afdecb1ce
commit 738d65a449
2 changed files with 197 additions and 0 deletions

View File

@@ -4,3 +4,5 @@ DIST Botan-3.7.1.tar.xz 8659408 BLAKE2B 3cd934bc738c0665c4a5b3ea4391402058ade215
DIST Botan-3.7.1.tar.xz.asc 488 BLAKE2B 6f00bf01f0f02e8cefd926e4b5f70feb8e689ef9286684e45c5d1139a686af649bf44950e7bfc6a9c881d1d233c1ab5d10ee0815e8119e0ffdc89ec62ec5089c SHA512 a3fc9958e606b0bc073287dc45cb4e2143ff3399a8891a4d51a0c25052d9eb395d97bd31eb97b13344a27186e32906a6411927211345f3ae06464acb73eaa3b6
DIST Botan-3.8.1.tar.xz 8706304 BLAKE2B df45f19f4993c9664f7d5dacd0628905147a3461e9ee397daff5decdcfff48bed93c46e43769427d37522b56ae5a943be2ae23aeec9010250a96511a01c77641 SHA512 2a65bac1dc47951603545e344fdccc9483d89c9282a51202304e1d459cebeddf45018cadeabf68dda3f4f471a18a8bf9d01eff8b0ed56570cb8d6122de02ed2a
DIST Botan-3.8.1.tar.xz.asc 488 BLAKE2B b2e0d7789618ef70bbe467a0566aca3423fef1237015dc9e648e32cdc0348b440407fddb50feee0dc14c6fdc2b11208980436e8f9000c7f2962437b2f3bcb3a5 SHA512 0ae7d56f920b84e2892f6d7da83d6711ebaee897775e3a1c291ed722caadbc1de2145b12247d3e620e74d76981c73340f436d00b1e4145e76b43aca1d4c1c9ce
DIST Botan-3.9.0.tar.xz 8769364 BLAKE2B 8fab140fa06c636310d6ac7acc11aafbbe3018099b3897d3adffca14b627093bb85a8e536d75366df88d42894e29a04244f6a50f08497081068f2ac1049a3fba SHA512 50fc581d120619dc8ceadff8f2c6a831992fbb7c74621edcfb266f2bc973e66723e15d855fdad96f46204bdcdb957609c506e02d2d7edbecb67eb54b4bd96fc6
DIST Botan-3.9.0.tar.xz.asc 488 BLAKE2B 033ee79809cabc9433767db755e67174cc8b425980ae154c7d330cdedbc775d5a7b1f62cbab4a07ffae3dcbfb04c08982d4a4c24554ac2d2ba1068a2a3e782f0 SHA512 daf6f467072b8942d1968268d2005e2e3d9cbfa2bdb98a54e8b21bd0ea07332edb473a65b92139c9d0a7c714f358d0fbba183a7af99d406fd0150e381d82f5ba

View File

@@ -0,0 +1,195 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/botan.asc
inherit edo dot-a flag-o-matic multiprocessing ninja-utils python-r1 toolchain-funcs verify-sig
MY_P="Botan-${PV}"
DESCRIPTION="C++ crypto library"
HOMEPAGE="https://botan.randombit.net/"
SRC_URI="https://botan.randombit.net/releases/${MY_P}.tar.xz"
SRC_URI+=" verify-sig? ( https://botan.randombit.net/releases/${MY_P}.tar.xz.asc )"
S="${WORKDIR}/${MY_P}"
LICENSE="BSD-2"
# New major versions are parallel-installable
SLOT="$(ver_cut 1)/$(ver_cut 1-2)" # soname version
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-macos"
IUSE="doc boost bzip2 lzma python static-libs sqlite test tools zlib"
RESTRICT="!test? ( test )"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
# NOTE: Boost is needed at runtime too for the CLI tool.
DEPEND="
boost? ( dev-libs/boost:= )
bzip2? ( >=app-arch/bzip2-1.0.5:= )
lzma? ( app-arch/xz-utils:= )
python? ( ${PYTHON_DEPS} )
sqlite? ( dev-db/sqlite:3= )
zlib? ( >=sys-libs/zlib-1.2.3:= )
"
RDEPEND="
${DEPEND}
!<dev-libs/botan-2.19.3-r1:2[tools]
"
BDEPEND="
${PYTHON_DEPS}
${NINJA_DEPEND}
$(python_gen_any_dep '
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
')
|| ( >=sys-devel/gcc-11:* >=llvm-core/clang-14:* )
verify-sig? ( sec-keys/openpgp-keys-botan )
"
# NOTE: Considering patching Botan?
# Please see upstream's guidance:
# https://botan.randombit.net/handbook/packaging.html#minimize-distribution-patches
python_check_deps() {
use doc || return 0
python_has_version "dev-python/sphinx[${PYTHON_USEDEP}]"
}
pkg_pretend() {
[[ ${MERGE_TYPE} == binary ]] && return
# bug #908958
tc-check-min_ver gcc 11
tc-check-min_ver clang 14
}
src_configure() {
tc-export AR CC CXX
use static-libs && lto-guarantee-fat
python_setup
local disable_modules=(
$(usev !boost 'boost')
)
if [[ -z "${DISABLE_MODULES}" ]] ; then
elog "Disabling module(s): ${disable_modules[@]}"
fi
local chostarch="${CHOST%%-*}"
# Arch specific wrangling
local myos=
case ${CHOST} in
*-darwin*)
myos=darwin
;;
*)
myos=linux
if [[ ${CHOST} == *hppa* ]] ; then
chostarch=parisc
elif [[ ${ABI} == sparc64 ]] ; then
chostarch="sparc64"
elif [[ ${ABI} == sparc32 ]] ; then
chostarch="sparc32"
fi
;;
esac
local pythonvers=()
if use python ; then
_append() {
pythonvers+=( ${EPYTHON/python/} )
}
python_foreach_impl _append
fi
local myargs=(
# We already set this by default in the toolchain
--without-stack-protector
$(use_with boost)
$(use_with bzip2)
$(use_with doc documentation)
$(use_with doc sphinx)
$(use_with lzma)
$(use_enable static-libs static-library)
$(use_with sqlite sqlite3)
$(use_with zlib)
--build-tool=ninja
--cpu=${chostarch}
--docdir=share/doc
--disable-modules=$(IFS=","; echo "${disable_modules[*]}")
--distribution-info="Gentoo ${PVR}"
--libdir="$(get_libdir)"
# Avoid collisions between slots for tools (bug #905700)
--program-suffix=$(ver_cut 1)
# Don't install Python bindings automatically
# (do it manually later in the right place)
# bug #723096
--no-install-python-module
--os=${myos}
--prefix="${EPREFIX}"/usr
--lto-cxxflags-to-ldflags
--with-python-version=$(IFS=","; echo "${pythonvers[*]}")
)
local build_targets=(
shared
$(usev static-libs static)
$(usev tools cli)
$(usev test tests)
)
myargs+=(
--build-targets=$(IFS=","; echo "${build_targets[*]}")
)
if ( use elibc_glibc || use elibc_musl ) && use kernel_linux ; then
myargs+=(
--with-os-features=getrandom,getentropy
)
fi
local sanitizers=()
if is-flagq -fsanitize=address ; then
sanitizers+=( address )
fi
if is-flagq -fsanitize=undefined ; then
sanitizers+=( undefined )
fi
filter-flags '-fsanitize=*'
myargs+=(
--enable-sanitizers=$(IFS=","; echo "${sanitizers[*]}")
)
edo ${EPYTHON} configure.py --verbose "${myargs[@]}"
}
src_compile() {
eninja
}
src_test() {
LD_LIBRARY_PATH="${S}" edo ./botan-test$(ver_cut 1) --test-threads="$(makeopts_jobs)"
}
src_install() {
DESTDIR="${D}" eninja install
strip-lto-bytecode
if [[ -d "${ED}"/usr/share/doc/${P} && ${P} != ${PF} ]] ; then
# --docdir in configure controls the parent directory unfortunately
mv "${ED}"/usr/share/doc/${P} "${ED}"/usr/share/doc/${PF} || die
fi
# Manually install the Python bindings (bug #723096)
if use python ; then
python_foreach_impl python_domodule src/python/botan$(ver_cut 1).py
fi
}