From: "Aaron Bauman" <bman@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/sysbench/
Date: Thu, 26 Apr 2018 15:24:27 +0000 (UTC) [thread overview]
Message-ID: <1524756090.d62eb8d434b31bd6a74a39760673e16f09edafec.bman@gentoo> (raw)
commit: d62eb8d434b31bd6a74a39760673e16f09edafec
Author: Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
AuthorDate: Tue Apr 24 08:19:59 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Thu Apr 26 15:21:30 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d62eb8d4
app-benchmarks/sysbench: bump to 1.0.14
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8122
app-benchmarks/sysbench/Manifest | 1 +
app-benchmarks/sysbench/sysbench-1.0.14.ebuild | 60 ++++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/app-benchmarks/sysbench/Manifest b/app-benchmarks/sysbench/Manifest
index 57cb4c6c3e0..e5e055a6b97 100644
--- a/app-benchmarks/sysbench/Manifest
+++ b/app-benchmarks/sysbench/Manifest
@@ -1,3 +1,4 @@
DIST sysbench-1.0.10.tar.gz 1496937 BLAKE2B d2cf3283a2e2cac89a54e51e975eecec4b5514c08b14fe81138dc36b077e82de54cb3c5d218e1cc00dc6bff66319d780c69249c49c93e810d3ebde3c0b36b656 SHA512 3e2c9597538c9b71a50a0fb0e198f8852206fc609b0968253ee6b12f652fd56f1b2c6e7a4c93161b725e5c56193f7ce9d5cf58c4882839a4c1055c539861d16d
DIST sysbench-1.0.12.tar.gz 1506013 BLAKE2B 940e2978b81362d66cf0de31b9a0a5a844fd31e19cad47a7538f8f2e2f0a46b08c0d5b80a334da277f0558aaf8316b2a2b91753f30163362c6b6bc25e556e88b SHA512 e4f9d909ac3df31b128fc1ddc4b55cb62c579205439c806d2bfe2579641a9d5e94f159d99cfc8e84680aca1c6af0769f838792dc4b37c57b1e03943ea8211bec
+DIST sysbench-1.0.14.tar.gz 1507008 BLAKE2B b2e5e53e65c4993b844f45cbf1dd648b8c67a4e00c6c7e713a032a15f5af7176d7fccf14120f1a485fe984e704386ec84d17391a9f7951584cc5072dcd153a45 SHA512 9030b1f40f6800d85ba4c7bf38041a509769983db4bce82b5cab097a5e4439e1ede5d8933f276779172537c961e6f670680bee106fcac3723ef99f361fdcc4f1
DIST sysbench-1.0.7.tar.gz 1494571 BLAKE2B 56b351cbc1af687b48cce0a98e07301c0d8d35104199adb1e05076091e06e363fd465caec14eb3b1572297f97d35e8fc5eb23eab5ecb70bb4bdb2b2886bc77e2 SHA512 0b32ad27180ab02df9c2e5e85a8b9bec231338cfb20d7337dd80f1e0628b48bae480fde9d69cd21730aa0ab7c65fecbede9c10cd4b96d0dcf44cd012afa10d65
diff --git a/app-benchmarks/sysbench/sysbench-1.0.14.ebuild b/app-benchmarks/sysbench/sysbench-1.0.14.ebuild
new file mode 100644
index 00000000000..58a949c8746
--- /dev/null
+++ b/app-benchmarks/sysbench/sysbench-1.0.14.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools pax-utils
+
+DESCRIPTION="System performance benchmark"
+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 ~x86"
+IUSE="aio mysql postgres test"
+
+RDEPEND="aio? ( dev-libs/libaio )
+ mysql? ( virtual/libmysqlclient )
+ postgres? ( dev-db/postgresql:= )
+ dev-lang/luajit:="
+DEPEND="${RDEPEND}
+ dev-libs/concurrencykit
+ dev-libs/libxslt
+ sys-devel/libtool
+ virtual/pkgconfig
+ test? ( dev-util/cram )"
+
+src_prepare() {
+ default
+
+ # remove bundled libs
+ rm -r third_party/luajit/luajit third_party/concurrency_kit/ck third_party/cram || die
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable aio)
+ $(use_with mysql)
+ $(use_with postgres pgsql)
+ --without-attachsql
+ --without-drizzle
+ --without-oracle
+ --with-system-luajit
+ --with-system-ck
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ emake check test
+}
+
+src_install() {
+ default
+
+ pax-mark m "${ED%/}"/usr/bin/${PN}
+}
next reply other threads:[~2018-04-26 15:24 UTC|newest]
Thread overview: 60+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-26 15:24 Aaron Bauman [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-03-09 17:41 [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/sysbench/ Conrad Kostecki
2022-11-03 22:37 Conrad Kostecki
2022-02-10 2:53 Sam James
2021-07-01 21:15 Conrad Kostecki
2021-01-27 18:35 Conrad Kostecki
2021-01-10 23:21 Conrad Kostecki
2021-01-10 22:31 Sam James
2021-01-10 21:58 Sam James
2021-01-03 23:17 Conrad Kostecki
2020-12-23 21:49 Sam James
2020-12-23 20:00 Sam James
2020-11-21 23:40 Conrad Kostecki
2020-11-21 23:40 Conrad Kostecki
2020-11-21 18:27 Conrad Kostecki
2020-11-21 18:27 Conrad Kostecki
2020-03-18 8:30 Joonas Niilola
2020-03-18 8:30 Joonas Niilola
2019-08-28 11:17 Thomas Deutschmann
2019-08-28 9:11 David Seifert
2019-08-24 10:30 Thomas Deutschmann
2019-08-17 15:49 Joonas Niilola
2019-08-17 15:49 Joonas Niilola
2019-08-17 15:49 Joonas Niilola
2018-12-28 8:11 Mikle Kolyada
2018-12-22 22:25 Thomas Deutschmann
2018-12-22 13:44 Patrice Clement
2018-07-12 9:15 Tony Vroon
2018-07-12 9:14 Tony Vroon
2018-04-26 15:24 Aaron Bauman
2018-02-26 22:51 Mike Frysinger
2018-02-26 22:51 Mike Frysinger
2018-02-06 15:10 Thomas Deutschmann
2017-10-30 23:17 Patrice Clement
2017-10-29 22:08 Thomas Deutschmann
2017-07-15 16:42 Tobias Klausmann
2017-07-13 21:53 Göktürk Yüksek
2017-07-13 21:53 Göktürk Yüksek
2017-05-26 18:46 Göktürk Yüksek
2017-05-26 14:05 Agostino Sarubbo
2017-05-25 10:44 Agostino Sarubbo
2017-04-27 23:00 Göktürk Yüksek
2017-04-17 8:02 Agostino Sarubbo
2017-04-08 3:09 Göktürk Yüksek
2017-04-07 16:05 Agostino Sarubbo
2017-03-16 11:13 Amy Liffey
2017-03-07 20:49 Göktürk Yüksek
2017-03-07 20:49 Göktürk Yüksek
2017-03-02 5:50 Göktürk Yüksek
2017-02-06 20:55 Göktürk Yüksek
2017-01-29 4:40 Göktürk Yüksek
2017-01-29 4:40 Göktürk Yüksek
2017-01-29 4:40 Göktürk Yüksek
2016-12-28 8:34 Aaron Bauman
2016-12-27 22:36 Göktürk Yüksek
2016-10-31 15:07 Göktürk Yüksek
2016-10-27 14:44 Göktürk Yüksek
2016-10-27 14:44 Göktürk Yüksek
2016-10-27 14:44 Göktürk Yüksek
2016-06-08 20:18 Patrice Clement
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1524756090.d62eb8d434b31bd6a74a39760673e16f09edafec.bman@gentoo \
--to=bman@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox