From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/boehm-gc/
Date: Tue, 1 Oct 2024 21:01:45 +0000 (UTC) [thread overview]
Message-ID: <1727816480.a9c25f7f0c8595ede5bac72892d2524ad464750b.mattst88@gentoo> (raw)
commit: a9c25f7f0c8595ede5bac72892d2524ad464750b
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 25 01:02:00 2024 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Oct 1 21:01:20 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9c25f7f
dev-libs/boehm-gc: Version bump to 8.2.8
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
dev-libs/boehm-gc/Manifest | 1 +
dev-libs/boehm-gc/boehm-gc-8.2.8.ebuild | 56 +++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/dev-libs/boehm-gc/Manifest b/dev-libs/boehm-gc/Manifest
index f6492f1a745a..86d6c424038a 100644
--- a/dev-libs/boehm-gc/Manifest
+++ b/dev-libs/boehm-gc/Manifest
@@ -1,2 +1,3 @@
DIST gc-8.2.4.tar.gz 1210929 BLAKE2B 48f058b3f6f9f708d4335a7a0b077aab4ea5df32be73038bb8c20c12483d7ec8798b16db85afed5aa270f0f818de08abf9407036f662c757f361a929f99d951f SHA512 27d014378000f25fb2f5598904be85604822d5ed4553f8b3d1c279122300d3958b4432ec08f951cfd842d92121ea8a030dda34bf2475ec53d4fded551fdd3a98
DIST gc-8.2.6.tar.gz 1216440 BLAKE2B fb1a51ed90ecd2e81a5d398593717ece3079d3d6f265521dd48ee7e1038700272bfccb6788f4e9915fb3fafd6f1be3775a3b69f38912eae0f6578822d168398a SHA512 48afcc1d8570d6b5d62addf8b7b947a3836717e71c073f6dff8982744c06f5973a02e890d17e8dd93f7f997d029b49c652929e6efa0e32aefbcdf7ab0910eda5
+DIST gc-8.2.8.tar.gz 1219553 BLAKE2B 7e0da4d9596b53bacb41a9939c0dfc9c8cf9b57c032dd445a74678b9467bc9253749497ad3f9ae43060aafed42877191b27c5e8faad1a59f75e80a68fa6d37bd SHA512 e0994bac8d1068f79a8379fa5797efbd420b22eb923d6537613e7542fc6805f74f57be0c4ff7555539461f8ace849fa1534e2077752bfb61c0e14f367b5b55af
diff --git a/dev-libs/boehm-gc/boehm-gc-8.2.8.ebuild b/dev-libs/boehm-gc/boehm-gc-8.2.8.ebuild
new file mode 100644
index 000000000000..e1b04d54de7a
--- /dev/null
+++ b/dev-libs/boehm-gc/boehm-gc-8.2.8.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit multilib-minimal libtool
+
+MY_P="gc-${PV}"
+
+DESCRIPTION="The Boehm-Demers-Weiser conservative garbage collector"
+HOMEPAGE="https://www.hboehm.info/gc/ https://github.com/ivmai/bdwgc/"
+SRC_URI="https://github.com/ivmai/bdwgc/releases/download/v${PV}/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="boehm-gc"
+# SONAME: libgc.so.1 libgccpp.so.1
+# We've been using subslot 0 for these instead of "1.1".
+SLOT="0"
+# Don't keyword versions if upstream mark them as pre-release.
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+IUSE="cxx +large static-libs +threads"
+
+RDEPEND=">=dev-libs/libatomic_ops-7.4[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+ default
+
+ # bug #594754
+ elibtoolize
+}
+
+multilib_src_configure() {
+ local config=(
+ --disable-docs
+ --with-libatomic-ops
+ $(use_enable cxx cplusplus)
+ $(use_enable static-libs static)
+ $(use threads || echo --disable-threads)
+ $(use_enable large large-config)
+ )
+
+ ECONF_SOURCE="${S}" econf "${config[@]}"
+}
+
+multilib_src_install_all() {
+ local HTML_DOCS=( doc/*.md )
+ einstalldocs
+ dodoc doc/README{.environment,.linux,.macros}
+
+ # Package provides .pc files
+ find "${ED}" -name '*.la' -delete || die
+
+ newman doc/gc.man GC_malloc.1
+}
next reply other threads:[~2024-10-01 21:01 UTC|newest]
Thread overview: 95+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-01 21:01 Matt Turner [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-12 20:46 [gentoo-commits] repo/gentoo:master commit in: dev-libs/boehm-gc/ Sam James
2024-11-09 9:02 Arthur Zamarin
2024-11-08 2:49 Sam James
2024-11-07 7:41 Sam James
2024-11-07 7:41 Sam James
2024-11-07 7:41 Sam James
2024-11-07 7:17 Sam James
2024-11-07 7:17 Sam James
2024-06-01 3:46 Ionen Wolkens
2024-04-29 2:38 Sam James
2024-04-29 2:38 Sam James
2024-04-29 2:38 Sam James
2024-04-29 2:38 Sam James
2024-04-29 2:38 Sam James
2024-04-29 2:38 Sam James
2024-04-29 2:38 Sam James
2024-02-06 9:18 Sam James
2023-12-01 19:54 Arthur Zamarin
2023-09-08 0:12 Sam James
2023-09-07 23:03 Sam James
2023-09-07 23:03 Sam James
2023-09-07 20:53 Sam James
2023-09-07 20:53 Sam James
2023-09-07 20:53 Sam James
2023-09-07 20:16 Sam James
2023-05-31 5:05 Sam James
2023-05-31 5:05 Sam James
2023-05-31 5:05 Sam James
2022-11-25 9:11 Arthur Zamarin
2022-11-23 17:43 Jakov Smolić
2022-11-23 5:24 Arthur Zamarin
2022-11-23 4:16 Sam James
2022-11-23 4:16 Sam James
2022-11-23 4:16 Sam James
2022-11-23 4:05 Sam James
2022-11-23 4:01 Sam James
2022-08-27 6:14 Sam James
2022-08-27 6:14 Sam James
2022-05-04 7:07 WANG Xuerui
2022-05-02 23:03 WANG Xuerui
2022-05-01 2:22 WANG Xuerui
2021-12-08 19:09 Arthur Zamarin
2021-12-08 17:08 Arthur Zamarin
2021-12-06 15:20 Sam James
2021-12-05 20:12 Arthur Zamarin
2021-12-05 18:39 Sam James
2021-12-05 18:31 Sam James
2021-12-05 4:00 Sam James
2021-10-16 1:45 Sam James
2021-05-19 22:51 Sergei Trofimovich
2019-12-09 20:22 Sergei Trofimovich
2019-09-21 1:01 Matt Turner
2019-09-20 6:39 Sergei Trofimovich
2019-09-20 0:41 Aaron Bauman
2019-09-15 17:48 Sergei Trofimovich
2019-09-13 17:26 Mikle Kolyada
2019-09-13 7:45 Agostino Sarubbo
2019-09-11 4:56 Matt Turner
2019-09-10 7:10 Agostino Sarubbo
2019-09-10 7:00 Sergei Trofimovich
2019-09-10 6:56 Sergei Trofimovich
2019-09-10 6:51 Sergei Trofimovich
2019-09-09 17:23 Agostino Sarubbo
2019-05-05 10:59 Mikle Kolyada
2019-03-02 9:41 Sergei Trofimovich
2019-02-26 8:21 Sergei Trofimovich
2019-02-26 8:21 Sergei Trofimovich
2018-06-04 1:12 Aaron Bauman
2018-06-03 19:48 Mikle Kolyada
2018-05-03 5:49 Mart Raudsepp
2018-04-28 7:16 Mikle Kolyada
2018-04-28 5:34 Matt Turner
2018-04-24 18:55 Sergei Trofimovich
2018-04-23 2:20 Matt Turner
2018-04-23 2:20 Matt Turner
2018-04-22 6:33 Matt Turner
2018-04-21 22:18 Aaron Bauman
2018-04-21 20:58 Sergei Trofimovich
2018-04-21 19:46 Andreas Hüttel
2018-03-02 8:31 Michał Górny
2018-01-26 22:34 Mike Frysinger
2018-01-26 22:25 Mike Frysinger
2018-01-26 22:25 Mike Frysinger
2018-01-15 12:24 Lars Wendler
2018-01-15 5:15 Mike Frysinger
2017-06-14 21:33 Sergei Trofimovich
2017-05-10 22:35 David Seifert
2017-05-10 16:14 Matthias Maier
2017-04-12 12:01 Tim Harder
2017-01-29 16:07 Fabian Groffen
2016-08-07 7:30 Pacho Ramos
2016-02-28 6:43 Matt Thode
2016-02-18 3:32 Mike Frysinger
2016-02-13 21:15 Mike Frysinger
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=1727816480.a9c25f7f0c8595ede5bac72892d2524ad464750b.mattst88@gentoo \
--to=mattst88@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