commit:     33099cea95157707f2bb6009dbca0bed0eaa5599
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 16 01:55:20 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 16 02:26:54 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33099cea

dev-libs/botan: add 2.18.0

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

 dev-libs/botan/Manifest            |   1 +
 dev-libs/botan/botan-2.18.0.ebuild | 130 +++++++++++++++++++++++++++++++++++++
 2 files changed, 131 insertions(+)

diff --git a/dev-libs/botan/Manifest b/dev-libs/botan/Manifest
index f749e3fb806..8f6761a393d 100644
--- a/dev-libs/botan/Manifest
+++ b/dev-libs/botan/Manifest
@@ -1 +1,2 @@
 DIST Botan-2.17.3.tar.xz 5937596 BLAKE2B 
605e71c959889b459bc26f17d310a33f26c9a51fe00db91db407ac5b96c9ff57bef67a401f71826e83e0d4eda2289c22685957289e6bb357f3693a1bce60f44d
 SHA512 
ead0f144dfb9eca66d0e81e376d0d49f4b0b6bc1599f8cf52299e1753645b5b20100efa004ef5f9571f7bea88958f35db38367fc26f2603890f8f199cc890dbc
+DIST Botan-2.18.0.tar.xz 5941536 BLAKE2B 
2a4182bab5e681fdfeafa113462bf5a31057d7be97d71d0a6e60975b84432dd3932498f42f0b879e216727df4bbfcbf0d844e971df95eaf9cf922280f32858b4
 SHA512 
8613412e3e2fe8b787db7a4d4dbadf60b8fe6b68a84408c600c37cd0b5dbdf3f347a49f5bd88eb8d4f658e927a8b976884146551bf7d256fa80e9675297c0f09

diff --git a/dev-libs/botan/botan-2.18.0.ebuild 
b/dev-libs/botan/botan-2.18.0.ebuild
new file mode 100644
index 00000000000..0fd5992235c
--- /dev/null
+++ b/dev-libs/botan/botan-2.18.0.ebuild
@@ -0,0 +1,130 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit python-r1 toolchain-funcs
+
+MY_P="Botan-${PV}"
+
+DESCRIPTION="C++ crypto library"
+HOMEPAGE="https://botan.randombit.net/";
+SRC_URI="https://botan.randombit.net/releases/${MY_P}.tar.xz";
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="BSD-2"
+SLOT="2/$(ver_cut 1-2)" # soname version
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+IUSE="bindist doc boost bzip2 libressl lzma python ssl static-libs sqlite zlib"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+BDEPEND="
+       ${PYTHON_DEPS}
+       $(python_gen_any_dep '
+               doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+       ')
+"
+
+# NOTE: Boost is needed at runtime too for the CLI tool.
+DEPEND="
+       boost? ( >=dev-libs/boost-1.48:= )
+       bzip2? ( >=app-arch/bzip2-1.0.5:= )
+       lzma? ( app-arch/xz-utils:= )
+       python? ( ${PYTHON_DEPS} )
+       ssl? (
+               !libressl? ( dev-libs/openssl:0=[bindist=] )
+               libressl? ( dev-libs/libressl:0= )
+       )
+       sqlite? ( dev-db/sqlite:3= )
+       zlib? ( >=sys-libs/zlib-1.2.3:= )
+"
+
+RDEPEND="${DEPEND}"
+
+# NOTE: Considering patching Botan?
+# Please see upstream's guidance:
+# 
https://botan.randombit.net/handbook/packaging.html#minimize-distribution-patches
+
+python_check_deps() {
+       if use doc ; then
+               has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]" || return 1
+       fi
+}
+
+src_configure() {
+       local disable_modules=()
+       use boost || disable_modules+=( "boost" )
+       use bindist && disable_modules+=( "ecdsa" )
+       elog "Disabling module(s): ${disable_modules[@]}"
+
+       # Enable v9 instructions for sparc64
+       local chostarch="${CHOST%%-*}"
+       if [[ "${PROFILE_ARCH}" = "sparc64" ]] ; then
+               chostarch="sparc32-v9"
+       fi
+
+       local myos=
+       case ${CHOST} in
+               *-darwin*) myos=darwin ;;
+               *) myos=linux  ;;
+       esac
+
+       case ${CHOST} in
+               hppa*) chostarch=parisc ;;
+       esac
+
+       local pythonvers=()
+       if use python ; then
+               _append() {
+                       pythonvers+=( ${EPYTHON/python/} )
+               }
+
+               python_foreach_impl _append
+       fi
+
+       # Don't install Python bindings automatically
+       # (do it manually later in the right place)
+       # https://bugs.gentoo.org/723096
+       local myargs=(
+               $(use_enable static-libs static-library)
+               $(use_with boost)
+               $(use_with bzip2)
+               $(use_with doc documentation)
+               $(use_with doc sphinx)
+               $(use_with lzma)
+               $(use_with sqlite sqlite3)
+               $(use_with ssl openssl)
+               $(use_with zlib)
+               $(usex hppa --without-stack-protector '')
+               --cpu=${chostarch}
+               --disable-modules=$( IFS=","; echo "${disable_modules[*]}" )
+               --docdir=share/doc
+               --libdir=$(get_libdir)
+               --os=${myos}
+               --distribution-info="Gentoo ${PVR}"
+               --prefix="${EPREFIX}/usr"
+               --with-endian="$(tc-endian)"
+               --with-python-version=$( IFS=","; echo "${pythonvers[*]}" )
+               --without-doxygen
+               --no-install-python-module
+       )
+
+       tc-export CC CXX AR
+
+       ./configure.py "${myargs[@]}" || die "configure.py failed"
+}
+
+src_test() {
+       LD_LIBRARY_PATH="${S}" ./botan-test || die "Validation tests failed"
+}
+
+src_install() {
+       default
+
+       # Manually install the Python bindings (bug #723096)
+       if use python ; then
+               python_foreach_impl python_domodule src/python/botan2.py
+       fi
+}

Reply via email to