Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/sysbench/
Date: Wed, 27 Jan 2021 18:35:05
Message-Id: 1611772490.1ee0871f7dc6c409477ba02b3df019bbe5410309.conikost@gentoo
1 commit: 1ee0871f7dc6c409477ba02b3df019bbe5410309
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 27 18:27:51 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 27 18:34:50 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ee0871f
7
8 app-benchmarks/sysbench: drop old version
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 app-benchmarks/sysbench/sysbench-1.0.20.ebuild | 72 --------------------------
14 1 file changed, 72 deletions(-)
15
16 diff --git a/app-benchmarks/sysbench/sysbench-1.0.20.ebuild b/app-benchmarks/sysbench/sysbench-1.0.20.ebuild
17 deleted file mode 100644
18 index d985c12d2a3..00000000000
19 --- a/app-benchmarks/sysbench/sysbench-1.0.20.ebuild
20 +++ /dev/null
21 @@ -1,72 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{6..9} )
28 -
29 -inherit autotools python-single-r1
30 -
31 -DESCRIPTION="A scriptable multi-threaded benchmark tool based on LuaJIT"
32 -HOMEPAGE="https://github.com/akopytov/sysbench"
33 -SRC_URI="https://github.com/akopytov/sysbench/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 -
35 -LICENSE="GPL-2+"
36 -SLOT="0"
37 -KEYWORDS="amd64 ~arm ~arm64 x86"
38 -IUSE="+aio attachsql drizzle +largefile mysql postgres test"
39 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
40 -RESTRICT="!test? ( test )"
41 -
42 -RDEPEND="
43 - dev-lang/luajit:2
44 - aio? ( dev-libs/libaio )
45 - mysql? ( dev-db/mysql-connector-c:= )
46 - postgres? ( dev-db/postgresql:= )
47 - test? ( ${PYTHON_DEPS} )
48 -"
49 -DEPEND="
50 - dev-libs/concurrencykit
51 - dev-libs/libxslt
52 - test? (
53 - $(python_gen_cond_dep '
54 - dev-util/cram[${PYTHON_USEDEP}]
55 - ')
56 - )
57 - ${RDEPEND}
58 -"
59 -BDEPEND="
60 - sys-devel/libtool
61 - virtual/pkgconfig
62 -"
63 -
64 -src_prepare() {
65 - default
66 -
67 - rm -r third_party/{concurrency_kit/ck,cram,luajit/luajit} || die
68 -
69 - eautoreconf
70 -}
71 -
72 -src_configure() {
73 - # Current versions of 'dev-db/oracle-instantclient' aren't supported.
74 - # See: https://github.com/akopytov/sysbench/issues/390.
75 - local myeconfargs=(
76 - --disable-rpath
77 - $(use_enable aio)
78 - $(use_enable largefile)
79 - $(use_with attachsql)
80 - $(use_with drizzle)
81 - $(use_with mysql)
82 - $(use_with postgres pgsql)
83 - --with-system-ck
84 - --with-system-luajit
85 - --without-oracle
86 - )
87 -
88 - econf "${myeconfargs[@]}"
89 -}
90 -
91 -src_test() {
92 - emake check test
93 -}