public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/fast_float/
@ 2024-10-17 14:03 Joonas Niilola
  0 siblings, 0 replies; 7+ messages in thread
From: Joonas Niilola @ 2024-10-17 14:03 UTC (permalink / raw
  To: gentoo-commits

commit:     296c960b8a1d769f7cbb8a9c8daf192e79ef55b4
Author:     Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Mon Oct 14 13:29:34 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Oct 17 14:03:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=296c960b

dev-cpp/fast_float: new package, add 6.1.6

Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-cpp/fast_float/Manifest                |  1 +
 dev-cpp/fast_float/fast_float-6.1.6.ebuild | 34 ++++++++++++++++++++++++++++++
 dev-cpp/fast_float/metadata.xml            | 15 +++++++++++++
 3 files changed, 50 insertions(+)

diff --git a/dev-cpp/fast_float/Manifest b/dev-cpp/fast_float/Manifest
new file mode 100644
index 000000000000..b4b2a441fd7f
--- /dev/null
+++ b/dev-cpp/fast_float/Manifest
@@ -0,0 +1 @@
+DIST fast_float-6.1.6.tar.gz 101727 BLAKE2B eb9833f7bff6e6086db1525fcc71231c5cc8f47985aa4c71078d896afb5fea20c41bfdb55de6c1e8c9cfa6c9b842331f340115590683e1d9e6a3ba40f4148870 SHA512 d2dbd2537f433329a76539c061238af080125526b7822fbfdf0f70ac0a6800114848b9be0fdf9c51dbb22211af3bdcf9829ed9cc4a47fd28ecdeecf7c5d4b663

diff --git a/dev-cpp/fast_float/fast_float-6.1.6.ebuild b/dev-cpp/fast_float/fast_float-6.1.6.ebuild
new file mode 100644
index 000000000000..afa18fe2c69b
--- /dev/null
+++ b/dev-cpp/fast_float/fast_float-6.1.6.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Fast and exact implementation of the C++ from_chars functions for number types"
+HOMEPAGE="https://github.com/fastfloat/fast_float"
+SRC_URI="https://github.com/fastfloat/fast_float/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="|| ( Apache-2.0 Boost-1.0 MIT )"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+BDEPEND="test? ( dev-cpp/doctest )"
+
+RESTRICT="!test? ( test )"
+
+src_configure() {
+	local mycmakeargs=( -DFASTFLOAT_TEST=$(usex test) )
+	# Avoid passing these without USE=test to avoid cmake warning
+	# "Manually-specified variables were not used by the project"
+	use test && mycmakeargs+=(
+		-DSYSTEM_DOCTEST=ON
+		# Unconditionally calls FetchContent
+		-DFASTFLOAT_SUPPLEMENTAL_TESTS=OFF
+	)
+
+	sed -i 's/-Werror//' tests/CMakeLists.txt || die
+
+	cmake_src_configure
+}

diff --git a/dev-cpp/fast_float/metadata.xml b/dev-cpp/fast_float/metadata.xml
new file mode 100644
index 000000000000..ec84f74b1736
--- /dev/null
+++ b/dev-cpp/fast_float/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person" proxied="yes">
+		<email>stffn.mobil@freenet.de</email>
+		<name>Steffen Winter</name>
+	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">fastfloat/fast_float</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/fast_float/
@ 2024-10-17 23:36 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2024-10-17 23:36 UTC (permalink / raw
  To: gentoo-commits

commit:     86e18af558aeaee18c86959771dedbc640f5472f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 17 23:35:56 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 17 23:35:56 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86e18af5

dev-cpp/fast_float: Keyword 6.1.6 ppc64, #941725

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/fast_float/fast_float-6.1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/fast_float/fast_float-6.1.6.ebuild b/dev-cpp/fast_float/fast_float-6.1.6.ebuild
index afa18fe2c69b..3b8152d06e53 100644
--- a/dev-cpp/fast_float/fast_float-6.1.6.ebuild
+++ b/dev-cpp/fast_float/fast_float-6.1.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/fastfloat/fast_float/archive/refs/tags/v${PV}.tar.gz
 
 LICENSE="|| ( Apache-2.0 Boost-1.0 MIT )"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~ppc64"
 IUSE="test"
 
 BDEPEND="test? ( dev-cpp/doctest )"


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/fast_float/
@ 2024-10-19 14:07 Jakov Smolić
  0 siblings, 0 replies; 7+ messages in thread
From: Jakov Smolić @ 2024-10-19 14:07 UTC (permalink / raw
  To: gentoo-commits

commit:     78dd7a477861f73480e8f6fc30ce7c1e3fc7018a
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 19 14:07:48 2024 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Oct 19 14:07:48 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78dd7a47

dev-cpp/fast_float: Keyword 6.1.6 riscv, #941725

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-cpp/fast_float/fast_float-6.1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/fast_float/fast_float-6.1.6.ebuild b/dev-cpp/fast_float/fast_float-6.1.6.ebuild
index 3b8152d06e53..a1bdf99579a0 100644
--- a/dev-cpp/fast_float/fast_float-6.1.6.ebuild
+++ b/dev-cpp/fast_float/fast_float-6.1.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/fastfloat/fast_float/archive/refs/tags/v${PV}.tar.gz
 
 LICENSE="|| ( Apache-2.0 Boost-1.0 MIT )"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64"
+KEYWORDS="~amd64 ~ppc64 ~riscv"
 IUSE="test"
 
 BDEPEND="test? ( dev-cpp/doctest )"


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/fast_float/
@ 2024-10-23 19:50 Arthur Zamarin
  0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2024-10-23 19:50 UTC (permalink / raw
  To: gentoo-commits

commit:     258358158cf9d0f9b99f772c0d340725c0e1e890
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 23 19:50:46 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 23 19:50:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25835815

dev-cpp/fast_float: Keyword 6.1.6 x86, #941725

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-cpp/fast_float/fast_float-6.1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/fast_float/fast_float-6.1.6.ebuild b/dev-cpp/fast_float/fast_float-6.1.6.ebuild
index a1bdf99579a0..275cb2b493bf 100644
--- a/dev-cpp/fast_float/fast_float-6.1.6.ebuild
+++ b/dev-cpp/fast_float/fast_float-6.1.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/fastfloat/fast_float/archive/refs/tags/v${PV}.tar.gz
 
 LICENSE="|| ( Apache-2.0 Boost-1.0 MIT )"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~riscv"
+KEYWORDS="~amd64 ~ppc64 ~riscv ~x86"
 IUSE="test"
 
 BDEPEND="test? ( dev-cpp/doctest )"


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/fast_float/
@ 2024-11-23 20:16 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2024-11-23 20:16 UTC (permalink / raw
  To: gentoo-commits

commit:     faa7d266b764be30a827adfa2b9b6462ebf47b11
Author:     sin-ack <sin-ack <AT> protonmail <DOT> com>
AuthorDate: Tue Nov 12 11:26:46 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 23 20:15:34 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faa7d266

dev-cpp/fast_float: keyword 6.1.6 for ~arm64

Signed-off-by: sin-ack <sin-ack <AT> protonmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/fast_float/fast_float-6.1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/fast_float/fast_float-6.1.6.ebuild b/dev-cpp/fast_float/fast_float-6.1.6.ebuild
index 275cb2b493bf..974c160275da 100644
--- a/dev-cpp/fast_float/fast_float-6.1.6.ebuild
+++ b/dev-cpp/fast_float/fast_float-6.1.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/fastfloat/fast_float/archive/refs/tags/v${PV}.tar.gz
 
 LICENSE="|| ( Apache-2.0 Boost-1.0 MIT )"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
 IUSE="test"
 
 BDEPEND="test? ( dev-cpp/doctest )"


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/fast_float/
@ 2024-12-01 11:45 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2024-12-01 11:45 UTC (permalink / raw
  To: gentoo-commits

commit:     7d5830ca72b0fa331c9772968a603869647c674a
Author:     Steffen Winter <steffen.winter <AT> proton <DOT> me>
AuthorDate: Sun Nov 24 20:12:23 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec  1 11:44:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d5830ca

dev-cpp/fast_float: add 7.0.0

Signed-off-by: Steffen Winter <steffen.winter <AT> proton.me>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/fast_float/Manifest                |  1 +
 dev-cpp/fast_float/fast_float-7.0.0.ebuild | 34 ++++++++++++++++++++++++++++++
 2 files changed, 35 insertions(+)

diff --git a/dev-cpp/fast_float/Manifest b/dev-cpp/fast_float/Manifest
index b4b2a441fd7f..b69b2ab65e2d 100644
--- a/dev-cpp/fast_float/Manifest
+++ b/dev-cpp/fast_float/Manifest
@@ -1 +1,2 @@
 DIST fast_float-6.1.6.tar.gz 101727 BLAKE2B eb9833f7bff6e6086db1525fcc71231c5cc8f47985aa4c71078d896afb5fea20c41bfdb55de6c1e8c9cfa6c9b842331f340115590683e1d9e6a3ba40f4148870 SHA512 d2dbd2537f433329a76539c061238af080125526b7822fbfdf0f70ac0a6800114848b9be0fdf9c51dbb22211af3bdcf9829ed9cc4a47fd28ecdeecf7c5d4b663
+DIST fast_float-7.0.0.tar.gz 103358 BLAKE2B 7334a74952aba9629e0cd0f3b49679ed8f9c84436d3e9b10438d09416341343efc34acc0f87283a20fff5866d1e5787f456ac8a37f0a918823369419378ddb53 SHA512 d6745c0f7d3b7fd31d710ca1a5b8a58506d0009dbf2e1a29c70483abcec2c2498a15a5efef203f39b43a9357a04c91e360080b7897fffdf68bf4ec561c40c77d

diff --git a/dev-cpp/fast_float/fast_float-7.0.0.ebuild b/dev-cpp/fast_float/fast_float-7.0.0.ebuild
new file mode 100644
index 000000000000..974c160275da
--- /dev/null
+++ b/dev-cpp/fast_float/fast_float-7.0.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Fast and exact implementation of the C++ from_chars functions for number types"
+HOMEPAGE="https://github.com/fastfloat/fast_float"
+SRC_URI="https://github.com/fastfloat/fast_float/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="|| ( Apache-2.0 Boost-1.0 MIT )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="test"
+
+BDEPEND="test? ( dev-cpp/doctest )"
+
+RESTRICT="!test? ( test )"
+
+src_configure() {
+	local mycmakeargs=( -DFASTFLOAT_TEST=$(usex test) )
+	# Avoid passing these without USE=test to avoid cmake warning
+	# "Manually-specified variables were not used by the project"
+	use test && mycmakeargs+=(
+		-DSYSTEM_DOCTEST=ON
+		# Unconditionally calls FetchContent
+		-DFASTFLOAT_SUPPLEMENTAL_TESTS=OFF
+	)
+
+	sed -i 's/-Werror//' tests/CMakeLists.txt || die
+
+	cmake_src_configure
+}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/fast_float/
@ 2024-12-01 11:45 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2024-12-01 11:45 UTC (permalink / raw
  To: gentoo-commits

commit:     d26f63df92b012aa183c904aca87507cf6e007a7
Author:     Steffen Winter <steffen.winter <AT> proton <DOT> me>
AuthorDate: Sun Nov 24 20:12:41 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec  1 11:44:37 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d26f63df

dev-cpp/fast_float: drop 6.1.6

Signed-off-by: Steffen Winter <steffen.winter <AT> proton.me>
Closes: https://github.com/gentoo/gentoo/pull/39458
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/fast_float/Manifest                |  1 -
 dev-cpp/fast_float/fast_float-6.1.6.ebuild | 34 ------------------------------
 2 files changed, 35 deletions(-)

diff --git a/dev-cpp/fast_float/Manifest b/dev-cpp/fast_float/Manifest
index b69b2ab65e2d..50e9eccd37a6 100644
--- a/dev-cpp/fast_float/Manifest
+++ b/dev-cpp/fast_float/Manifest
@@ -1,2 +1 @@
-DIST fast_float-6.1.6.tar.gz 101727 BLAKE2B eb9833f7bff6e6086db1525fcc71231c5cc8f47985aa4c71078d896afb5fea20c41bfdb55de6c1e8c9cfa6c9b842331f340115590683e1d9e6a3ba40f4148870 SHA512 d2dbd2537f433329a76539c061238af080125526b7822fbfdf0f70ac0a6800114848b9be0fdf9c51dbb22211af3bdcf9829ed9cc4a47fd28ecdeecf7c5d4b663
 DIST fast_float-7.0.0.tar.gz 103358 BLAKE2B 7334a74952aba9629e0cd0f3b49679ed8f9c84436d3e9b10438d09416341343efc34acc0f87283a20fff5866d1e5787f456ac8a37f0a918823369419378ddb53 SHA512 d6745c0f7d3b7fd31d710ca1a5b8a58506d0009dbf2e1a29c70483abcec2c2498a15a5efef203f39b43a9357a04c91e360080b7897fffdf68bf4ec561c40c77d

diff --git a/dev-cpp/fast_float/fast_float-6.1.6.ebuild b/dev-cpp/fast_float/fast_float-6.1.6.ebuild
deleted file mode 100644
index 974c160275da..000000000000
--- a/dev-cpp/fast_float/fast_float-6.1.6.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Fast and exact implementation of the C++ from_chars functions for number types"
-HOMEPAGE="https://github.com/fastfloat/fast_float"
-SRC_URI="https://github.com/fastfloat/fast_float/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="|| ( Apache-2.0 Boost-1.0 MIT )"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-IUSE="test"
-
-BDEPEND="test? ( dev-cpp/doctest )"
-
-RESTRICT="!test? ( test )"
-
-src_configure() {
-	local mycmakeargs=( -DFASTFLOAT_TEST=$(usex test) )
-	# Avoid passing these without USE=test to avoid cmake warning
-	# "Manually-specified variables were not used by the project"
-	use test && mycmakeargs+=(
-		-DSYSTEM_DOCTEST=ON
-		# Unconditionally calls FetchContent
-		-DFASTFLOAT_SUPPLEMENTAL_TESTS=OFF
-	)
-
-	sed -i 's/-Werror//' tests/CMakeLists.txt || die
-
-	cmake_src_configure
-}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-12-01 11:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-01 11:45 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/fast_float/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-12-01 11:45 Sam James
2024-11-23 20:16 Sam James
2024-10-23 19:50 Arthur Zamarin
2024-10-19 14:07 Jakov Smolić
2024-10-17 23:36 Sam James
2024-10-17 14:03 Joonas Niilola

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox