diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-04-19 16:30:56 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-04-19 16:31:31 +0200 |
commit | e7f1a70561d7ec0940f6143056eae9814c3b7cfd (patch) | |
tree | 81f799ccc843fa522f97457a90769ee90fc10e0d /dev-libs/botan | |
parent | app-portage/pfl: Add python 3.8 support. (diff) | |
download | gentoo-e7f1a70561d7ec0940f6143056eae9814c3b7cfd.tar.gz gentoo-e7f1a70561d7ec0940f6143056eae9814c3b7cfd.tar.bz2 gentoo-e7f1a70561d7ec0940f6143056eae9814c3b7cfd.zip |
dev-libs/botan: python3_7 and python3_8 support, misc improvments
Tests passed.
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/botan')
-rw-r--r-- | dev-libs/botan/botan-2.11.0.ebuild | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/dev-libs/botan/botan-2.11.0.ebuild b/dev-libs/botan/botan-2.11.0.ebuild index 4a5a14338456..0bd8d2e97441 100644 --- a/dev-libs/botan/botan-2.11.0.ebuild +++ b/dev-libs/botan/botan-2.11.0.ebuild @@ -2,37 +2,40 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_6 ) -inherit multilib python-r1 toolchain-funcs +PYTHON_COMPAT=( python3_{6,7,8} ) -MY_PN="Botan" -MY_P="${MY_PN}-${PV}" -DESCRIPTION="A C++ crypto library" +MY_P="Botan-${PV}" +inherit python-r1 toolchain-funcs + +DESCRIPTION="C++ crypto library" HOMEPAGE="https://botan.randombit.net/" SRC_URI="https://botan.randombit.net/releases/${MY_P}.tar.xz" -KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos" -SLOT="2/$(ver_cut 1-2)" # soname version LICENSE="BSD" -IUSE="bindist doc boost python bzip2 libressl lzma sqlite ssl static-libs zlib" +SLOT="2/$(ver_cut 1-2)" # soname version +KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos" +IUSE="bindist bzip2 boost doc libressl lzma python sqlite ssl static-libs zlib" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" S="${WORKDIR}/${MY_P}" DEPEND="python? ( ${PYTHON_DEPS} )" RDEPEND="${DEPEND} - bzip2? ( >=app-arch/bzip2-1.0.5:= ) - zlib? ( >=sys-libs/zlib-1.2.3:= ) boost? ( >=dev-libs/boost-1.48:= ) + bzip2? ( >=app-arch/bzip2-1.0.5:= ) lzma? ( app-arch/xz-utils:= ) sqlite? ( dev-db/sqlite:3= ) ssl? ( !libressl? ( dev-libs/openssl:0=[bindist=] ) libressl? ( dev-libs/libressl:0= ) - )" -BDEPEND="dev-lang/python:* - doc? ( dev-python/sphinx )" + ) + zlib? ( >=sys-libs/zlib-1.2.3:= ) +" +BDEPEND=" + dev-lang/python:* + doc? ( dev-python/sphinx ) +" src_configure() { local disable_modules=() @@ -49,12 +52,12 @@ src_configure() { local myos= case ${CHOST} in - *-darwin*) myos=darwin ;; - *) myos=linux ;; + *-darwin*) myos=darwin ;; + *) myos=linux ;; esac case ${CHOST} in - hppa*) CHOSTARCH=parisc ;; + hppa*) CHOSTARCH=parisc ;; esac local pythonvers=() |