commit:     2c5ecbcd75bea672c0d7a8b0568882d323eaa1b5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 14 05:19:37 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 14 05:19:37 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c5ecbcd

sys-devel/mold: drop 2.34.1-r1, 2.35.0

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

 sys-devel/mold/Manifest                           |   2 -
 sys-devel/mold/files/mold-2.34.1-linux-6.11.patch |  22 -----
 sys-devel/mold/mold-2.34.1-r1.ebuild              | 107 ---------------------
 sys-devel/mold/mold-2.35.0.ebuild                 | 110 ----------------------
 4 files changed, 241 deletions(-)

diff --git a/sys-devel/mold/Manifest b/sys-devel/mold/Manifest
index 0fd66e51497a..3684718aaedb 100644
--- a/sys-devel/mold/Manifest
+++ b/sys-devel/mold/Manifest
@@ -1,6 +1,4 @@
 DIST mold-2.1.0.tar.gz 9278811 BLAKE2B 
b31e13f92177553adf5069cf35c8c75c7bc28f0af4d1726cdc0c6abc1c9d3baaa5be512c3a8fb9bc3c3110096a79e1c6751c701171769595a2234fc1fa8c441a
 SHA512 
f1c98d349b35b4042109d71f7db6eb8d7d089dc3241735bbd7b5402d513dcc85ca17904828779e5fc8234650fa9fb97f47c3a2f3e89cc2fb3cb9e9110439e5a2
-DIST mold-2.34.1.tar.gz 10057683 BLAKE2B 
9a9b166e64c4e5d48631147e781ce0d58acf76420f172bdee31fe5c44f37a8e2b098ae5696b52b668255f9a5967b0fb567a51d9fb8b26cddba0e14ed5a3e3464
 SHA512 
6ddfda8b81b710555272ee67eac7f2b3088a7a78f308843caa1730c1b631fc7031b8f5eac33379b9926c9f000d7b27864c12bb62ea75051d2f1caf9f9d2946ab
-DIST mold-2.35.0.tar.gz 10056856 BLAKE2B 
9b039031047263aa959aa6f2bf296d11d51bf02d0a66afa76e08200d4547ee5d66cf522497b86fce7fd8cbd43559b8d19ad0264c749833988592cf7291fd55fe
 SHA512 
6f7be924cb6ea38c0089f0c34beec9ef51160daea3510dac4ed68c519efefe4496739271b35c271f7384c9e436bd8a0636ce47e0847aa2b4daf227accecc7314
 DIST mold-2.35.1.tar.gz 10094602 BLAKE2B 
4943588d116a4631ad4404a4f2d92c4f9745546ec1ab7054df2af766f270c634c571f90d5e224f5441e48a3b310819f6993e56d5574c60032dd547d68d08fc64
 SHA512 
30d9cadfe57288e80ffcaddf1bf7df7b3bff75d337ea2b612bdffa3de3f7bd908b02d24c1f848d4ad0e82f72cd0e04c33ddd01d23c549d81aac5af58e63dbab4
 DIST mold-2.36.0.tar.gz 10094759 BLAKE2B 
d86e6c7b71bbda0f02fbf2215f15a0e4c15cbb0ba32d4c5d478a6e07d4ed4fb42891610cfdc24ea67b6683f044a9c122db8534580fe12f6164b0db2681178825
 SHA512 
985ca22400b2d957b4ea8d35d6716cc6f13d1abe9c9e1eed461efda6f2612a5fbfa707aff879c616c756111fea751a335ad3a3fc224c7573855e7b2795596164
 DIST mold-2.37.1.tar.gz 10169802 BLAKE2B 
702f5678f070b66cd3e6a2df000aad73ce6248d0bb025bfbfaa5de76be71c2ea265c45c5e5086426c79354f95c9326e0c33b0e78a144881a22456fbb495e46b1
 SHA512 
641c6668ee31368409d80ea01c0d84a58eac827eedc110495ca075bfce22081c906308d027e4723750995fc0d8b6bba8be3c3472c20f765ef45d14e1c4e36cd4

diff --git a/sys-devel/mold/files/mold-2.34.1-linux-6.11.patch 
b/sys-devel/mold/files/mold-2.34.1-linux-6.11.patch
deleted file mode 100644
index 8540ec0cb246..000000000000
--- a/sys-devel/mold/files/mold-2.34.1-linux-6.11.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-https://lore.kernel.org/stable/cackh++yatemyu2ntluyfmxzogo37fqogkmdkbpddmnaz5he...@mail.gmail.com/T/#u
-https://github.com/rui314/mold/issues/1361
-https://bugs.gentoo.org/941070
---- a/src/output-file-unix.cc
-+++ b/src/output-file-unix.cc
-@@ -19,16 +19,6 @@ template <typename E>
- static int
- open_or_create_file(Context<E> &ctx, std::string path, std::string tmpfile,
-                     int perm) {
--  // Reuse an existing file if exists and writable because on Linux,
--  // writing to an existing file is much faster than creating a fresh
--  // file and writing to it.
--  if (ctx.overwrite_output_file && rename(path.c_str(), tmpfile.c_str()) == 
0) {
--    i64 fd = ::open(tmpfile.c_str(), O_RDWR | O_CREAT, perm);
--    if (fd != -1)
--      return fd;
--    unlink(tmpfile.c_str());
--  }
--
-   i64 fd = ::open(tmpfile.c_str(), O_RDWR | O_CREAT, perm);
-   if (fd == -1)
-     Fatal(ctx) << "cannot open " << tmpfile << ": " << errno_string();

diff --git a/sys-devel/mold/mold-2.34.1-r1.ebuild 
b/sys-devel/mold/mold-2.34.1-r1.ebuild
deleted file mode 100644
index e8d9cd581db3..000000000000
--- a/sys-devel/mold/mold-2.34.1-r1.ebuild
+++ /dev/null
@@ -1,107 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic toolchain-funcs
-
-DESCRIPTION="A Modern Linker"
-HOMEPAGE="https://github.com/rui314/mold";
-if [[ ${PV} == 9999 ]] ; then
-       EGIT_REPO_URI="https://github.com/rui314/mold.git";
-       inherit git-r3
-else
-       SRC_URI="https://github.com/rui314/mold/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
-       # -alpha: 
https://github.com/rui314/mold/commit/3711ddb95e23c12991f6b8c7bfeba4f1421d19d4
-       KEYWORDS="-alpha amd64 ~arm ~arm64 ~loong ~ppc ~riscv ~sparc ~x86"
-fi
-
-# mold (MIT)
-#  - xxhash (BSD-2)
-#  - siphash ( MIT CC0-1.0 )
-LICENSE="MIT BSD-2 CC0-1.0"
-SLOT="0"
-IUSE="debug"
-
-RDEPEND="
-       app-arch/zstd:=
-       >=dev-cpp/tbb-2021.7.0-r1:=
-       dev-libs/blake3:=
-       sys-libs/zlib
-       !kernel_Darwin? (
-               >=dev-libs/mimalloc-2:=
-       )
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-2.34.1-linux-6.11.patch
-)
-
-pkg_pretend() {
-       # Requires a c++20 compiler, see #831473
-       if [[ ${MERGE_TYPE} != binary ]]; then
-               if tc-is-gcc && [[ $(gcc-major-version) -lt 10 ]]; then
-                       die "${PN} needs at least gcc 10"
-               elif tc-is-clang && [[ $(clang-major-version) -lt 12 ]]; then
-                       die "${PN} needs at least clang 12"
-               fi
-       fi
-}
-
-src_prepare() {
-       cmake_src_prepare
-
-       # Needs unpackaged dwarfdump
-       rm test/{{dead,compress}-debug-sections,compressed-debug-info}.sh || die
-
-       # Heavy tests, need qemu
-       rm test/gdb-index-{compress-output,dwarf{2,3,4,5}}.sh || die
-       rm test/lto-{archive,dso,gcc,llvm,version-script}.sh || die
-
-       # Sandbox sadness
-       rm test/run.sh || die
-       sed -i 's|`pwd`/mold-wrapper.so|"& ${LD_PRELOAD}"|' \
-               test/mold-wrapper{,2}.sh || die
-
-       # static-pie tests require glibc built with static-pie support
-       if ! has_version -d 'sys-libs/glibc[static-pie(+)]'; then
-               rm test/{,ifunc-}static-pie.sh || die
-       fi
-}
-
-src_configure() {
-       use debug || append-cppflags "-DNDEBUG"
-
-       local mycmakeargs=(
-               -DMOLD_ENABLE_QEMU_TESTS=OFF
-               -DMOLD_LTO=OFF # Should be up to the user to decide this with 
CXXFLAGS.
-               -DMOLD_USE_MIMALLOC=$(usex !kernel_Darwin)
-               -DMOLD_USE_SYSTEM_MIMALLOC=ON
-               -DMOLD_USE_SYSTEM_TBB=ON
-       )
-       cmake_src_configure
-}
-
-src_install() {
-       dobin "${BUILD_DIR}"/${PN}
-
-       # https://bugs.gentoo.org/872773
-       insinto /usr/$(get_libdir)/mold
-       doins "${BUILD_DIR}"/${PN}-wrapper.so
-
-       dodoc docs/{design,execstack}.md
-       doman docs/${PN}.1
-
-       dosym ${PN} /usr/bin/ld.${PN}
-       dosym ${PN} /usr/bin/ld64.${PN}
-       dosym -r /usr/bin/${PN} /usr/libexec/${PN}/ld
-}
-
-src_test() {
-       export TEST_CC="$(tc-getCC)" \
-                  TEST_GCC="$(tc-getCC)" \
-                  TEST_CXX="$(tc-getCXX)" \
-                  TEST_GXX="$(tc-getCXX)"
-       cmake_src_test
-}

