commit:     0f04ccc0f24935211230db63cbc39919bde5eafd
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  5 07:23:32 2026 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Thu Feb  5 07:23:32 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f04ccc0

gnustep-base/libobjc2: drop 2.2.1-r1

Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>

 gnustep-base/libobjc2/Manifest                     |  1 -
 ...bjc-2.2.1-remove-flags-from-eh_trampoline.patch | 28 ---------------
 gnustep-base/libobjc2/libobjc2-2.2.1-r1.ebuild     | 40 ----------------------
 3 files changed, 69 deletions(-)

diff --git a/gnustep-base/libobjc2/Manifest b/gnustep-base/libobjc2/Manifest
index 07dca72d34af..04c58787023e 100644
--- a/gnustep-base/libobjc2/Manifest
+++ b/gnustep-base/libobjc2/Manifest
@@ -1,2 +1 @@
-DIST libobjc2-2.2.1.tar.gz 205087 BLAKE2B 
84c09d4352d9db0de75531d46e542905617ba1b5df60ac718a32ec4eaeebc620ad1807d6480983a65f0a0a7863eff575568dfab3e32475cb8364d39d4a187587
 SHA512 
294db277da1ad929813cbb6c7ae1b5b9dfd9dcb6ceec157b9ec59bca85202c6f344ad8ba8ab3731b83abc5f72c2ab1cb88a79947e56eb92e87dcf62584169af9
 DIST libobjc2-2.3.tar.gz 213139 BLAKE2B 
6bcfe56ea602a1a2b84ff6e9638a1779fd555270984dc5d041fbe7a95c6a4292a25b2f4dbbeb046b33095108490c9214c48561e78627b36c46c721ea3c7a4131
 SHA512 
d5d051a2ee8abc2d72e3e51faae721e53e301a2a21c35853ee9a44cac749cf13d8e5938b32b98f8793c767fe8a54b1d472ea3e174c45c7b65543db2e84b369ff

diff --git 
a/gnustep-base/libobjc2/files/libobjc-2.2.1-remove-flags-from-eh_trampoline.patch
 
b/gnustep-base/libobjc2/files/libobjc-2.2.1-remove-flags-from-eh_trampoline.patch
deleted file mode 100644
index 4f5e786c29c3..000000000000
--- 
a/gnustep-base/libobjc2/files/libobjc-2.2.1-remove-flags-from-eh_trampoline.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-https://bugs.gentoo.org/926875
-https://bugs.gentoo.org/940647
-https://github.com/gnustep/libobjc2/pull/288
-https://github.com/gnustep/libobjc2/commit/4a0c2f1afee5a6c618d51fb33efb9ccb95b808b8
-https://github.com/gnustep/libobjc2/issues/177
-
-From 4a0c2f1afee5a6c618d51fb33efb9ccb95b808b8 Mon Sep 17 00:00:00 2001
-From: Frederik Carlier <[email protected]>
-Date: Tue, 2 Apr 2024 14:53:43 +0200
-Subject: [PATCH] Don't use CXXFLAGS when compiling eh_trampoline.cc
-
-We don't want the user to override these flags because that file
-needs to be compiled in a very specific way.
-
-Re-applies #178 (365e53632e8be41e49f21ee47a63e41be424a237)
-Related to #183
-Fixes #177
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -230,7 +230,7 @@ elseif (MINGW)
-       message(STATUS "Using MinGW-compatible exception model")
-       list(APPEND libobjc_CXX_SRCS objcxx_eh.cc objcxx_eh_mingw.cc)
- else ()
--      separate_arguments(EH_PERSONALITY_FLAGS NATIVE_COMMAND 
${CMAKE_CXX_FLAGS})
-+      set(EH_PERSONALITY_FLAGS "")
-       if (CMAKE_CXX_COMPILER_TARGET)
-               list(APPEND EH_PERSONALITY_FLAGS 
"${CMAKE_CXX_COMPILE_OPTIONS_TARGET}${CMAKE_CXX_COMPILER_TARGET}")
-       endif ()

diff --git a/gnustep-base/libobjc2/libobjc2-2.2.1-r1.ebuild 
b/gnustep-base/libobjc2/libobjc2-2.2.1-r1.ebuild
deleted file mode 100644
index e8052aa857a7..000000000000
--- a/gnustep-base/libobjc2/libobjc2-2.2.1-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit cmake flag-o-matic toolchain-funcs
-
-DESCRIPTION="GNUstep Objective-C runtime"
-HOMEPAGE="https://gnustep.github.io";
-SRC_URI="https://github.com/gnustep/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-cpp/robin-map"
-BDEPEND="${RDEPEND}
-       llvm-core/clang"
-
-PATCHES=(
-       "${FILESDIR}"/libobjc-2.2.1-remove-flags-from-eh_trampoline.patch
-)
-
-src_configure() {
-       if tc-is-gcc; then
-               einfo "Forcing clang"
-               export CC="${CHOST}-clang"
-               export CXX="${CHOST}-clang++"
-
-               # Strip unsupported flags for clang. bug #871933
-               strip-unsupported-flags
-       fi
-
-       local mycmakeargs=(
-               -DGNUSTEP_CONFIG=GNUSTEP_CONFIG-NOTFOUND
-               -DTESTS="$(usex test)"
-       )
-       cmake_src_configure
-}

Reply via email to