commit:     87de64c9b62052207028376e4ccca24e4f243b03
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 31 23:34:11 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 31 23:34:11 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87de64c9

dev-libs/botan: drop 2.19.3-r2

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/botan/Manifest               |   2 -
 dev-libs/botan/botan-2.19.3-r2.ebuild | 203 ----------------------------------
 2 files changed, 205 deletions(-)

diff --git a/dev-libs/botan/Manifest b/dev-libs/botan/Manifest
index 680925424474..3adbf0a5af95 100644
--- a/dev-libs/botan/Manifest
+++ b/dev-libs/botan/Manifest
@@ -1,5 +1,3 @@
-DIST Botan-2.19.3.tar.xz 6105896 BLAKE2B 
6d7778d9e9a101c76f35c65b0fb0201641cd91967ba934510f3836ee4b924d54cabdc760dd460997679250aa66e1d2a99369cd03f8fb9e7b2fe672d4b355215f
 SHA512 
80012397e2aa7cc88a9536340ac9b770d1195fddda53b9d4cfde82318dd05f9d4f925bbdff773aba99883a701f4d30581e9d5c97e915fa80c3ca2acfa5a92110
-DIST Botan-2.19.3.tar.xz.asc 488 BLAKE2B 
cd86bf77306aad2956cced6ac4fb96081279af88743e87d8fe5437e72e9fa8db8aaf40d0b5cb9c5b3a85204cb7d63c3baa3054126ab4c9a2db527e6835a069d7
 SHA512 
9142f932c958138b4bac32f503a550e6c73b61612690a280dcb98efe8c367aa6bd3cd88b4ed4decec376bb87596a780a21bdcb01d4a3573a1c44fbeb0aa49d23
 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.1.1.tar.xz 8800368 BLAKE2B 
c31365e6bd4106f96a033e5f092c528c0185577f41d9a698d2630ece0f660f87f03e0775ebeb5c4d812819bbc6eb556b5ff15c16f243288ae73c8bf1fbb991ce
 SHA512 
ed6bdadb910b0775245648140212953ed364aa26107f851e39ac5cb664d7f476c519a22cdad41f0e520796c4ebe453c56ca68a2178e39f815d445e9979333795

diff --git a/dev-libs/botan/botan-2.19.3-r2.ebuild 
b/dev-libs/botan/botan-2.19.3-r2.ebuild
deleted file mode 100644
index 60b6a1a16cce..000000000000
--- a/dev-libs/botan/botan-2.19.3-r2.ebuild
+++ /dev/null
@@ -1,203 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/botan.asc
-inherit edo flag-o-matic multiprocessing 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 ~sparc x86 
~ppc-macos"
-IUSE="doc boost bzip2 lzma python static-libs sqlite test tools zlib"
-RESTRICT="!test? ( test )"
-
-CPU_USE=(
-       cpu_flags_arm_{aes,neon}
-       cpu_flags_ppc_altivec
-       cpu_flags_x86_{aes,avx2,popcnt,rdrand,sha,sse2,ssse3,sse4_1,sse4_2}
-)
-
-IUSE+=" ${CPU_USE[@]}"
-
-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-3.0.0-r1:3[tools]
-"
-BDEPEND="
-       ${PYTHON_DEPS}
-       $(python_gen_any_dep '
-               doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-       ')
-       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}]"
-}
-
-src_configure() {
-       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_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)
-
-               --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
-               --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 kernel_linux ; then
-               myargs+=(
-                       --with-os-features=getrandom,getentropy
-               )
-       fi
-
-       tc-export AR CC CXX
-
-       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_test() {
-       LD_LIBRARY_PATH="${S}" edo ./botan-test$(ver_cut 1) 
--test-threads="$(makeopts_jobs)"
-}
-
-src_install() {
-       default
-
-       if [[ -d "${ED}"/usr/share/doc/${P} ]] ; 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
-}

Reply via email to