diff --git a/sys-devel/mold/mold-2.35.0.ebuild 
b/sys-devel/mold/mold-2.35.0.ebuild
deleted file mode 100644
index c931932d54b4..000000000000
--- a/sys-devel/mold/mold-2.35.0.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 2021-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic toolchain-funcs
-
-DESCRIPTION="A Modern Linker"
-HOMEPAGE="https://github.com/rui314/mold";
-if [[ ${PV} == 9999 ]] ; then
-       EGIT_REPO_URI="https://github.com/rui314/mold.git";
-       inherit git-r3
-else
-       SRC_URI="https://github.com/rui314/mold/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
-       # -alpha: 
https://github.com/rui314/mold/commit/3711ddb95e23c12991f6b8c7bfeba4f1421d19d4
-       KEYWORDS="-alpha amd64 ~arm ~arm64 ~loong ~ppc ~riscv ~sparc ~x86"
-fi
-
-# mold (MIT)
-#  - xxhash (BSD-2)
-#  - siphash ( MIT CC0-1.0 )
-LICENSE="MIT BSD-2 CC0-1.0"
-SLOT="0"
-IUSE="debug"
-
-RDEPEND="
-       app-arch/zstd:=
-       >=dev-cpp/tbb-2021.7.0-r1:=
-       dev-libs/blake3:=
-       sys-libs/zlib
-       !kernel_Darwin? (
-               >=dev-libs/mimalloc-2:=
-       )
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-2.34.1-linux-6.11.patch
-)
-
-pkg_pretend() {
-       # Requires a c++20 compiler, see #831473
-       if [[ ${MERGE_TYPE} != binary ]]; then
-               if tc-is-gcc && [[ $(gcc-major-version) -lt 10 ]]; then
-                       die "${PN} needs at least gcc 10"
-               elif tc-is-clang && [[ $(clang-major-version) -lt 12 ]]; then
-                       die "${PN} needs at least clang 12"
-               fi
-       fi
-}
-
-src_prepare() {
-       cmake_src_prepare
-
-       # Needs unpackaged dwarfdump
-       rm test/{{dead,compress}-debug-sections,compressed-debug-info}.sh || die
-
-       # Heavy tests, need qemu
-       rm test/gdb-index-{compress-output,dwarf{2,3,4,5}}.sh || die
-       rm test/lto-{archive,dso,gcc,llvm,version-script}.sh || die
-
-       # Sandbox sadness
-       rm test/run.sh || die
-       sed -i 's|`pwd`/mold-wrapper.so|"& ${LD_PRELOAD}"|' \
-               test/mold-wrapper{,2}.sh || die
-
-       # static-pie tests require glibc built with static-pie support
-       if ! has_version -d 'sys-libs/glibc[static-pie(+)]'; then
-               rm test/{,ifunc-}static-pie.sh || die
-       fi
-}
-
-src_configure() {
-       use debug || append-cppflags "-DNDEBUG"
-
-       local mycmakeargs=(
-               -DMOLD_ENABLE_QEMU_TESTS=OFF
-               -DMOLD_LTO=OFF # Should be up to the user to decide this with 
CXXFLAGS.
-               -DMOLD_USE_MIMALLOC=$(usex !kernel_Darwin)
-               -DMOLD_USE_SYSTEM_MIMALLOC=ON
-               -DMOLD_USE_SYSTEM_TBB=ON
-       )
-       cmake_src_configure
-}
-
-src_test() {
-       local CMAKE_SKIP_TESTS=(
-               # https://github.com/rui314/mold/issues/1370
-               x86_64-range-extension-thunk2
-       )
-
-       export TEST_CC="$(tc-getCC)" TEST_GCC="$(tc-getCC)" \
-               TEST_CXX="$(tc-getCXX)" TEST_GXX="$(tc-getCXX)"
-       cmake_src_test
-}
-
-src_install() {
-       dobin "${BUILD_DIR}"/${PN}
-
-       # https://bugs.gentoo.org/872773
-       insinto /usr/$(get_libdir)/mold
-       doins "${BUILD_DIR}"/${PN}-wrapper.so
-
-       dodoc docs/{design,execstack}.md
-       doman docs/${PN}.1
-
-       dosym ${PN} /usr/bin/ld.${PN}
-       dosym ${PN} /usr/bin/ld64.${PN}
-       dosym -r /usr/bin/${PN} /usr/libexec/${PN}/ld
-}

Reply via email to