public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/string-theory/
@ 2021-01-22  1:41 Sam James
  0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-01-22  1:41 UTC (permalink / raw
  To: gentoo-commits

commit:     5523782544c0e44035bc4fc68120190d176956df
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 22 01:34:08 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 22 01:41:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55237825

dev-cpp/string-theory: add github remote-id

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/string-theory/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-cpp/string-theory/metadata.xml b/dev-cpp/string-theory/metadata.xml
index 2a6c92d969d..4f7470fb770 100644
--- a/dev-cpp/string-theory/metadata.xml
+++ b/dev-cpp/string-theory/metadata.xml
@@ -9,4 +9,7 @@
     <email>proxy-maint@gentoo.org</email>
     <name>Proxy Maintainers</name>
   </maintainer>
+  <upstream>
+    <remote-id type="github">zrax/string_theory</remote-id>
+  </upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/string-theory/
@ 2021-01-22  1:41 Sam James
  0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-01-22  1:41 UTC (permalink / raw
  To: gentoo-commits

commit:     707c081dc1c2346b7b87f8073d000b531590b84d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 22 00:44:25 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 22 01:39:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=707c081d

dev-cpp/string-theory: run tests

We now conditionally build tests too.

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/string-theory/string-theory-3.3.ebuild | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/dev-cpp/string-theory/string-theory-3.3.ebuild b/dev-cpp/string-theory/string-theory-3.3.ebuild
index a8bb093a351..82fb3efef9d 100644
--- a/dev-cpp/string-theory/string-theory-3.3.ebuild
+++ b/dev-cpp/string-theory/string-theory-3.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,3 +13,18 @@ S="${WORKDIR}/string_theory-${PV}"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+src_configure() {
+	local mycmakeargs=(
+		-DST_BUILD_TESTS=$(usex test)
+	)
+
+	cmake_src_configure
+}
+
+src_test() {
+	cd "${BUILD_DIR}/test" || die
+	./st_gtests || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/string-theory/
@ 2021-01-22  2:12 Sam James
  0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-01-22  2:12 UTC (permalink / raw
  To: gentoo-commits

commit:     03c51da60150f3aca74b51c40cef93a4ad88d99a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 22 02:12:04 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 22 02:12:04 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03c51da6

dev-cpp/string-theory: don't build tests with -Werror

Closes: https://bugs.gentoo.org/766468
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/string-theory/string-theory-3.3.ebuild | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/dev-cpp/string-theory/string-theory-3.3.ebuild b/dev-cpp/string-theory/string-theory-3.3.ebuild
index 82fb3efef9d..5706dd0292e 100644
--- a/dev-cpp/string-theory/string-theory-3.3.ebuild
+++ b/dev-cpp/string-theory/string-theory-3.3.ebuild
@@ -16,6 +16,14 @@ KEYWORDS="~amd64"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
+src_prepare() {
+	# Drop -Werror from bundled gtest
+	# bug #766468
+	sed -i -e "s/-Werror//" test/gtest-1.10.0/cmake/internal_utils.cmake || die
+
+	cmake_src_prepare
+}
+
 src_configure() {
 	local mycmakeargs=(
 		-DST_BUILD_TESTS=$(usex test)


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/string-theory/
@ 2021-02-03  7:25 Joonas Niilola
  0 siblings, 0 replies; 11+ messages in thread
From: Joonas Niilola @ 2021-02-03  7:25 UTC (permalink / raw
  To: gentoo-commits

commit:     174c34b1f2dbb424aeb2924b6c879ed78fc230b9
Author:     Richard Fröhning <misanthropos <AT> gmx <DOT> net>
AuthorDate: Tue Jan 26 14:18:59 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Feb  3 07:21:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=174c34b1

dev-cpp/string-theory: version bump to 3.4

Signed-off-by: Richard Fröhning <misanthropos <AT> gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/19228
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-cpp/string-theory/Manifest                 |  1 +
 dev-cpp/string-theory/string-theory-3.4.ebuild | 38 ++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/dev-cpp/string-theory/Manifest b/dev-cpp/string-theory/Manifest
index 1f878e7484f..4d9fac23ce4 100644
--- a/dev-cpp/string-theory/Manifest
+++ b/dev-cpp/string-theory/Manifest
@@ -1 +1,2 @@
 DIST string-theory-3.3.tar.gz 588360 BLAKE2B ad87857e6d5e3cad1346b759457b434de7612b97e1b19016b1dfc987ac67f0cab318745b14fe1f432cc921ffb1d33b875a2a62f0bc56d815dd35b405a9f08560 SHA512 86209333dce341078c3b973084bd9f3b8ff2ccac0e07a5e6acf5973bd1cfa420897b531b2d1bd6aba9f5ccc8927f85d91f06796ac0e62ec8a735564a0387d2f4
+DIST string-theory-3.4.tar.gz 588522 BLAKE2B 207c490293401829d28590291166bcbeefde4ecb3b70d1cc2751d7582c53cf234b7e01579d3bfbe55681708e4d3e22cedbd6fe96b2fdad1c3ef158bb7a080593 SHA512 36ad82c6da276b7cb66d350ceb4bed2a66f768a6604b2981331ceec6a96d03cc3a7e7e5f733de88ec15e0ea41f99f8657b959a51149c540f530d06268c5657ff

diff --git a/dev-cpp/string-theory/string-theory-3.4.ebuild b/dev-cpp/string-theory/string-theory-3.4.ebuild
new file mode 100644
index 00000000000..5706dd0292e
--- /dev/null
+++ b/dev-cpp/string-theory/string-theory-3.4.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A flexible modern C++ library for string manipulation and storage"
+HOMEPAGE="https://github.com/zrax/string_theory/"
+SRC_URI="https://github.com/zrax/string_theory/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/string_theory-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+src_prepare() {
+	# Drop -Werror from bundled gtest
+	# bug #766468
+	sed -i -e "s/-Werror//" test/gtest-1.10.0/cmake/internal_utils.cmake || die
+
+	cmake_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DST_BUILD_TESTS=$(usex test)
+	)
+
+	cmake_src_configure
+}
+
+src_test() {
+	cd "${BUILD_DIR}/test" || die
+	./st_gtests || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/string-theory/
@ 2021-02-10 14:49 Sam James
  0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-02-10 14:49 UTC (permalink / raw
  To: gentoo-commits

commit:     7c29ce7f4cde0f5c644694a038db55ca3f868663
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 14:48:56 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 14:48:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c29ce7f

dev-cpp/string-theory: Keyword 3.4 x86, #766465

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

 dev-cpp/string-theory/string-theory-3.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/string-theory/string-theory-3.4.ebuild b/dev-cpp/string-theory/string-theory-3.4.ebuild
index 5706dd0292e..f894600367c 100644
--- a/dev-cpp/string-theory/string-theory-3.4.ebuild
+++ b/dev-cpp/string-theory/string-theory-3.4.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/string_theory-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/string-theory/
@ 2021-02-24 21:20 Sam James
  0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-02-24 21:20 UTC (permalink / raw
  To: gentoo-commits

commit:     250bc5816519aac170ea288be4100ff220840410
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 24 21:19:52 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 24 21:19:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=250bc581

dev-cpp/string-theory: Keyword 3.4 arm64, #766465

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

 dev-cpp/string-theory/string-theory-3.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/string-theory/string-theory-3.4.ebuild b/dev-cpp/string-theory/string-theory-3.4.ebuild
index f894600367c..f6c5c3db6f6 100644
--- a/dev-cpp/string-theory/string-theory-3.4.ebuild
+++ b/dev-cpp/string-theory/string-theory-3.4.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/string_theory-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/string-theory/
@ 2022-02-06 19:47 Ionen Wolkens
  0 siblings, 0 replies; 11+ messages in thread
From: Ionen Wolkens @ 2022-02-06 19:47 UTC (permalink / raw
  To: gentoo-commits

commit:     9714ec8a1fa3cf8e25a5fa535a5179e4a9a040df
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  6 18:47:30 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun Feb  6 19:33:46 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9714ec8a

dev-cpp/string-theory: EAPI7->8

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 dev-cpp/string-theory/string-theory-3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/string-theory/string-theory-3.5.ebuild b/dev-cpp/string-theory/string-theory-3.5.ebuild
index 0e9b684ef7c7..0ad4291f9488 100644
--- a/dev-cpp/string-theory/string-theory-3.5.ebuild
+++ b/dev-cpp/string-theory/string-theory-3.5.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit cmake
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/string-theory/
@ 2022-02-06 19:47 Ionen Wolkens
  0 siblings, 0 replies; 11+ messages in thread
From: Ionen Wolkens @ 2022-02-06 19:47 UTC (permalink / raw
  To: gentoo-commits

commit:     896f48bd1e387673126549442ed3ff50fbb83e60
Author:     Richard Fröhning <misanthropos <AT> gmx <DOT> net>
AuthorDate: Sun Jan 30 21:41:12 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun Feb  6 19:33:46 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=896f48bd

dev-cpp/string-theory: version bump to 3.5

compiles and works with ja2-straciatella-0.17.0

ionen's note: ran into #800245 with 3.4 but 3.5 fixed it

Signed-off-by: Richard Fröhning <misanthropos <AT> gmx.net>
Closes: https://bugs.gentoo.org/800245
Closes: https://github.com/gentoo/gentoo/pull/24025
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 dev-cpp/string-theory/Manifest                 |  1 +
 dev-cpp/string-theory/string-theory-3.5.ebuild | 38 ++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/dev-cpp/string-theory/Manifest b/dev-cpp/string-theory/Manifest
index 4d9fac23ce48..7b0df9584b2d 100644
--- a/dev-cpp/string-theory/Manifest
+++ b/dev-cpp/string-theory/Manifest
@@ -1,2 +1,3 @@
 DIST string-theory-3.3.tar.gz 588360 BLAKE2B ad87857e6d5e3cad1346b759457b434de7612b97e1b19016b1dfc987ac67f0cab318745b14fe1f432cc921ffb1d33b875a2a62f0bc56d815dd35b405a9f08560 SHA512 86209333dce341078c3b973084bd9f3b8ff2ccac0e07a5e6acf5973bd1cfa420897b531b2d1bd6aba9f5ccc8927f85d91f06796ac0e62ec8a735564a0387d2f4
 DIST string-theory-3.4.tar.gz 588522 BLAKE2B 207c490293401829d28590291166bcbeefde4ecb3b70d1cc2751d7582c53cf234b7e01579d3bfbe55681708e4d3e22cedbd6fe96b2fdad1c3ef158bb7a080593 SHA512 36ad82c6da276b7cb66d350ceb4bed2a66f768a6604b2981331ceec6a96d03cc3a7e7e5f733de88ec15e0ea41f99f8657b959a51149c540f530d06268c5657ff
+DIST string-theory-3.5.tar.gz 589905 BLAKE2B c2bc926b8568efc1fbe27861619bd8249ad788297dd537cff393d212b3bb12a529847b740fc8ba82dc28501fb05800eb8debf3e4832cf145b5c13882ac45e900 SHA512 30300155e64ace8197ed531baffe4e835c269ac10d6857ac9f29501e0a1f69965994d6f2fa2e64544e7d441de635e2d370be24efcf00a0d24066730d19f022a6

diff --git a/dev-cpp/string-theory/string-theory-3.5.ebuild b/dev-cpp/string-theory/string-theory-3.5.ebuild
new file mode 100644
index 000000000000..0e9b684ef7c7
--- /dev/null
+++ b/dev-cpp/string-theory/string-theory-3.5.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A flexible modern C++ library for string manipulation and storage"
+HOMEPAGE="https://github.com/zrax/string_theory/"
+SRC_URI="https://github.com/zrax/string_theory/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/string_theory-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+src_prepare() {
+	# Drop -Werror from bundled gtest
+	# bug #766468
+	sed -i -e "s/-Werror//" test/gtest-1.10.0/cmake/internal_utils.cmake || die
+
+	cmake_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DST_BUILD_TESTS=$(usex test)
+	)
+
+	cmake_src_configure
+}
+
+src_test() {
+	cd "${BUILD_DIR}/test" || die
+	./st_gtests || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/string-theory/
@ 2022-11-22 13:46 Arthur Zamarin
  0 siblings, 0 replies; 11+ messages in thread
From: Arthur Zamarin @ 2022-11-22 13:46 UTC (permalink / raw
  To: gentoo-commits

commit:     4d86262434860f03a92f77bc918fc360d63e7fd8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 13:46:48 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 13:46:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d862624

dev-cpp/string-theory: Keyword 3.5 ppc64, #850484

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

 dev-cpp/string-theory/string-theory-3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/string-theory/string-theory-3.5.ebuild b/dev-cpp/string-theory/string-theory-3.5.ebuild
index 0ad4291f9488..1e683f2fff92 100644
--- a/dev-cpp/string-theory/string-theory-3.5.ebuild
+++ b/dev-cpp/string-theory/string-theory-3.5.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/string_theory-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/string-theory/
@ 2022-12-21  9:07 Andreas Sturmlechner
  0 siblings, 0 replies; 11+ messages in thread
From: Andreas Sturmlechner @ 2022-12-21  9:07 UTC (permalink / raw
  To: gentoo-commits

commit:     482dfcc34296ec4adca215a96531aa20040fe3ad
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 20 19:39:33 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Dec 21 09:06:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=482dfcc3

dev-cpp/string-theory: drop 3.3, 3.4

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-cpp/string-theory/Manifest                 |  2 --
 dev-cpp/string-theory/string-theory-3.3.ebuild | 38 --------------------------
 dev-cpp/string-theory/string-theory-3.4.ebuild | 38 --------------------------
 3 files changed, 78 deletions(-)

diff --git a/dev-cpp/string-theory/Manifest b/dev-cpp/string-theory/Manifest
index 7b0df9584b2d..c71a11b8be85 100644
--- a/dev-cpp/string-theory/Manifest
+++ b/dev-cpp/string-theory/Manifest
@@ -1,3 +1 @@
-DIST string-theory-3.3.tar.gz 588360 BLAKE2B ad87857e6d5e3cad1346b759457b434de7612b97e1b19016b1dfc987ac67f0cab318745b14fe1f432cc921ffb1d33b875a2a62f0bc56d815dd35b405a9f08560 SHA512 86209333dce341078c3b973084bd9f3b8ff2ccac0e07a5e6acf5973bd1cfa420897b531b2d1bd6aba9f5ccc8927f85d91f06796ac0e62ec8a735564a0387d2f4
-DIST string-theory-3.4.tar.gz 588522 BLAKE2B 207c490293401829d28590291166bcbeefde4ecb3b70d1cc2751d7582c53cf234b7e01579d3bfbe55681708e4d3e22cedbd6fe96b2fdad1c3ef158bb7a080593 SHA512 36ad82c6da276b7cb66d350ceb4bed2a66f768a6604b2981331ceec6a96d03cc3a7e7e5f733de88ec15e0ea41f99f8657b959a51149c540f530d06268c5657ff
 DIST string-theory-3.5.tar.gz 589905 BLAKE2B c2bc926b8568efc1fbe27861619bd8249ad788297dd537cff393d212b3bb12a529847b740fc8ba82dc28501fb05800eb8debf3e4832cf145b5c13882ac45e900 SHA512 30300155e64ace8197ed531baffe4e835c269ac10d6857ac9f29501e0a1f69965994d6f2fa2e64544e7d441de635e2d370be24efcf00a0d24066730d19f022a6

diff --git a/dev-cpp/string-theory/string-theory-3.3.ebuild b/dev-cpp/string-theory/string-theory-3.3.ebuild
deleted file mode 100644
index 5706dd0292ea..000000000000
--- a/dev-cpp/string-theory/string-theory-3.3.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A flexible modern C++ library for string manipulation and storage"
-HOMEPAGE="https://github.com/zrax/string_theory/"
-SRC_URI="https://github.com/zrax/string_theory/archive/${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/string_theory-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-src_prepare() {
-	# Drop -Werror from bundled gtest
-	# bug #766468
-	sed -i -e "s/-Werror//" test/gtest-1.10.0/cmake/internal_utils.cmake || die
-
-	cmake_src_prepare
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DST_BUILD_TESTS=$(usex test)
-	)
-
-	cmake_src_configure
-}
-
-src_test() {
-	cd "${BUILD_DIR}/test" || die
-	./st_gtests || die
-}

diff --git a/dev-cpp/string-theory/string-theory-3.4.ebuild b/dev-cpp/string-theory/string-theory-3.4.ebuild
deleted file mode 100644
index f6c5c3db6f6a..000000000000
--- a/dev-cpp/string-theory/string-theory-3.4.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A flexible modern C++ library for string manipulation and storage"
-HOMEPAGE="https://github.com/zrax/string_theory/"
-SRC_URI="https://github.com/zrax/string_theory/archive/${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/string_theory-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-src_prepare() {
-	# Drop -Werror from bundled gtest
-	# bug #766468
-	sed -i -e "s/-Werror//" test/gtest-1.10.0/cmake/internal_utils.cmake || die
-
-	cmake_src_prepare
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DST_BUILD_TESTS=$(usex test)
-	)
-
-	cmake_src_configure
-}
-
-src_test() {
-	cd "${BUILD_DIR}/test" || die
-	./st_gtests || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/string-theory/
@ 2023-01-02 15:17 Florian Schmaus
  0 siblings, 0 replies; 11+ messages in thread
From: Florian Schmaus @ 2023-01-02 15:17 UTC (permalink / raw
  To: gentoo-commits

commit:     f5899c42ffbab83bd087c0140b9b8dfd565fe135
Author:     Richard Fröhning <misanthropos <AT> gmx <DOT> de>
AuthorDate: Wed Dec 21 16:43:03 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Jan  2 15:17:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5899c42

dev-cpp/string-theory: bump to 3.6

Signed-off-by: Richard Fröhning <misanthropos <AT> gmx.de>
Closes: https://github.com/gentoo/gentoo/pull/28732
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 dev-cpp/string-theory/Manifest                 |  1 +
 dev-cpp/string-theory/string-theory-3.6.ebuild | 38 ++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/dev-cpp/string-theory/Manifest b/dev-cpp/string-theory/Manifest
index c71a11b8be85..b1a156c5f269 100644
--- a/dev-cpp/string-theory/Manifest
+++ b/dev-cpp/string-theory/Manifest
@@ -1 +1,2 @@
 DIST string-theory-3.5.tar.gz 589905 BLAKE2B c2bc926b8568efc1fbe27861619bd8249ad788297dd537cff393d212b3bb12a529847b740fc8ba82dc28501fb05800eb8debf3e4832cf145b5c13882ac45e900 SHA512 30300155e64ace8197ed531baffe4e835c269ac10d6857ac9f29501e0a1f69965994d6f2fa2e64544e7d441de635e2d370be24efcf00a0d24066730d19f022a6
+DIST string-theory-3.6.tar.gz 590461 BLAKE2B e8441ead9b13e8f107c47d0695ca669f40558567590b85310903f550edf2d4cbb8622f36857b9563d33a629398358e33024c97b97a8f151a3899f9cee30ee237 SHA512 2bbd8e6c5c2501cc9616ee6a77b60a7cac5e7c9fa58d6616f6ba39cfdee33dc1b072c5d1b34bd2f88726fb4d65d32032595be7a67854a2e894eb3d81d4a8eea9

diff --git a/dev-cpp/string-theory/string-theory-3.6.ebuild b/dev-cpp/string-theory/string-theory-3.6.ebuild
new file mode 100644
index 000000000000..1e683f2fff92
--- /dev/null
+++ b/dev-cpp/string-theory/string-theory-3.6.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="A flexible modern C++ library for string manipulation and storage"
+HOMEPAGE="https://github.com/zrax/string_theory/"
+SRC_URI="https://github.com/zrax/string_theory/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/string_theory-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+src_prepare() {
+	# Drop -Werror from bundled gtest
+	# bug #766468
+	sed -i -e "s/-Werror//" test/gtest-1.10.0/cmake/internal_utils.cmake || die
+
+	cmake_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DST_BUILD_TESTS=$(usex test)
+	)
+
+	cmake_src_configure
+}
+
+src_test() {
+	cd "${BUILD_DIR}/test" || die
+	./st_gtests || die
+}


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

end of thread, other threads:[~2023-01-02 15:18 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-06 19:47 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/string-theory/ Ionen Wolkens
  -- strict thread matches above, loose matches on Subject: below --
2023-01-02 15:17 Florian Schmaus
2022-12-21  9:07 Andreas Sturmlechner
2022-11-22 13:46 Arthur Zamarin
2022-02-06 19:47 Ionen Wolkens
2021-02-24 21:20 Sam James
2021-02-10 14:49 Sam James
2021-02-03  7:25 Joonas Niilola
2021-01-22  2:12 Sam James
2021-01-22  1:41 Sam James
2021-01-22  1:41 Sam James

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