From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1965315800F for ; Sun, 8 Jan 2023 04:55:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4C79E07D3; Sun, 8 Jan 2023 04:55:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0B53DE07E1 for ; Sun, 8 Jan 2023 04:55:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B482033BEAE for ; Sun, 8 Jan 2023 04:55:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2F36827 for ; Sun, 8 Jan 2023 04:55:17 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1673153707.f76d6ead4ed5c973823443edbd1e7f3ec32dd94d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/magic_enum/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/magic_enum/Manifest dev-cpp/magic_enum/magic_enum-0.8.2.ebuild dev-cpp/magic_enum/metadata.xml X-VCS-Directories: dev-cpp/magic_enum/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f76d6ead4ed5c973823443edbd1e7f3ec32dd94d X-VCS-Branch: master Date: Sun, 8 Jan 2023 04:55:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1cfc935d-bb90-4192-ac23-d201bc626510 X-Archives-Hash: 04f09c654bae899e95c996fde22702dc commit: f76d6ead4ed5c973823443edbd1e7f3ec32dd94d Author: Sam James gentoo org> AuthorDate: Sun Jan 8 04:21:36 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 8 04:55:07 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f76d6ead dev-cpp/magic_enum: new package, add 0.8.2 Needed for games-strategy/ja2-stracciatella in future, possibly. I packaged this given I thought it was required but ended up finding it was toggled on unnecessarily. It's cheap to build and it's likely it'll be needed in future, so.. Signed-off-by: Sam James gentoo.org> dev-cpp/magic_enum/Manifest | 1 + dev-cpp/magic_enum/magic_enum-0.8.2.ebuild | 28 ++++++++++++++++++++++++++++ dev-cpp/magic_enum/metadata.xml | 11 +++++++++++ 3 files changed, 40 insertions(+) diff --git a/dev-cpp/magic_enum/Manifest b/dev-cpp/magic_enum/Manifest new file mode 100644 index 000000000000..f363ac357209 --- /dev/null +++ b/dev-cpp/magic_enum/Manifest @@ -0,0 +1 @@ +DIST magic_enum-0.8.2.tar.gz 171915 BLAKE2B e8915aa7cafa9407d5d4ab3b6837fafde6b1cb75877c8b56f82568e6291ca317720950947b2dfc7e12ca459279ba4e809a8c5782fc04adc2d7636eddcb80122d SHA512 849c426484156faf91dde3f32f6c755c7698879b16dd83e13fb86b299b53ec9bbe4d55267581386302c8acb93d80ec044cc248371fdc8608cdd8f4ab12099f0a diff --git a/dev-cpp/magic_enum/magic_enum-0.8.2.ebuild b/dev-cpp/magic_enum/magic_enum-0.8.2.ebuild new file mode 100644 index 000000000000..df1937ee496b --- /dev/null +++ b/dev-cpp/magic_enum/magic_enum-0.8.2.ebuild @@ -0,0 +1,28 @@ +# 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" +IUSE="test" +# Tests fail to compile +RESTRICT="!test? ( test ) test" + +src_configure() { + local mycmakeargs=( + -DMAGIC_ENUM_OPT_BUILD_TESTS=$(usex test) + -DMAGIC_ENUM_OPT_INSTALL=ON + ) + + cmake_src_configure +} diff --git a/dev-cpp/magic_enum/metadata.xml b/dev-cpp/magic_enum/metadata.xml new file mode 100644 index 000000000000..9c4b1d48036d --- /dev/null +++ b/dev-cpp/magic_enum/metadata.xml @@ -0,0 +1,11 @@ + + + + + games@gentoo.org + Gentoo Games Project + + + Neargye/magic_enum + +