Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/botan/
Date: Thu, 20 Jan 2022 12:08:37
Message-Id: 1642680125.68f83c0bd90b6ea4a3d664f6553f33c6e35d5c23.sam@gentoo
1 commit: 68f83c0bd90b6ea4a3d664f6553f33c6e35d5c23
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 20 11:44:03 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 20 12:02:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68f83c0b
7
8 dev-libs/botan: add 2.19.0
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-libs/botan/Manifest | 2 +
13 dev-libs/botan/botan-2.19.0.ebuild | 164 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 166 insertions(+)
15
16 diff --git a/dev-libs/botan/Manifest b/dev-libs/botan/Manifest
17 index 8d41a36d78f5..4ea6124ec1c6 100644
18 --- a/dev-libs/botan/Manifest
19 +++ b/dev-libs/botan/Manifest
20 @@ -1,2 +1,4 @@
21 DIST Botan-2.18.2.tar.xz 5996928 BLAKE2B 5c5ac1e8e2de16a012aa5716138f4c2d2b8178f0a811993e5e297aa5ae9e7f6d5a4f182d50566f5848a4f93a88bcec622291a15370c4c017361ca65d3bb189bf SHA512 ccf9286ee891fb201065a0a6a991ce78ef7f5dd0caf04010527cd524b824ea470e5ce302853c1839e999a1b3dafb2e82eb298036a37d11f0cf3df5fa09529d9c
22 DIST Botan-2.18.2.tar.xz.asc 488 BLAKE2B 03744e95f52031295162b63dc34d7e0fd9a6b01ae751a809eed5f24c46017fca253c8d42c88b568566f393f0e6dd55d488ef56223d164941386690e2accdf296 SHA512 6764bcdb52a3a28672bcf22f8c364c926511a7b7c9bc227ba15f1e4b2feb9b371a9a4bd9bb1ee43e85faacbef4df5ce39a158357b4ce3706a00f4220bea8d926
23 +DIST Botan-2.19.0.tar.xz 6093020 BLAKE2B c45f8e50ffcb38bfc345f0504a5db87472e9f7a9f92721ebeedb38e7c3f631094a4790bbc802974a767f9f6148d791b84141e91274925df86383b4a9dc914a57 SHA512 3552a190a2a0ab1198a7b13a2798b2f1bf1e853e42ccd4cd348716ea816e8984d2602ec8ae26114a0a337e38d494fe507db993e46484577d13fdc213749dea17
24 +DIST Botan-2.19.0.tar.xz.asc 488 BLAKE2B 8b4099192eea23b0efa63a7702cc5858ed6b527764773f4fa6578d2d927408e8070668fa06585d9820a0e03fc45fa68fdd6f5c87de71529754f70ba795ff48f0 SHA512 6d15f0c5792d8f5fec4cd2d75ba675e8fdcad39f455d69bdeb09f0c8a7406f67cc849f577765c837ece3b60ca27f2d81b56afa26975a760d426b6eca776a1899
25
26 diff --git a/dev-libs/botan/botan-2.19.0.ebuild b/dev-libs/botan/botan-2.19.0.ebuild
27 new file mode 100644
28 index 000000000000..9ce3b40f2e63
29 --- /dev/null
30 +++ b/dev-libs/botan/botan-2.19.0.ebuild
31 @@ -0,0 +1,164 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/botan.asc
39 +inherit python-r1 toolchain-funcs verify-sig
40 +
41 +MY_P="Botan-${PV}"
42 +DESCRIPTION="C++ crypto library"
43 +HOMEPAGE="https://botan.randombit.net/"
44 +SRC_URI="https://botan.randombit.net/releases/${MY_P}.tar.xz"
45 +SRC_URI+=" verify-sig? ( https://botan.randombit.net/releases/${MY_P}.tar.xz.asc )"
46 +S="${WORKDIR}/${MY_P}"
47 +
48 +LICENSE="BSD-2"
49 +SLOT="2/$(ver_cut 1-2)" # soname version
50 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~ppc-macos"
51 +IUSE="doc boost bzip2 lzma python ssl static-libs sqlite zlib"
52 +
53 +CPU_USE=(
54 + cpu_flags_arm_{aes,neon}
55 + cpu_flags_ppc_altivec
56 + cpu_flags_x86_{aes,avx2,popcnt,rdrand,sse2,ssse3,sse4_1,sse4_2}
57 +)
58 +
59 +IUSE+=" ${CPU_USE[@]}"
60 +
61 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
62 +
63 +# NOTE: Boost is needed at runtime too for the CLI tool.
64 +DEPEND="
65 + boost? ( >=dev-libs/boost-1.48:= )
66 + bzip2? ( >=app-arch/bzip2-1.0.5:= )
67 + lzma? ( app-arch/xz-utils:= )
68 + python? ( ${PYTHON_DEPS} )
69 + ssl? ( dev-libs/openssl:= )
70 + sqlite? ( dev-db/sqlite:3= )
71 + zlib? ( >=sys-libs/zlib-1.2.3:= )
72 +"
73 +RDEPEND="${DEPEND}"
74 +BDEPEND="
75 + ${PYTHON_DEPS}
76 + $(python_gen_any_dep '
77 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
78 + ')
79 + verify-sig? ( sec-keys/openpgp-keys-botan )
80 +"
81 +
82 +# NOTE: Considering patching Botan?
83 +# Please see upstream's guidance:
84 +# https://botan.randombit.net/handbook/packaging.html#minimize-distribution-patches
85 +
86 +python_check_deps() {
87 + if use doc ; then
88 + has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]" || return 1
89 + fi
90 +}
91 +
92 +src_configure() {
93 + python_setup
94 +
95 + local disable_modules=(
96 + $(usev !boost 'boost')
97 + )
98 +
99 + if [[ -z "${DISABLE_MODULES}" ]] ; then
100 + elog "Disabling module(s): ${disable_modules[@]}"
101 + fi
102 +
103 + local chostarch="${CHOST%%-*}"
104 +
105 + # Arch specific wrangling
106 + local myos=
107 + case ${CHOST} in
108 + *-darwin*)
109 + myos=darwin
110 + ;;
111 +
112 + *)
113 + myos=linux
114 +
115 + if [[ ${CHOST} == *hppa* ]] ; then
116 + chostarch=parisc
117 + elif [[ ${PROFILE_ARCH} == "sparc64" ]] ; then
118 + chostarch="sparc32-v9"
119 + fi
120 + ;;
121 +
122 + esac
123 +
124 + local pythonvers=()
125 + if use python ; then
126 + _append() {
127 + pythonvers+=( ${EPYTHON/python/} )
128 + }
129 +
130 + python_foreach_impl _append
131 + fi
132 +
133 + local myargs=(
134 + # Intrinsics
135 + # TODO: x86 RDSEED (new CPU_FLAGS_X86?)
136 + # TODO: POWER Crypto (new CPU_FLAGS_PPC?)
137 + $(usev !cpu_flags_arm_aes '--disable-armv8crypto')
138 + $(usev !cpu_flags_arm_neon '--disable-neon')
139 + $(usev !cpu_flags_ppc_altivec '--disable-altivec')
140 + $(usev !cpu_flags_x86_aes '--disable-aes-ni')
141 + $(usev !cpu_flags_x86_avx2 '--disable-avx2')
142 + $(usev !cpu_flags_x86_popcnt '--disable-bmi2')
143 + $(usev !cpu_flags_x86_rdrand '--disable-rdrand')
144 + $(usev !cpu_flags_x86_sse2 '--disable-sse2')
145 + $(usev !cpu_flags_x86_ssse3 '--disable-ssse3')
146 + $(usev !cpu_flags_x86_sse4_1 '--disable-sse4.1')
147 + $(usev !cpu_flags_x86_sse4_2 '--disable-sse4.2')
148 +
149 + $(usev hppa '--without-stack-protector')
150 +
151 + $(use_with boost)
152 + $(use_with bzip2)
153 + $(use_with doc documentation)
154 + $(use_with doc sphinx)
155 + $(use_with lzma)
156 + $(use_enable static-libs static-library)
157 + $(use_with ssl openssl)
158 + $(use_with sqlite sqlite3)
159 + $(use_with zlib)
160 +
161 + --cpu=${chostarch}
162 + --docdir=share/doc
163 + --disable-modules=$( IFS=","; echo "${disable_modules[*]}" )
164 + --distribution-info="Gentoo ${PVR}"
165 + --libdir=$(get_libdir)
166 +
167 + # Don't install Python bindings automatically
168 + # (do it manually later in the right place)
169 + # https://bugs.gentoo.org/723096
170 + --no-install-python-module
171 +
172 + --os=${myos}
173 + --prefix="${EPREFIX}/usr"
174 + --with-endian="$(tc-endian)"
175 + --with-python-version=$( IFS=","; echo "${pythonvers[*]}" )
176 + --without-doxygen
177 + )
178 +
179 + tc-export CC CXX AR
180 +
181 + ${EPYTHON} configure.py "${myargs[@]}" || die "configure.py failed with ${EPYTHON}"
182 +}
183 +
184 +src_test() {
185 + LD_LIBRARY_PATH="${S}" ./botan-test || die "Validation tests failed"
186 +}
187 +
188 +src_install() {
189 + default
190 +
191 + # Manually install the Python bindings (bug #723096)
192 + if use python ; then
193 + python_foreach_impl python_domodule src/python/botan2.py
194 + fi
195 +}