public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Göktürk Yüksek" <gokturk@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/sysbench/
Date: Thu, 13 Jul 2017 21:53:40 +0000 (UTC)	[thread overview]
Message-ID: <1499982774.10a78a515fd8caa13c22c15fa73ca233d86c1b4c.gokturk@gentoo> (raw)

commit:     10a78a515fd8caa13c22c15fa73ca233d86c1b4c
Author:     Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
AuthorDate: Wed Jul 12 13:43:07 2017 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Thu Jul 13 21:52:54 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10a78a51

app-benchmarks/sysbench: bump to 1.0.8

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-benchmarks/sysbench/Manifest              |  1 +
 app-benchmarks/sysbench/sysbench-1.0.8.ebuild | 63 +++++++++++++++++++++++++++
 2 files changed, 64 insertions(+)

diff --git a/app-benchmarks/sysbench/Manifest b/app-benchmarks/sysbench/Manifest
index 06b0bd0c7a2..0237268c23a 100644
--- a/app-benchmarks/sysbench/Manifest
+++ b/app-benchmarks/sysbench/Manifest
@@ -1,3 +1,4 @@
 DIST sysbench-1.0.3.tar.gz 1450640 SHA256 37e3d1ecd3e3917695bdfa314ebf09201433d3b4c1c7c0bd4a903bde4e69472e SHA512 6680c3d1e0c939bfb27efb2c4982dd4ec92042ad8c3a850f4892dc46bbaaba00a44b2e39d4253a978c49339c275d81fb39a14ddc4c767883fccc89248dd5ca76 WHIRLPOOL c4d1471465abe06fba5e15c7be64e07e3cae7b7e1ca1559b6a3903fd33358835dc246567faecd0fd5465b79c7c0991d59ba69e23de21dc7b719bd602a726b59b
 DIST sysbench-1.0.6.tar.gz 1493941 SHA256 cd23c622da3d3267885ed126540dc04c578ee16c3d31307e21b5acd8e4036eda SHA512 d17a8a8b2387458b467b3e5034b37cb075ffc444c5576013fe7ac3d390c110e0fb4bc6a39f9b350f7ce9b40f3f039e0af9eb84ffafe9ab05a8be5b36ac5b56ac WHIRLPOOL 8d1073a720fd8220769a509677e3d638d93d6aca247a5d2c9017eae3e05391a63e28fade0d306e56a82c5835db58926178e66f1ef94859e2f65497cbe89a172e
 DIST sysbench-1.0.7.tar.gz 1494571 SHA256 db91521e70b0d1a6fccc60a8d4acadacb3f9328e8ab6802ae82f93393a688d43 SHA512 0b32ad27180ab02df9c2e5e85a8b9bec231338cfb20d7337dd80f1e0628b48bae480fde9d69cd21730aa0ab7c65fecbede9c10cd4b96d0dcf44cd012afa10d65 WHIRLPOOL f33c7d328ce1bec01321656b65123a6b790647f36db7351f6cae5340ee8678c66dc3a4d05a36babe8bec51b42ee0fff937b9c28fa2697408fca5842af50072e1
+DIST sysbench-1.0.8.tar.gz 1494988 SHA256 2dad131a99578999c8159eccd2f7ec1b9da4eca9e646dfeb838cf72c00862d69 SHA512 1baba00dc116a97295e4be26488598d160b7688739b08551d0cf2089bcd0f89a0c8edba6faa3634ea98955aecc04966e8328e79978352647ed764dcbe170566f WHIRLPOOL e1b13661adbe00b86bc5533962974c6eb3869e71392e7815a50543fbd50bae3f843a932c02f8a17decd5ac4fac644f52b564b1c1073292e6778dafe1d7b9eeac

diff --git a/app-benchmarks/sysbench/sysbench-1.0.8.ebuild b/app-benchmarks/sysbench/sysbench-1.0.8.ebuild
new file mode 100644
index 00000000000..899409479d8
--- /dev/null
+++ b/app-benchmarks/sysbench/sysbench-1.0.8.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit 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:= )"
+DEPEND="${RDEPEND}
+	app-editors/vim-core
+	dev-lang/luajit:=
+	dev-libs/concurrencykit
+	dev-libs/libxslt
+	sys-devel/libtool:=
+	virtual/pkgconfig
+	test? ( dev-util/cram )"
+
+src_prepare() {
+	default
+
+	sed -i -e "/^htmldir =/s:=.*:=/usr/share/doc/${PF}/html:" doc/Makefile.am || die
+
+	# remove bundled libs
+	rm -r third_party/luajit/luajit third_party/concurrency_kit/ck third_party/cram || die
+
+	./autogen.sh || die
+}
+
+src_configure() {
+	local myeconfargs=(
+		$(use_enable aio aio)
+		$(use_with mysql mysql)
+		$(use_with postgres pgsql)
+		--without-attachsql
+		--without-drizzle
+		--without-oracle
+		--with-system-luajit
+		--with-system-ck
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+	default
+
+	pax-mark m "${S}/src/${PN}"
+}
+
+src_test() {
+	emake check test
+}


             reply	other threads:[~2017-07-13 21:53 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-13 21:53 Göktürk Yüksek [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-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-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=1499982774.10a78a515fd8caa13c22c15fa73ca233d86c1b4c.gokturk@gentoo \
    --to=gokturk@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