* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tomlplusplus/
@ 2023-12-13 12:27 Yixun Lan
0 siblings, 0 replies; 8+ messages in thread
From: Yixun Lan @ 2023-12-13 12:27 UTC (permalink / raw
To: gentoo-commits
commit: 27c0d0dee8146e9fd61de5e8ed6096fd226674a0
Author: Blake LaFleur <blackburn2929 <AT> gmail <DOT> com>
AuthorDate: Fri Dec 8 19:11:46 2023 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Dec 13 12:17:57 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27c0d0de
dev-cpp/tomlplusplus: new package
Signed-off-by: Blake LaFleur <blackburn2929 <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
dev-cpp/tomlplusplus/Manifest | 1 +
dev-cpp/tomlplusplus/metadata.xml | 8 ++++++
dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild | 39 ++++++++++++++++++++++++++
3 files changed, 48 insertions(+)
diff --git a/dev-cpp/tomlplusplus/Manifest b/dev-cpp/tomlplusplus/Manifest
new file mode 100644
index 000000000000..8fdc90bd67a4
--- /dev/null
+++ b/dev-cpp/tomlplusplus/Manifest
@@ -0,0 +1 @@
+DIST tomlplusplus-3.4.0.gh.tar.gz 1294731 BLAKE2B 9495ccd78707ced11744eab7c1c0bf0c0c28e283d186195bb48d1059bae7eb1a874bc964b0fc45210fd73ffd7485ecf3e1159da227d0e1c8ff249e79c08eecf0 SHA512 c227fc8147c9459b29ad24002aaf6ab2c42fac22ea04c1c52b283a0172581ccd4527b33c1931e0ef0d1db6b6a53f9e9882c6d4231c7f3494cf070d0220741aa5
diff --git a/dev-cpp/tomlplusplus/metadata.xml b/dev-cpp/tomlplusplus/metadata.xml
new file mode 100644
index 000000000000..0dfeb9e00e18
--- /dev/null
+++ b/dev-cpp/tomlplusplus/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <!-- maintainer-needed -->
+ <upstream>
+ <remote-id type="github">marzer/tomlplusplus</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild b/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
new file mode 100644
index 000000000000..c239fca55478
--- /dev/null
+++ b/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="TOML config file parser and serializer"
+HOMEPAGE="
+https://marzer.github.io/tomlplusplus/
+https://github.com/marzer/tomlplusplus
+"
+SRC_URI="https://github.com/marzer/tomlplusplus/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+src_configure() {
+ local emesonargs=(
+ -Dbuild_lib=true
+ -Dgenerate_cmake_config=true
+ -Duse_vendored_libs=true # for test dependencies, header only and very restrictive version requirements
+ $(meson_use test build_tests)
+ )
+
+ meson_src_configure
+}
+
+src_test() {
+ local emesontestargs=(
+ 'tests - C'
+ )
+
+ meson_src_test "${emesontestargs[@]}"
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tomlplusplus/
@ 2023-12-13 12:27 Yixun Lan
0 siblings, 0 replies; 8+ messages in thread
From: Yixun Lan @ 2023-12-13 12:27 UTC (permalink / raw
To: gentoo-commits
commit: 4a3a730073c0e56813ece5c97ff173bfd04fba86
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 11 14:05:05 2023 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Dec 13 12:18:24 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a3a7300
dev-cpp/tomlplusplus: add MrRoy as maintainer
since this is direct dep of gui-wm/hyprland, so add MyRoy as maintainer
see discussion at github's PR 34165.
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
dev-cpp/tomlplusplus/metadata.xml | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/dev-cpp/tomlplusplus/metadata.xml b/dev-cpp/tomlplusplus/metadata.xml
index 0dfeb9e00e18..c82b882b557e 100644
--- a/dev-cpp/tomlplusplus/metadata.xml
+++ b/dev-cpp/tomlplusplus/metadata.xml
@@ -1,7 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
+ <maintainer type="person" proxied="yes">
+ <email>julien@jroy.ca</email>
+ <name>Julien Roy</name>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
<upstream>
<remote-id type="github">marzer/tomlplusplus</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tomlplusplus/
@ 2023-12-13 13:01 Yixun Lan
0 siblings, 0 replies; 8+ messages in thread
From: Yixun Lan @ 2023-12-13 13:01 UTC (permalink / raw
To: gentoo-commits
commit: 1d80e659738079b2069f17d28131033038d19daf
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 13 12:58:41 2023 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Dec 13 13:00:32 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d80e659
dev-cpp/tomlplusplus: fix inconsistent indentation
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
dev-cpp/tomlplusplus/metadata.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-cpp/tomlplusplus/metadata.xml b/dev-cpp/tomlplusplus/metadata.xml
index c82b882b557e..e1c27afbcec2 100644
--- a/dev-cpp/tomlplusplus/metadata.xml
+++ b/dev-cpp/tomlplusplus/metadata.xml
@@ -9,7 +9,7 @@
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
- <upstream>
- <remote-id type="github">marzer/tomlplusplus</remote-id>
- </upstream>
+ <upstream>
+ <remote-id type="github">marzer/tomlplusplus</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tomlplusplus/
@ 2024-01-05 19:42 Jakov Smolić
0 siblings, 0 replies; 8+ messages in thread
From: Jakov Smolić @ 2024-01-05 19:42 UTC (permalink / raw
To: gentoo-commits
commit: 89e35b7c61126fc29d62977d26a6a4de680e309c
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 5 19:42:25 2024 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Jan 5 19:42:25 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89e35b7c
dev-cpp/tomlplusplus: Keyword 3.4.0 riscv, #921389
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild b/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
index c239fca55478..a8811238d6c3 100644
--- a/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
+++ b/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/marzer/tomlplusplus/archive/refs/tags/v${PV}.tar.gz
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tomlplusplus/
@ 2024-02-18 0:15 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-02-18 0:15 UTC (permalink / raw
To: gentoo-commits
commit: d78819e78fef71c3a225934480ad8e2125a3bc2b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 00:14:36 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 00:14:36 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d78819e7
dev-cpp/tomlplusplus: Stabilize 3.4.0 amd64, #924815
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild b/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
index a8811238d6c3..c588c3a39fd9 100644
--- a/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
+++ b/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/marzer/tomlplusplus/archive/refs/tags/v${PV}.tar.gz
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~riscv"
+KEYWORDS="amd64 ~riscv"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tomlplusplus/
@ 2024-04-16 16:31 Arthur Zamarin
0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2024-04-16 16:31 UTC (permalink / raw
To: gentoo-commits
commit: 38f03b55b8386ec3bb8a74a68da9c05cf4cf76be
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 16 16:31:15 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 16 16:31:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38f03b55
dev-cpp/tomlplusplus: Keyword 3.4.0 arm64, #930110
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild b/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
index c588c3a39fd9..9c8941ea61d9 100644
--- a/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
+++ b/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/marzer/tomlplusplus/archive/refs/tags/v${PV}.tar.gz
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 ~riscv"
+KEYWORDS="amd64 ~arm64 ~riscv"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tomlplusplus/
@ 2024-08-21 6:01 Joonas Niilola
0 siblings, 0 replies; 8+ messages in thread
From: Joonas Niilola @ 2024-08-21 6:01 UTC (permalink / raw
To: gentoo-commits
commit: dbaddd1fc02feca08e7cf71d14b04cb3f3676ebf
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 21 06:00:08 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Aug 21 06:00:08 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbaddd1f
dev-cpp/tomlplusplus: Keyword 3.4.0 x86, #938256
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild b/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
index 9c8941ea61d9..416afb47e190 100644
--- a/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
+++ b/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/marzer/tomlplusplus/archive/refs/tags/v${PV}.tar.gz
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv"
+KEYWORDS="amd64 ~arm64 ~riscv ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tomlplusplus/
@ 2024-08-21 6:01 Joonas Niilola
0 siblings, 0 replies; 8+ messages in thread
From: Joonas Niilola @ 2024-08-21 6:01 UTC (permalink / raw
To: gentoo-commits
commit: d069c61de85e1bbf88890251477d864e2d7c6015
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 21 06:00:55 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Aug 21 06:00:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d069c61d
dev-cpp/tomlplusplus: add missing cmake BDEPEND
- the ebuild has "-Dgenerate_cmake_config=true" and requires cmake to build.
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild b/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
index 416afb47e190..4ac6f2dfc7a2 100644
--- a/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
+++ b/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
@@ -19,6 +19,8 @@ KEYWORDS="amd64 ~arm64 ~riscv ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
+BDEPEND="dev-build/cmake"
+
src_configure() {
local emesonargs=(
-Dbuild_lib=true
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-08-21 6:01 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-05 19:42 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tomlplusplus/ Jakov Smolić
-- strict thread matches above, loose matches on Subject: below --
2024-08-21 6:01 Joonas Niilola
2024-08-21 6:01 Joonas Niilola
2024-04-16 16:31 Arthur Zamarin
2024-02-18 0:15 Sam James
2023-12-13 13:01 Yixun Lan
2023-12-13 12:27 Yixun Lan
2023-12-13 12:27 Yixun Lan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox