Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/tdb/
Date: Fri, 30 Sep 2022 03:04:18
Message-Id: 1664506958.86e8575872976c3805b5118d9b465185dc73f51e.sam@gentoo
1 commit: 86e8575872976c3805b5118d9b465185dc73f51e
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 30 03:02:38 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 30 03:02:38 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86e85758
7
8 sys-libs/tdb: drop 1.4.6
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sys-libs/tdb/Manifest | 1 -
13 sys-libs/tdb/tdb-1.4.6.ebuild | 61 -------------------------------------------
14 2 files changed, 62 deletions(-)
15
16 diff --git a/sys-libs/tdb/Manifest b/sys-libs/tdb/Manifest
17 index 2af458538812..8a8046f55d78 100644
18 --- a/sys-libs/tdb/Manifest
19 +++ b/sys-libs/tdb/Manifest
20 @@ -1,3 +1,2 @@
21 DIST tdb-1.4.5.tar.gz 729650 BLAKE2B 5d8a226cf251268d70f68759fb792628559fa3b10e7843d1a53914ea24f0ceca61fe0c3f348d704ebc8df4c56fe2365690b585b1c96cf53d63ecae1960aca58a SHA512 373b2ce5b2c68fbc28b7679f0e7531115b91ddc6a68b27acada39b995f66b508b19f24d712fc4388654199abd69857e53ebd435d1ed47e3a69ba85ff667fed56
22 -DIST tdb-1.4.6.tar.gz 736747 BLAKE2B 53b989955993e970f3ca0874ade4d7404e180fedaac94d409753b209ea9dfa5136f2cdce4eb6d67a44b208731466eb0557c4dfcd9db20ea5806c5da1a3917e50 SHA512 8af549867fdf2e0daf073c26933ae0d475ea64efaca23d3d7b0eb20839376e817f4c0a0ba2504f60f9e27a2b35d3b6ae7c329d88a5c2c0408e98ad9dfde84712
23 DIST tdb-1.4.7.tar.gz 741714 BLAKE2B ec2f991bbaa61d46f16b7a68a4e47a2f690cda261dd0e9fd9708e51ad64eefeb54ac8b1102cde6935916f840d3c89d7a2903f58175cceb78ea4ef889e82ddbc6 SHA512 2b5b20c299b60545943f106d854b6e0d4a559e16f08a7ed62fe57ee962bebc888c2e663bd5fef907aace05b316826fe8fbbf3f323b6d3427531e59ffe47d48e4
24
25 diff --git a/sys-libs/tdb/tdb-1.4.6.ebuild b/sys-libs/tdb/tdb-1.4.6.ebuild
26 deleted file mode 100644
27 index 26757dd181d4..000000000000
28 --- a/sys-libs/tdb/tdb-1.4.6.ebuild
29 +++ /dev/null
30 @@ -1,61 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -PYTHON_REQ_USE="threads(+)"
38 -inherit waf-utils multilib-minimal python-single-r1
39 -
40 -DESCRIPTION="Simple database API"
41 -HOMEPAGE="https://tdb.samba.org/"
42 -SRC_URI="https://samba.org/ftp/tdb/${P}.tar.gz"
43 -
44 -LICENSE="GPL-3"
45 -SLOT="0"
46 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
47 -IUSE="python"
48 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
49 -RESTRICT="test"
50 -
51 -RDEPEND="
52 - dev-libs/libbsd[${MULTILIB_USEDEP}]
53 - python? ( ${PYTHON_DEPS} )"
54 -DEPEND="${RDEPEND}
55 - virtual/libcrypt"
56 -BDEPEND="${PYTHON_DEPS}
57 - app-text/docbook-xml-dtd:4.2"
58 -
59 -WAF_BINARY="${S}/buildtools/bin/waf"
60 -
61 -src_prepare() {
62 - default
63 - python_fix_shebang .
64 - multilib_copy_sources
65 -}
66 -
67 -multilib_src_configure() {
68 - local extra_opts=()
69 - if ! multilib_is_native_abi || ! use python ; then
70 - extra_opts+=( --disable-python )
71 - fi
72 -
73 - waf-utils_src_configure "${extra_opts[@]}"
74 -}
75 -
76 -multilib_src_compile() {
77 - # need to avoid parallel building, this looks like the sanest way with waf-utils/multiprocessing eclasses
78 - unset MAKEOPTS
79 - waf-utils_src_compile
80 -}
81 -
82 -multilib_src_test() {
83 - # the default src_test runs 'make test' and 'make check', letting
84 - # the tests fail occasionally (reason: unknown)
85 - emake check
86 -}
87 -
88 -multilib_src_install() {
89 - waf-utils_src_install
90 - use python && python_optimize
91 -}