dev-libs/botan: drop 3.7.1

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James 2025-11-01 17:41:24 +00:00
parent 89787e8d13
commit 3401802919
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
2 changed files with 0 additions and 226 deletions

View File

@ -1,7 +1,5 @@
DIST Botan-2.19.5.tar.xz 6140148 BLAKE2B ab3a133a84c1beb2efd32fcb1746c13ec58cf24cf28cea43c93e9dd4b45c65a47225ff92139e34e1470cf150f839794e3bbd316df5e72a060f11d03141002b79 SHA512 323930fbabd833a6affd71f90835e4ca31a9632e346dee9c5f396aca898697d0f2993b860f739d02cdf49fa7fbb3a2d306c4790e5d5f39620b2dea284983669c
DIST Botan-2.19.5.tar.xz.asc 488 BLAKE2B 7d52f66f7495ccc249a58ec30206234a9ea4420bcc6e6412593a975bec1173afe55bbcd2c0cbe3859a3fdf547464d3d2949bc03dcb9dbd25c4d5c97589f48202 SHA512 3ba185cf077c109d183fff14270fa60c7be01fd87077e233e6473365111ba83d41448db6d5b5849fe1194c47e84cc2da91a0f75c30ea43538772f13138e472fa
DIST Botan-3.7.1.tar.xz 8659408 BLAKE2B 3cd934bc738c0665c4a5b3ea4391402058ade2159a185ee257aa2746ef8aa29e59873fd0a95dbdf978ce950bab6c25a72975d73b5d17da898cb16bc04ae7b8ba SHA512 f9b5d793642e9f9e9f444de3a0851840b4ed1f5f82804ad60bb5ede62c5a90ea05cb41e8aefcf556caa15da1aaa78ba1fcb040df3365705e3fd9c6a12788b72e
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

View File

@ -1,224 +0,0 @@
# 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 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"
CPU_USE=(
cpu_flags_arm_{aes,neon,sha1,sha2}
cpu_flags_ppc_altivec
cpu_flags_x86_{aes,avx2,popcnt,rdrand,sha,sse2,ssse3,sse4_1,sse4_2}
)
IUSE+=" ${CPU_USE[@]}"
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
if tc-is-gcc && ver_test $(gcc-version) -lt 11 ; then
eerror "Botan needs >=gcc-11 or >=clang-14 to compile."
eerror "Please upgrade GCC: emerge -v1 sys-devel/gcc"
die "GCC version is too old to compile Botan!"
elif tc-is-clang && ver_test $(clang-version) -lt 14 ; then
eerror "Botan needs >=gcc-11 or >=clang-14 to compile."
eerror "Please upgrade Clang: emerge -v1 llvm-core/clang"
die "Clang version is too old to compile Botan!"
fi
}
src_configure() {
tc-export AR CC CXX
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=(
# Intrinsics
# TODO: x86 RDSEED (new CPU_FLAGS_X86?)
# TODO: POWER Crypto (new CPU_FLAGS_PPC?)
$(usev !cpu_flags_arm_aes '--disable-armv8crypto')
$(usev !cpu_flags_arm_neon '--disable-neon')
$(usev !cpu_flags_arm_sha1 '--disable-armv8crypto')
$(usev !cpu_flags_arm_sha2 '--disable-armv8crypto')
$(usev !cpu_flags_ppc_altivec '--disable-altivec')
$(usev !cpu_flags_x86_aes '--disable-aes-ni')
$(usev !cpu_flags_x86_avx2 '--disable-avx2')
$(usev !cpu_flags_x86_popcnt '--disable-bmi2')
$(usev !cpu_flags_x86_rdrand '--disable-rdrand')
$(usev !cpu_flags_x86_sha '--disable-sha-ni')
$(usev !cpu_flags_x86_sse2 '--disable-sse2')
$(usev !cpu_flags_x86_ssse3 '--disable-ssse3')
$(usev !cpu_flags_x86_sse4_1 '--disable-sse4.1')
$(usev !cpu_flags_x86_sse4_2 '--disable-sse4.2')
# HPPA's GCC doesn't support SSP
$(usev hppa '--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-endian="$(tc-endian)"
--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
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
}