commit: e21138f7a250568367f4e92a6bc90e14182e3f85 Author: David Roman <davidroman96 <AT> gmail <DOT> com> AuthorDate: Thu May 29 08:18:07 2025 +0000 Commit: David Roman <davidroman96 <AT> gmail <DOT> com> CommitDate: Thu May 29 08:18:07 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e21138f7
dev-cpp/reflection-cpp: add 0.4.0 Signed-off-by: David Roman <davidroman96 <AT> gmail.com> dev-cpp/reflection-cpp/Manifest | 1 + dev-cpp/reflection-cpp/reflection-cpp-0.4.0.ebuild | 32 ++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/dev-cpp/reflection-cpp/Manifest b/dev-cpp/reflection-cpp/Manifest index 8449943f00..6ca357da48 100644 --- a/dev-cpp/reflection-cpp/Manifest +++ b/dev-cpp/reflection-cpp/Manifest @@ -1,2 +1,3 @@ DIST reflection-cpp-0.2.0.tar.gz 18412 BLAKE2B e14b5c14402077f8a894da0ad6645949a5983e43b7313c735ac19b95b190c861f530d2f31cd7c5ca405d434fc7c90071678b7e6129ab3a92ddd5f813495ef280 SHA512 67c560dc15d7f522350b1599b0255da12551429e52b28864fa9ad1aab2a45e7a2f806f2810dfb4a6e88fedfe6e9a9e8d124dd3bc0f37e96e9b56dbb3fee33191 DIST reflection-cpp-0.3.0.tar.gz 20479 BLAKE2B 5cdb51309b6a629ba3f231a76d571e0be2aeea49a6309ad4b68f0bb7b632b92e9e550b17a0816fadaace39c2d170eb9c26ef91c02a52e49fd06370c9c368a2ba SHA512 b4a05099249ee155131664f40cd09f2902e4aca7f70a234c9ad66592d31c6f9a49c3bb2dba6cb3ed3762e262216c354be2fe8851145fe43402e2b31c6aae36d7 +DIST reflection-cpp-0.4.0.tar.gz 20562 BLAKE2B 0273d442d3ba3f30d6f13a6c126178b901bbc8ba0506884b1e6970a5ab738da3d4f7e9eea7f04cf5f898508e851ce76ed95bf11b19b05c791bedb88969f17480 SHA512 07032449bf84d402184af0e99d44617dd63a054f08b96d4254a980eeeb3bfb29f9d2ceef54ad1ed4d273cd4ff99d4c3f4a31b1a2e43b47efe12f0e6085804316 diff --git a/dev-cpp/reflection-cpp/reflection-cpp-0.4.0.ebuild b/dev-cpp/reflection-cpp/reflection-cpp-0.4.0.ebuild new file mode 100644 index 0000000000..d75d58174a --- /dev/null +++ b/dev-cpp/reflection-cpp/reflection-cpp-0.4.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Boxing primitive types in C++" +HOMEPAGE="https://github.com/contour-terminal/reflection-cpp" +SRC_URI="https://github.com/contour-terminal/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND=" + test? ( + dev-cpp/catch:0 + ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DREFLECTION_TESTING=$(usex test) + ) + + cmake_src_configure +}
