From ebe97f9d730530866a5c50b48ee6aecddeadc1fc Mon Sep 17 00:00:00 2001 From: Ionen Wolkens Date: Thu, 28 Dec 2023 22:21:39 -0500 Subject: dev-cpp/simpleini: add 4.22, drop 4.21 Identical release save for updating the 4.20 version in cmake (that should've been 4.21) to 4.22. Does not affect anything here given was not using cmake yet though. Signed-off-by: Ionen Wolkens --- dev-cpp/simpleini/Manifest | 2 +- dev-cpp/simpleini/simpleini-4.21.ebuild | 36 --------------------------------- dev-cpp/simpleini/simpleini-4.22.ebuild | 36 +++++++++++++++++++++++++++++++++ 3 files changed, 37 insertions(+), 37 deletions(-) delete mode 100644 dev-cpp/simpleini/simpleini-4.21.ebuild create mode 100644 dev-cpp/simpleini/simpleini-4.22.ebuild (limited to 'dev-cpp') diff --git a/dev-cpp/simpleini/Manifest b/dev-cpp/simpleini/Manifest index fb19012e80da..0b95dfd23003 100644 --- a/dev-cpp/simpleini/Manifest +++ b/dev-cpp/simpleini/Manifest @@ -1,2 +1,2 @@ DIST simpleini-4.20.tar.gz 64807 BLAKE2B 5179fbdc1a46b352590a20bcaafa88d905d75ef3334becc03caf11f5b8c4bd3673971d688f9ec0077af3192244b29befd217dfa4ef218594f68c917698727b72 SHA512 e2518d10d63026b0fd423cbd77372b60bc693e8ec1878a91ab05364a49b48d38d8d379247a27a8ffc5582ba19e333b10996f4bf48899c06c567ae0dea067a9e3 -DIST simpleini-4.21.tar.gz 65928 BLAKE2B 92b32ff2767dc7177ddc3a61fa122cc2810d99ff4be461adb88849ce92ff242899348bc55b698a31c30440e1e02efd9226c7a2075c4080c6b90874778bbf3d0c SHA512 a2bbe879f49c8e790daf3c5b02fbf7bacb0249a6d4b8b31116602c48090dc579c3d463b1288923ecd4708647ff2b47dee739a85bb47607d249d5608b29740011 +DIST simpleini-4.22.tar.gz 65923 BLAKE2B 22c63d089aa30b9a15644b485b4f8238e4bf5c8bffad887eff2fa738f10d5506e960dda505dc858d72795a16ed6ba20850c90796a9ec18ef3117a6330baa2a48 SHA512 6c198636816a0018adbf7f735d402c64245c6fcd540b7360d4388d46f007f3a520686cdaec4705cb8cb31401b2cb4797a80b42ea5d08a6a5807c0848386f7ca1 diff --git a/dev-cpp/simpleini/simpleini-4.21.ebuild b/dev-cpp/simpleini/simpleini-4.21.ebuild deleted file mode 100644 index ccc5bfadc70d..000000000000 --- a/dev-cpp/simpleini/simpleini-4.21.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2022-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -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 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND="test? ( dev-cpp/gtest )" -BDEPEND="test? ( virtual/pkgconfig )" - -PATCHES=( - "${FILESDIR}"/${PN}-4.20-pkgconfig-var.patch -) - -src_compile() { - if use test; then - tc-export CXX PKG_CONFIG - emake -C tests "${emakeargs[@]}" - fi -} - -src_install() { - # note: this skips ConvertUTF, can use -DSI_CONVERT_ICU instead if needed - emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install - einstalldocs -} diff --git a/dev-cpp/simpleini/simpleini-4.22.ebuild b/dev-cpp/simpleini/simpleini-4.22.ebuild new file mode 100644 index 000000000000..ccc5bfadc70d --- /dev/null +++ b/dev-cpp/simpleini/simpleini-4.22.ebuild @@ -0,0 +1,36 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +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 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND="test? ( dev-cpp/gtest )" +BDEPEND="test? ( virtual/pkgconfig )" + +PATCHES=( + "${FILESDIR}"/${PN}-4.20-pkgconfig-var.patch +) + +src_compile() { + if use test; then + tc-export CXX PKG_CONFIG + emake -C tests "${emakeargs[@]}" + fi +} + +src_install() { + # note: this skips ConvertUTF, can use -DSI_CONVERT_ICU instead if needed + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install + einstalldocs +} -- cgit v1.2.3-65-gdbad