From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9C3FC1382C5 for ; Wed, 27 Jan 2021 18:35:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7C46E0C2F; Wed, 27 Jan 2021 18:35:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BC524E0C2F for ; Wed, 27 Jan 2021 18:35:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A806335D41 for ; Wed, 27 Jan 2021 18:35:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4B864A7 for ; Wed, 27 Jan 2021 18:35:01 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1611772490.1ee0871f7dc6c409477ba02b3df019bbe5410309.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/sysbench/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-benchmarks/sysbench/sysbench-1.0.20.ebuild X-VCS-Directories: app-benchmarks/sysbench/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 1ee0871f7dc6c409477ba02b3df019bbe5410309 X-VCS-Branch: master Date: Wed, 27 Jan 2021 18:35:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e739f111-56aa-4353-b2b3-ca8f98369818 X-Archives-Hash: 267f5c62f2be73b525806685631ec8dd commit: 1ee0871f7dc6c409477ba02b3df019bbe5410309 Author: Conrad Kostecki gentoo org> AuthorDate: Wed Jan 27 18:27:51 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Wed Jan 27 18:34:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ee0871f app-benchmarks/sysbench: drop old version Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> app-benchmarks/sysbench/sysbench-1.0.20.ebuild | 72 -------------------------- 1 file changed, 72 deletions(-) diff --git a/app-benchmarks/sysbench/sysbench-1.0.20.ebuild b/app-benchmarks/sysbench/sysbench-1.0.20.ebuild deleted file mode 100644 index d985c12d2a3..00000000000 --- a/app-benchmarks/sysbench/sysbench-1.0.20.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6..9} ) - -inherit autotools python-single-r1 - -DESCRIPTION="A scriptable multi-threaded benchmark tool based on LuaJIT" -HOMEPAGE="https://github.com/akopytov/sysbench" -SRC_URI="https://github.com/akopytov/sysbench/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="+aio attachsql drizzle +largefile mysql postgres test" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-lang/luajit:2 - aio? ( dev-libs/libaio ) - mysql? ( dev-db/mysql-connector-c:= ) - postgres? ( dev-db/postgresql:= ) - test? ( ${PYTHON_DEPS} ) -" -DEPEND=" - dev-libs/concurrencykit - dev-libs/libxslt - test? ( - $(python_gen_cond_dep ' - dev-util/cram[${PYTHON_USEDEP}] - ') - ) - ${RDEPEND} -" -BDEPEND=" - sys-devel/libtool - virtual/pkgconfig -" - -src_prepare() { - default - - rm -r third_party/{concurrency_kit/ck,cram,luajit/luajit} || die - - eautoreconf -} - -src_configure() { - # Current versions of 'dev-db/oracle-instantclient' aren't supported. - # See: https://github.com/akopytov/sysbench/issues/390. - local myeconfargs=( - --disable-rpath - $(use_enable aio) - $(use_enable largefile) - $(use_with attachsql) - $(use_with drizzle) - $(use_with mysql) - $(use_with postgres pgsql) - --with-system-ck - --with-system-luajit - --without-oracle - ) - - econf "${myeconfargs[@]}" -} - -src_test() { - emake check test -}