From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/boehm-gc/
Date: Sat, 27 Aug 2022 06:14:02 +0000 (UTC) [thread overview]
Message-ID: <1661580395.7c05061c40634d9a1adc02c17ffaff53fcfa65e8.sam@gentoo> (raw)
commit: 7c05061c40634d9a1adc02c17ffaff53fcfa65e8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 27 06:05:11 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Aug 27 06:06:35 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c05061c
dev-libs/boehm-gc: add 8.2.2
No longer marked as a pre-release.
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/boehm-gc/Manifest | 1 +
dev-libs/boehm-gc/boehm-gc-8.2.2.ebuild | 56 +++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/dev-libs/boehm-gc/Manifest b/dev-libs/boehm-gc/Manifest
index 1589b260ac5a..9242479e58a2 100644
--- a/dev-libs/boehm-gc/Manifest
+++ b/dev-libs/boehm-gc/Manifest
@@ -3,3 +3,4 @@ DIST gc-8.0.4.tar.gz 1160528 BLAKE2B ec42378c964fc573e53f6f58aa22fa63a0b421c91b8
DIST gc-8.0.6.tar.gz 1168660 BLAKE2B c23cb10db54db0e8b16c429e039791086dfec4216ad65fabf072bc0f05df66364d019fccf945bffc32ce12868edfbaf6d9482acb2949d1e233bd89925ab55ebd SHA512 2ea25003d585118e3ac0e12be9240e8195db511c6e94949f20453dc3cb771380bd5b956c04243b2a8ce31508587aa32de4f0f10a813577e6dbe8367688b7614e
DIST gc-8.0.8.tar.gz 1173619 BLAKE2B 5caa3839390f0a727d7b6fafc13094507326f42c57766ef3f80fb59d64ebbe00e780990735bdefcf26d160a1ae8d44c0d9658310314877b11a91e064a875483a SHA512 c09da03883170b91e7d4904484266948472018a42092f7df42798507666d693327895ef8348f7cb0007f7e4948fbd0476e4021f5a203838157ce46ef3a401f7b
DIST gc-8.2.0.tar.gz 1183225 BLAKE2B 382c28041b8cff9df794db48727c0bb478ed9222b15bcf11eda7132b1776970774576b63823e62a87c6563a06359a3d0572effea1ca63fb4f6fdadf1ea350cbe SHA512 ff781360bca667f1f95fbfed073e9035f63134cac1bda4f7e4217664a3713c2846f750a3ce92732972c0435c69355b051f6e8eb6f2698b0d48d9107ff960bacf
+DIST gc-8.2.2.tar.gz 1200115 BLAKE2B 9f0306f24189687f0e9e58cd942d67e94d009bd4c9a88556edaae756f902ce71f7eed2ee66a9a9b2e8e40c54653796f494104b395828282b83ee6a89a5542378 SHA512 4a7b26789ce22ab72bfaadf3029362c5fe26737df1e856e43db7d9b24ee8acf625e35d596bb3f698f91d6a5ddfb6c45a952a1dbd18d47359569696a544c9c248
diff --git a/dev-libs/boehm-gc/boehm-gc-8.2.2.ebuild b/dev-libs/boehm-gc/boehm-gc-8.2.2.ebuild
new file mode 100644
index 000000000000..0d463fd97be6
--- /dev/null
+++ b/dev-libs/boehm-gc/boehm-gc-8.2.2.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2022 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"
+# Upstream marked this version as "Pre-release"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-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:[~2022-08-27 23:10 UTC|newest]
Thread overview: 95+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-27 6:14 Sam James [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-10-01 21:01 Matt Turner
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-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=1661580395.7c05061c40634d9a1adc02c17ffaff53fcfa65e8.sam@gentoo \
--to=sam@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