commit: 06358ce1fae772ae4b1fc351c3dd544026754915
Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Mon Feb 10 23:54:31 2025 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Feb 11 20:54:21 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06358ce1
dev-cpp/sol2: drop 3.3.1
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
dev-cpp/sol2/sol2-3.3.1.ebuild | 67 ------------------------------------------
1 file changed, 67 deletions(-)
diff --git a/dev-cpp/sol2/sol2-3.3.1.ebuild b/dev-cpp/sol2/sol2-3.3.1.ebuild
deleted file mode 100644
index 585aae692d6f..000000000000
--- a/dev-cpp/sol2/sol2-3.3.1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-{1,3,4} luajit )
-inherit cmake lua
-
-DESCRIPTION="Header-only C++ <-> Lua API wrapper"
-HOMEPAGE="https://github.com/ThePhD/sol2"
-SRC_URI="https://github.com/ThePhD/sol2/archive/refs/tags/v${PV}.tar.gz ->
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
-IUSE="test"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-DEPEND="
- ${LUA_DEPS}
- test? (
- >=dev-cpp/catch-3
- )
-"
-BDEPEND="
- virtual/pkgconfig
-"
-
-PATCHES=(
- "${FILESDIR}"/sol2-3.3.0-werror.patch
- "${FILESDIR}"/sol2-3.2.2-luajit-pkgconf.patch
- "${FILESDIR}"/sol2-3.3.0-catch-depend.patch
- "${FILESDIR}"/sol2-3.3.0-cmake-dir.patch
- "${FILESDIR}"/sol2-3.3.0-dont-install-tests.patch
-)
-
-src_configure() {
- sol2_configure_wrapper() {
- local mycmakeargs=(
- -DSOL2_BUILD_LUA=no
- -DSOL2_TESTS=$(usex test)
- -DSOL2_LUA_VERSION="${ELUA}"
- )
- cmake_src_configure
- }
- lua_foreach_impl sol2_configure_wrapper
-}
-
-src_compile() {
- lua_foreach_impl cmake_src_compile
-}
-
-src_test() {
- sol2_test_wrapper() {
- if [[ ${ELUA} == luajit ]]; then
- einfo "Skipping test due to
https://github.com/ThePhD/sol2/issues/1221"
- else
- cmake_src_test
- fi
- }
- lua_foreach_impl sol2_test_wrapper
-}
-
-src_install() {
- lua_foreach_impl cmake_src_install
-}