From: "Jeroen Roovers" <jer@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/userspace-rcu/
Date: Mon, 21 Dec 2015 10:29:29 +0000 (UTC) [thread overview]
Message-ID: <1450693765.1c473050a1bd85e2f93ffd6a84ba218944d9eeec.jer@gentoo> (raw)
commit: 1c473050a1bd85e2f93ffd6a84ba218944d9eeec
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 21 10:26:00 2015 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Dec 21 10:29:25 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c473050
dev-libs/userspace-rcu: Version bump.
Package-Manager: portage-2.2.26
dev-libs/userspace-rcu/Manifest | 1 +
dev-libs/userspace-rcu/metadata.xml | 3 ++
dev-libs/userspace-rcu/userspace-rcu-0.9.1.ebuild | 35 +++++++++++++++++++++++
3 files changed, 39 insertions(+)
diff --git a/dev-libs/userspace-rcu/Manifest b/dev-libs/userspace-rcu/Manifest
index e6e7c7d..391aaa5 100644
--- a/dev-libs/userspace-rcu/Manifest
+++ b/dev-libs/userspace-rcu/Manifest
@@ -3,3 +3,4 @@ DIST userspace-rcu-0.7.13.tar.bz2 390152 SHA256 368a0db48926b127f86f62595f67b21f
DIST userspace-rcu-0.8.4.tar.bz2 418911 SHA256 96c0a157e94a15b1506efe9aedd98145e6eb41a3fbcf5b0d118b7a783b22fe12 SHA512 62a2c7bc9923947bcdd17f7bc5ff6d12e6bc7b63d108977dc9dd990827c043452974800bb494b80c383279916482e12b441184834b4c84a226113af4923e32e6 WHIRLPOOL 487dbc84f15144a9035eaa938dd7f075d573cd72c7be51e5adee8507594a87d75ee6f621accdda80708693fea36d9f2db017d2936c10ff74cf0bd6342eeba2bd
DIST userspace-rcu-0.8.5.tar.bz2 423913 SHA256 a2562eaca107ec6eca2856632b6035c6aaf38df79020195ed8955a7b4773312a SHA512 4b2090e7fd1c6f771e7fc0f8dde9cd1cbde64fe6295f3c96b2ad13b6581d8a07e0ab9b8a7e97021049c4ecc35303b709903ba593a64ba84c958f4c4b95d93a45 WHIRLPOOL b37d9801d508b608009febbd94ac831f54238419969038f02ee480ca4a488c7aaa3b7dd23d672ed58296f43917fe6e2f1afcd579da41ba75fb40e2dc3a11face
DIST userspace-rcu-0.8.6.tar.bz2 424037 SHA256 b1a5d3bce014ba7a702759bc60b692c1cd46ff0e8a5b53f0d0a95e22db74ab21 SHA512 027c215570b1ff94d0b7dd66934aece525461ddc8b172000c72af5b2e76115da9d18a635bbfb81dbd749c52463c5f4dd27f5700a30f367a4fb5fe0db6c128a6d WHIRLPOOL a652e9d8141356edfa5a67e6c884101f46c0d67e1089528b6c9a17e8def7057d09e4c75afed6bbb0eb2a2de32300dd7958cde51ae8b639a600c4049fc6babd7d
+DIST userspace-rcu-0.9.1.tar.bz2 468197 SHA256 f8d278e9d95bec97c9ba954fc4c3fb584936bc0010713a8fe358b916bafd8715 SHA512 958234d72319decef07093c13b067e398c1b285ac714ab1dda89c2ad2ba0627d053e0cdabb07d480e399ebd60215445002876bd99f2829ca1e5582ada639f730 WHIRLPOOL e8d39b626529894a88a74d308ceb759a0166888113b5ca7e021e5a1c816126f98331ccb78d7a8d245f1aa16df06b6f45323c01dcf9bbc6e742b27fa5f76c2b24
diff --git a/dev-libs/userspace-rcu/metadata.xml b/dev-libs/userspace-rcu/metadata.xml
index 96a2d58..8597f04 100644
--- a/dev-libs/userspace-rcu/metadata.xml
+++ b/dev-libs/userspace-rcu/metadata.xml
@@ -2,4 +2,7 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>base-system</herd>
+<use>
+<flag name='regression-test'>Run regression tests (requires FEATURES=test)</flag>
+</use>
</pkgmetadata>
diff --git a/dev-libs/userspace-rcu/userspace-rcu-0.9.1.ebuild b/dev-libs/userspace-rcu/userspace-rcu-0.9.1.ebuild
new file mode 100644
index 0000000..57880b5
--- /dev/null
+++ b/dev-libs/userspace-rcu/userspace-rcu-0.9.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools-utils
+
+DESCRIPTION="userspace RCU (read-copy-update) library"
+HOMEPAGE="http://lttng.org/urcu"
+SRC_URI="http://lttng.org/files/urcu/${P}.tar.bz2"
+
+LICENSE="LGPL-2.1"
+SLOT="0/4" # subslot = soname version
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE="static-libs regression-test test"
+
+DEPEND="test? ( sys-process/time )"
+
+# tests fail with separate build dir
+AUTOTOOLS_IN_SOURCE_BUILD=1
+
+src_configure() {
+ local myeconfargs=(
+ --docdir="${EPREFIX}/usr/share/doc/${PF}"
+ )
+ autotools-utils_src_configure
+}
+
+src_test() {
+ default
+ if use regression-test; then
+ emake -C tests/regression regtest
+ fi
+}
next reply other threads:[~2015-12-21 10:29 UTC|newest]
Thread overview: 97+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-21 10:29 Jeroen Roovers [this message]
-- strict thread matches above, loose matches on Subject: below --
2015-12-21 11:33 [gentoo-commits] repo/gentoo:master commit in: dev-libs/userspace-rcu/ Jeroen Roovers
2016-06-17 1:54 Yixun Lan
2016-06-17 1:54 Yixun Lan
2016-07-01 2:37 Yixun Lan
2016-07-01 4:54 Jeroen Roovers
2016-07-01 5:30 Jeroen Roovers
2016-07-27 20:28 Markus Meier
2017-08-14 13:36 Lars Wendler
2017-08-14 13:36 Lars Wendler
2018-02-14 9:46 Lars Wendler
2018-05-19 10:47 Sergei Trofimovich
2018-08-27 20:15 Sergei Trofimovich
2018-10-17 14:25 Tobias Klausmann
2018-10-26 0:52 Thomas Deutschmann
2018-10-26 14:58 Agostino Sarubbo
2018-11-23 9:52 Tobias Klausmann
2019-04-23 0:13 Aaron Bauman
2019-04-23 8:10 Lars Wendler
2019-04-23 8:10 Lars Wendler
2019-06-04 21:00 Agostino Sarubbo
2019-07-05 22:27 Sergei Trofimovich
2019-07-30 23:02 Thomas Deutschmann
2020-03-25 21:36 Sergei Trofimovich
2020-05-01 13:23 Thomas Deutschmann
2020-05-01 14:03 Agostino Sarubbo
2020-05-01 14:03 Agostino Sarubbo
2020-05-01 17:42 Agostino Sarubbo
2020-05-01 17:43 Agostino Sarubbo
2020-05-01 17:44 Agostino Sarubbo
2020-05-01 17:46 Agostino Sarubbo
2020-05-02 13:30 Mart Raudsepp
2020-05-05 21:04 Sergei Trofimovich
2021-02-19 11:56 Lars Wendler
2021-02-19 11:56 Lars Wendler
2021-04-06 10:17 Lars Wendler
2021-04-06 10:17 Lars Wendler
2021-05-09 10:57 Sam James
2021-05-09 10:57 Sam James
2021-05-09 10:57 Sam James
2021-05-09 10:57 Sam James
2021-05-09 11:01 Sam James
2021-05-09 21:42 Sam James
2021-05-09 21:44 Sam James
2021-05-10 14:44 David Seifert
2021-06-17 23:20 Thomas Deutschmann
2021-09-18 19:48 Sam James
2021-09-18 19:51 Sam James
2021-09-18 19:51 Sam James
2021-09-19 6:39 Agostino Sarubbo
2021-09-20 0:27 Sam James
2021-09-21 16:35 Sam James
2021-10-02 15:43 Sam James
2021-10-03 11:28 David Seifert
2021-12-01 23:54 Joshua Kinard
2021-12-26 19:31 Sam James
2022-01-28 7:53 Sam James
2022-01-28 7:53 Sam James
2022-04-25 15:06 Sam James
2022-05-19 10:35 WANG Xuerui
2022-06-02 2:19 Sam James
2022-06-02 2:19 Sam James
2022-06-02 2:21 Sam James
2022-06-02 2:21 Sam James
2022-06-02 3:05 Sam James
2022-06-02 4:14 Jakov Smolić
2022-06-02 4:39 Jakov Smolić
2022-06-02 5:03 Jakov Smolić
2022-08-19 22:16 Sam James
2022-09-25 4:36 Sam James
2022-09-25 4:36 Sam James
2022-09-25 4:43 Sam James
2022-09-25 4:45 Sam James
2022-09-25 6:24 Agostino Sarubbo
2022-09-25 6:25 Agostino Sarubbo
2022-09-25 7:44 Arthur Zamarin
2022-09-26 4:16 Arthur Zamarin
2023-04-23 20:05 Sam James
2023-04-23 20:07 Sam James
2023-04-23 20:08 Sam James
2023-04-23 20:42 Sam James
2023-04-23 20:58 Sam James
2023-04-23 20:58 Sam James
2023-04-23 22:28 Sam James
2023-04-29 8:48 Sam James
2024-08-29 1:55 Sam James
2024-10-05 11:12 Sam James
2024-10-05 13:58 Arthur Zamarin
2024-10-05 13:58 Arthur Zamarin
2024-10-05 14:30 Arthur Zamarin
2024-10-09 0:06 Jakov Smolić
2024-10-09 7:29 Arthur Zamarin
2024-10-13 21:41 Sam James
2024-10-28 19:42 Andreas K. Hüttel
2024-11-23 16:54 Sam James
2024-12-28 16:24 Sam James
2025-03-07 7:28 Sam James
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=1450693765.1c473050a1bd85e2f93ffd6a84ba218944d9eeec.jer@gentoo \
--to=jer@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