commit:     5bca6484f0a4db2d81fda91845553fa440d88591
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 22 07:27:08 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jan 22 07:27:08 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bca6484

dev-libs/boehm-gc: drop 8.2.4, 8.2.6

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/boehm-gc/Manifest              |  2 --
 dev-libs/boehm-gc/boehm-gc-8.2.4.ebuild | 56 ---------------------------------
 dev-libs/boehm-gc/boehm-gc-8.2.6.ebuild | 56 ---------------------------------
 3 files changed, 114 deletions(-)

diff --git a/dev-libs/boehm-gc/Manifest b/dev-libs/boehm-gc/Manifest
index 86d6c424038a..9d25386b4dd6 100644
--- a/dev-libs/boehm-gc/Manifest
+++ b/dev-libs/boehm-gc/Manifest
@@ -1,3 +1 @@
-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.4.ebuild 
b/dev-libs/boehm-gc/boehm-gc-8.2.4.ebuild
deleted file mode 100644
index d37ea89c0d9b..000000000000
--- a/dev-libs/boehm-gc/boehm-gc-8.2.4.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2023 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 ~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
-}

diff --git a/dev-libs/boehm-gc/boehm-gc-8.2.6.ebuild 
b/dev-libs/boehm-gc/boehm-gc-8.2.6.ebuild
deleted file mode 100644
index c915752a7a69..000000000000
--- a/dev-libs/boehm-gc/boehm-gc-8.2.6.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# 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
-}

Reply via email to