diff options
author | Matoro Mahri <matoro_gentoo@matoro.tk> | 2023-12-17 21:20:10 -0500 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-12-19 05:25:51 +0000 |
commit | fefcf5c5a78d937f45381819b2b8a3446a3f77eb (patch) | |
tree | c45f659f51dd316a79882e8afefd8fffadcbc390 /dev-cpp/magic_enum | |
parent | app-arch/dpkg: add patch to fix mips build (diff) | |
download | gentoo-fefcf5c5a78d937f45381819b2b8a3446a3f77eb.tar.gz gentoo-fefcf5c5a78d937f45381819b2b8a3446a3f77eb.tar.bz2 gentoo-fefcf5c5a78d937f45381819b2b8a3446a3f77eb.zip |
dev-cpp/magic_enum: add 0.9.5
Bug: https://bugs.gentoo.org/917096
Reviewed-by: Nick Sarnie <sarnex@gentoo.org>
Signed-off-by: Matoro Mahri <matoro_gentoo@matoro.tk>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/magic_enum')
-rw-r--r-- | dev-cpp/magic_enum/Manifest | 1 | ||||
-rw-r--r-- | dev-cpp/magic_enum/magic_enum-0.9.5.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-cpp/magic_enum/Manifest b/dev-cpp/magic_enum/Manifest index f363ac357209..8e0a5a0188ca 100644 --- a/dev-cpp/magic_enum/Manifest +++ b/dev-cpp/magic_enum/Manifest @@ -1 +1,2 @@ DIST magic_enum-0.8.2.tar.gz 171915 BLAKE2B e8915aa7cafa9407d5d4ab3b6837fafde6b1cb75877c8b56f82568e6291ca317720950947b2dfc7e12ca459279ba4e809a8c5782fc04adc2d7636eddcb80122d SHA512 849c426484156faf91dde3f32f6c755c7698879b16dd83e13fb86b299b53ec9bbe4d55267581386302c8acb93d80ec044cc248371fdc8608cdd8f4ab12099f0a +DIST magic_enum-0.9.5.tar.gz 198269 BLAKE2B c3c6bbf6c5d366813dac7df5fbfc48f414cf4235d842ef3a5a2fd8f2c2857e55243b7fbf7000d598e778fc8d2d54c7d6e34f8a97fa2eaf510572bf53f17500a6 SHA512 f1b412d15e0ef624b4588adba00a18ed12eeb1f0dabc021d53a7c047b8976ecb07701b76040f47c77c75e00151619dbce1f9a75f471db04340156a39044768f3 diff --git a/dev-cpp/magic_enum/magic_enum-0.9.5.ebuild b/dev-cpp/magic_enum/magic_enum-0.9.5.ebuild new file mode 100644 index 000000000000..ee9103fd4e03 --- /dev/null +++ b/dev-cpp/magic_enum/magic_enum-0.9.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# As of 0.8.2, it has meson, but only for subproject use(?) +# Doesn't install anything. +inherit cmake + +DESCRIPTION="Static reflection for enums in header-only C++" +HOMEPAGE="https://github.com/Neargye/magic_enum" +SRC_URI="https://github.com/Neargye/magic_enum/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +src_configure() { + local mycmakeargs=( + -DMAGIC_ENUM_OPT_BUILD_TESTS=$(usex test) + -DMAGIC_ENUM_OPT_INSTALL=ON + ) + + cmake_src_configure +} |