From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/userspace-rcu/
Date: Fri, 1 May 2020 13:23:01 +0000 (UTC) [thread overview]
Message-ID: <1588339374.19eeab3aa85a613e61c530faadc67e23acb17ea0.whissi@gentoo> (raw)
commit: 19eeab3aa85a613e61c530faadc67e23acb17ea0
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Fri May 1 13:22:33 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Fri May 1 13:22:54 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19eeab3a
dev-libs/userspace-rcu: bump to v0.12.1
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/userspace-rcu/Manifest | 1 +
dev-libs/userspace-rcu/userspace-rcu-0.12.1.ebuild | 31 ++++++++++++++++++++++
2 files changed, 32 insertions(+)
diff --git a/dev-libs/userspace-rcu/Manifest b/dev-libs/userspace-rcu/Manifest
index cdb2b7fe55d..b34b3df98ce 100644
--- a/dev-libs/userspace-rcu/Manifest
+++ b/dev-libs/userspace-rcu/Manifest
@@ -1,5 +1,6 @@
DIST userspace-rcu-0.10.1.tar.bz2 503347 BLAKE2B 32e75d5d94b15fdcb28397aa64c871f708a925bef0cfcc90553de7694a85e1562bb2256b0c8d8726b910363d12b3a67f963f5c0213141ea2a4ad8d2bcd23bf7b SHA512 2bb042e1cf8888eab664ea6e88b94646c995bea61c89d49dcf4e844d144329303c600d73e29e0f05c935ad8278857cc08fb5b4b9f7f0c2f120c46b458b51a211
DIST userspace-rcu-0.10.2.tar.bz2 503833 BLAKE2B 17e2102e096903f301d1a08d606cf98e28a413ef26a3dc8fa6f400ba74aa14aabdef5e28d4fed5fb01cee33b0bd5de9fb0682523aaa50c6053fd3471711a02e7 SHA512 47413b4a593d19185ee3d455e5744042c060cb50008dac25e9135c5cd2250ef5129a419258b18c665c8c794ad3b09234fdd70a106c72d8fc64631172b13d0e22
DIST userspace-rcu-0.11.1.tar.bz2 527799 BLAKE2B b81ab5b3fd23e5666d422c1f627bc3c2cd095770f4f054f5d0d4ea6bc0007f12a4c6b05446e179b7a33775f7603e3be8ebf2c844be77b47ed80305da208151ea SHA512 112f7be1b72edfbad61582bb9962e2cf3c83415d12886cecb8239ab3263d1d07310b097813ac206aa9d4622953099100f0f54375d5ba345a3c87159c4b27bdc3
+DIST userspace-rcu-0.12.1.tar.bz2 527626 BLAKE2B 56fcea0fb81573dc55a0a80064e92ea837efdbd8743879d599424b4f6b140c0e9b0a88ff9a42d9643fa25e914a5fc67e1a26e101c25aa5c67582caa5da4d746d SHA512 c0c14eede77358904dfb10774390fd86b4fa9e0ab25d278c869728d40eb263bfa7e489b20ce7198169e71d74fe41bb5018fc1553a5e0654840c9765e088c83db
DIST userspace-rcu-0.9.1.tar.bz2 468197 BLAKE2B ac2ae4ea788feef5463571e1a0d5dac35a5d6e298f628e0b0b2acea68d01e52a513cd5d1b58886d8b42d07455823fdfb91c1548caffb969cb9fe8c6b4d17adc7 SHA512 958234d72319decef07093c13b067e398c1b285ac714ab1dda89c2ad2ba0627d053e0cdabb07d480e399ebd60215445002876bd99f2829ca1e5582ada639f730
DIST userspace-rcu-0.9.2.tar.bz2 468871 BLAKE2B f8a13b9683e8c32942a3d675ca94715de82b40b1a39be8161e1ea6009373f2ea6ae57b2e9ba4068544db2c9064457aaa8e83bad5e4af600bede248bf0780d11f SHA512 36264119d68569565a7b1222c4b0ca90128d121f032b388f27204ceaa9c964901f35be25584e1553b1a7613aad01d11766983ae245860df09444eb2f8ac913fc
diff --git a/dev-libs/userspace-rcu/userspace-rcu-0.12.1.ebuild b/dev-libs/userspace-rcu/userspace-rcu-0.12.1.ebuild
new file mode 100644
index 00000000000..f8357c381ab
--- /dev/null
+++ b/dev-libs/userspace-rcu/userspace-rcu-0.12.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="userspace RCU (read-copy-update) library"
+HOMEPAGE="https://liburcu.org/"
+SRC_URI="https://lttng.org/files/urcu/${P}.tar.bz2"
+
+LICENSE="LGPL-2.1"
+SLOT="0/6" # subslot = soname version
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="static-libs regression-test test"
+RESTRICT="!test? ( test )"
+
+DEPEND="test? ( sys-process/time )"
+
+src_configure() {
+ local myeconfargs=(
+ --enable-shared
+ $(use_enable static-libs static)
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ default
+ if use regression-test; then
+ emake -C tests/regression regtest
+ fi
+}
next reply other threads:[~2020-05-01 13:23 UTC|newest]
Thread overview: 104+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-01 13:23 Thomas Deutschmann [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-13 15:40 [gentoo-commits] repo/gentoo:master commit in: dev-libs/userspace-rcu/ Sam James
2025-03-13 4:04 Sam James
2025-03-13 1:28 Sam James
2025-03-13 1:24 Sam James
2025-03-13 1:09 Sam James
2025-03-13 1:09 Sam James
2025-03-13 0:45 Sam James
2025-03-07 7:28 Sam James
2024-12-28 16:24 Sam James
2024-11-23 16:54 Sam James
2024-10-28 19:42 Andreas K. Hüttel
2024-10-13 21:41 Sam James
2024-10-09 7:29 Arthur Zamarin
2024-10-09 0:06 Jakov Smolić
2024-10-05 14:30 Arthur Zamarin
2024-10-05 13:58 Arthur Zamarin
2024-10-05 13:58 Arthur Zamarin
2024-10-05 11:12 Sam James
2024-08-29 1:55 Sam James
2023-04-29 8:48 Sam James
2023-04-23 22:28 Sam James
2023-04-23 20:58 Sam James
2023-04-23 20:58 Sam James
2023-04-23 20:42 Sam James
2023-04-23 20:08 Sam James
2023-04-23 20:07 Sam James
2023-04-23 20:05 Sam James
2022-09-26 4:16 Arthur Zamarin
2022-09-25 7:44 Arthur Zamarin
2022-09-25 6:25 Agostino Sarubbo
2022-09-25 6:24 Agostino Sarubbo
2022-09-25 4:45 Sam James
2022-09-25 4:43 Sam James
2022-09-25 4:36 Sam James
2022-09-25 4:36 Sam James
2022-08-19 22:16 Sam James
2022-06-02 5:03 Jakov Smolić
2022-06-02 4:39 Jakov Smolić
2022-06-02 4:14 Jakov Smolić
2022-06-02 3:05 Sam James
2022-06-02 2:21 Sam James
2022-06-02 2:21 Sam James
2022-06-02 2:19 Sam James
2022-06-02 2:19 Sam James
2022-05-19 10:35 WANG Xuerui
2022-04-25 15:06 Sam James
2022-01-28 7:53 Sam James
2022-01-28 7:53 Sam James
2021-12-26 19:31 Sam James
2021-12-01 23:54 Joshua Kinard
2021-10-03 11:28 David Seifert
2021-10-02 15:43 Sam James
2021-09-21 16:35 Sam James
2021-09-20 0:27 Sam James
2021-09-19 6:39 Agostino Sarubbo
2021-09-18 19:51 Sam James
2021-09-18 19:51 Sam James
2021-09-18 19:48 Sam James
2021-06-17 23:20 Thomas Deutschmann
2021-05-10 14:44 David Seifert
2021-05-09 21:44 Sam James
2021-05-09 21:42 Sam James
2021-05-09 11:01 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 10:57 Sam James
2021-04-06 10:17 Lars Wendler
2021-04-06 10:17 Lars Wendler
2021-02-19 11:56 Lars Wendler
2021-02-19 11:56 Lars Wendler
2020-05-05 21:04 Sergei Trofimovich
2020-05-02 13:30 Mart Raudsepp
2020-05-01 17:46 Agostino Sarubbo
2020-05-01 17:44 Agostino Sarubbo
2020-05-01 17:43 Agostino Sarubbo
2020-05-01 17:42 Agostino Sarubbo
2020-05-01 14:03 Agostino Sarubbo
2020-05-01 14:03 Agostino Sarubbo
2020-03-25 21:36 Sergei Trofimovich
2019-07-30 23:02 Thomas Deutschmann
2019-07-05 22:27 Sergei Trofimovich
2019-06-04 21:00 Agostino Sarubbo
2019-04-23 8:10 Lars Wendler
2019-04-23 8:10 Lars Wendler
2019-04-23 0:13 Aaron Bauman
2018-11-23 9:52 Tobias Klausmann
2018-10-26 14:58 Agostino Sarubbo
2018-10-26 0:52 Thomas Deutschmann
2018-10-17 14:25 Tobias Klausmann
2018-08-27 20:15 Sergei Trofimovich
2018-05-19 10:47 Sergei Trofimovich
2018-02-14 9:46 Lars Wendler
2017-08-14 13:36 Lars Wendler
2017-08-14 13:36 Lars Wendler
2016-07-27 20:28 Markus Meier
2016-07-01 5:30 Jeroen Roovers
2016-07-01 4:54 Jeroen Roovers
2016-07-01 2:37 Yixun Lan
2016-06-17 1:54 Yixun Lan
2016-06-17 1:54 Yixun Lan
2015-12-21 11:33 Jeroen Roovers
2015-12-21 10:29 Jeroen Roovers
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=1588339374.19eeab3aa85a613e61c530faadc67e23acb17ea0.whissi@gentoo \
--to=whissi@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