diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-03-27 18:44:57 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-03-27 18:44:57 +0000 |
| commit | c4b9b18a8ddce79dbe5f155dafa7943229efcec8 (patch) | |
| tree | cc3b77cdbe04b99c73ce540eb8813eea1b02a657 /dev-cpp/reflection-cpp | |
| parent | 3dc05ee008364ac3c1722174d91e2ad554c6de20 (diff) | |
| download | baldeagleos-repo-c4b9b18a8ddce79dbe5f155dafa7943229efcec8.tar.gz baldeagleos-repo-c4b9b18a8ddce79dbe5f155dafa7943229efcec8.tar.xz baldeagleos-repo-c4b9b18a8ddce79dbe5f155dafa7943229efcec8.zip | |
Adding metadata
Diffstat (limited to 'dev-cpp/reflection-cpp')
| -rw-r--r-- | dev-cpp/reflection-cpp/Manifest | 1 | ||||
| -rw-r--r-- | dev-cpp/reflection-cpp/metadata.xml | 10 | ||||
| -rw-r--r-- | dev-cpp/reflection-cpp/reflection-cpp-0.1.0.ebuild | 32 |
3 files changed, 43 insertions, 0 deletions
diff --git a/dev-cpp/reflection-cpp/Manifest b/dev-cpp/reflection-cpp/Manifest new file mode 100644 index 000000000000..79a1116e9b58 --- /dev/null +++ b/dev-cpp/reflection-cpp/Manifest @@ -0,0 +1 @@ +DIST reflection-cpp-0.1.0.tar.gz 17746 BLAKE2B aa472f84ea7aa941043b88aa8dde3c37058cf971a1f2e65f9c7c3ddea83bf9aed490a61d525fdadc3e5c66ca3d3737a0994d723d1d0b6e68adbafa0f2ecc6828 SHA512 fbc12b0e4aae206b6eff67d1e0aea7a49e7bfa4183070d708e7bfe70326af7e7e9f0ed0b350af92d2c0ee50c23c4e971e13e9d068bfb23972a417ac6cc828143 diff --git a/dev-cpp/reflection-cpp/metadata.xml b/dev-cpp/reflection-cpp/metadata.xml new file mode 100644 index 000000000000..56988650ec34 --- /dev/null +++ b/dev-cpp/reflection-cpp/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>davidroman96@gmail.com</email> + <name>David Roman</name> + </maintainer> + + <origin>gentoo-guru-overlay</origin> +</pkgmetadata>
\ No newline at end of file diff --git a/dev-cpp/reflection-cpp/reflection-cpp-0.1.0.ebuild b/dev-cpp/reflection-cpp/reflection-cpp-0.1.0.ebuild new file mode 100644 index 000000000000..d75d58174a80 --- /dev/null +++ b/dev-cpp/reflection-cpp/reflection-cpp-0.1.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 +} |
