summaryrefslogtreecommitdiff
path: root/dev-cpp
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2025-11-14 06:24:54 -0500
committerIonen Wolkens <ionen@gentoo.org>2025-11-14 06:27:03 -0500
commitc89a993b25fe4d5874945c3dfdd59230a8a70a36 (patch)
tree80dbd12f59970d05e9d54f644d5d02377161e879 /dev-cpp
parentfb7e2603340dcca69b65aee9f31b883d950f9693 (diff)
downloadgentoo-c89a993b25fe4d5874945c3dfdd59230a8a70a36.tar.gz
gentoo-c89a993b25fe4d5874945c3dfdd59230a8a70a36.tar.bz2
gentoo-c89a993b25fe4d5874945c3dfdd59230a8a70a36.zip
dev-cpp/simpleini: drop 4.23, 4.24
Short-lived releases, may as well get rid of now -- will keep 4.22 for some time on the other hand. Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-cpp')
-rw-r--r--dev-cpp/simpleini/Manifest2
-rw-r--r--dev-cpp/simpleini/simpleini-4.23.ebuild27
-rw-r--r--dev-cpp/simpleini/simpleini-4.24.ebuild28
3 files changed, 0 insertions, 57 deletions
diff --git a/dev-cpp/simpleini/Manifest b/dev-cpp/simpleini/Manifest
index b0dc42bbb500..db1936037645 100644
--- a/dev-cpp/simpleini/Manifest
+++ b/dev-cpp/simpleini/Manifest
@@ -1,4 +1,2 @@
DIST simpleini-4.22.tar.gz 65923 BLAKE2B 22c63d089aa30b9a15644b485b4f8238e4bf5c8bffad887eff2fa738f10d5506e960dda505dc858d72795a16ed6ba20850c90796a9ec18ef3117a6330baa2a48 SHA512 6c198636816a0018adbf7f735d402c64245c6fcd540b7360d4388d46f007f3a520686cdaec4705cb8cb31401b2cb4797a80b42ea5d08a6a5807c0848386f7ca1
-DIST simpleini-4.23.tar.gz 96466 BLAKE2B 5a12203f04b15cba1157e2d8bfdf59f2d73bdea23e354be41d5a1b8ad32f1d367bfcc712356b381752ec063a1ed2577cc5f982e54302428e3f47721f588fca7c SHA512 0df6bc0499d3601a8d9a921a40cbd78e03e550d5f5ced9659f3985f1ff875262cac541ea67ead16680b2afed4bffbc03bbfdd1eb54d1a9b6918ae340cc5a5ff8
-DIST simpleini-4.24.tar.gz 72173 BLAKE2B b903e60ceee12ba8ce87197e168ff82be0a606e041ee7b384121d05c41d13ca72bed83ba7a4886e230fc5c4a9791477bea77635b315e079444e57fba90347587 SHA512 042d330862ba44b22b2be2afd990e1ae3e8d7a83fa81d8264a480e7e2aefc25a2891fb62dcdcbd00dbc29e565a56931cb0b20b5e9858eef63a1425e3d2b201ac
DIST simpleini-4.25.tar.gz 81269 BLAKE2B 68b93fc78a5968506444521bad51aa89c809136db7db0e12b80092d7547f6843bdd0afb5a9384c8ebb5cbffd33126aff0100d6b55cd6e84943f123cec1c587d5 SHA512 b937c18a7b6277d77ca7ebfb216af4984810f77af4c32d101b7685369a4bd5eb61406223f82698e167e6311a728d07415ab59639fdf19eff71ad6dc2abfda989
diff --git a/dev-cpp/simpleini/simpleini-4.23.ebuild b/dev-cpp/simpleini/simpleini-4.23.ebuild
deleted file mode 100644
index f0db70eccb7e..000000000000
--- a/dev-cpp/simpleini/simpleini-4.23.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 2022-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="C++ library providing a simple API to read and write INI-style files"
-HOMEPAGE="https://github.com/brofield/simpleini/"
-SRC_URI="https://github.com/brofield/simpleini/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="test? ( dev-cpp/gtest )"
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_TESTING=$(usex test)
- -DSIMPLEINI_USE_SYSTEM_GTEST=yes
- )
-
- cmake_src_configure
-}
diff --git a/dev-cpp/simpleini/simpleini-4.24.ebuild b/dev-cpp/simpleini/simpleini-4.24.ebuild
deleted file mode 100644
index 3337d60a24a5..000000000000
--- a/dev-cpp/simpleini/simpleini-4.24.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 2022-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="C++ library providing a simple API to read and write INI-style files"
-HOMEPAGE="https://github.com/brofield/simpleini/"
-SRC_URI="https://github.com/brofield/simpleini/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="test? ( dev-cpp/gtest )"
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_TESTING=$(usex test)
- #-DSIMPLEINI_BUILD_TESTS=$(usex test) # exists but unused?
- -DSIMPLEINI_USE_SYSTEM_GTEST=yes
- )
-
- cmake_src_configure
-}