public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2022-08-23  5:34 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2022-08-23  5:34 UTC (permalink / raw
  To: gentoo-commits

commit:     928e7516633961347e996d8565560678995f7500
Author:     Holger Hoffstätte <holger <AT> applied-asynchrony <DOT> com>
AuthorDate: Wed Jul 20 11:56:27 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 23 05:34:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=928e7516

dev-cpp/valijson: new package

Signed-off-by: Holger Hoffstätte <holger <AT> applied-asynchrony.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/valijson/Manifest            |  1 +
 dev-cpp/valijson/metadata.xml        | 15 ++++++++++++++
 dev-cpp/valijson/valijson-0.6.ebuild | 40 ++++++++++++++++++++++++++++++++++++
 3 files changed, 56 insertions(+)

diff --git a/dev-cpp/valijson/Manifest b/dev-cpp/valijson/Manifest
new file mode 100644
index 000000000000..ab196e007f5b
--- /dev/null
+++ b/dev-cpp/valijson/Manifest
@@ -0,0 +1 @@
+DIST valijson-0.6.tar.gz 1881386 BLAKE2B 1dd7783e10f7d362673bd2b80920c911cca194068078ac1411897b212600032bc15ffe10dbb62c27e54d168a1c634d73ee40b394e4d534e72224694ec662e0a6 SHA512 a493d17159e479be7fe29d45c610c7d4fdd2c2f9ba897923129734fb07257dbb41fddde4c4263dbf0aa5c7101cd1555568a048beba2f60d2b32e625dd9690749

diff --git a/dev-cpp/valijson/metadata.xml b/dev-cpp/valijson/metadata.xml
new file mode 100644
index 000000000000..fbe60ab1e518
--- /dev/null
+++ b/dev-cpp/valijson/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>holger@applied-asynchrony.com</email>
+		<name>Holger Hoffstätte</name>
+	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">tristanpenman/valijson</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-cpp/valijson/valijson-0.6.ebuild b/dev-cpp/valijson/valijson-0.6.ebuild
new file mode 100644
index 000000000000..879b255f1760
--- /dev/null
+++ b/dev-cpp/valijson/valijson-0.6.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Header-only C++ library for JSON Schema validation"
+HOMEPAGE="https://github.com/tristanpenman/valijson"
+SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+src_configure() {
+	local mycmakeargs=(
+		-Dvalijson_BUILD_TESTS=$(usex test)
+	)
+
+	if use test; then
+		sed -i -e "s:../tests/data/documents/:../${P}/tests/data/documents/:" tests/test_adapter_comparison.cpp || die
+		sed -i -e "s:../tests/data:../${P}/tests/data:" tests/test_validation_errors.cpp || die
+		sed -i -e "s:../thirdparty/:../${P}/thirdparty/:" -e "s:../doc/schema/:../${P}/doc/schema/:" tests/test_validator.cpp || die
+	fi
+
+	cmake_src_configure
+}
+
+src_test() {
+	cd "${BUILD_DIR}" || die
+	./test_suite || die
+}
+
+src_install() {
+	# there is no target for installing headers, so do it manually
+	doheader -r include/*
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2022-08-23 18:57 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2022-08-23 18:57 UTC (permalink / raw
  To: gentoo-commits

commit:     3cc6c155957fceb4367db5a76aa9c5ca91334347
Author:     Holger Hoffstätte <holger <AT> applied-asynchrony <DOT> com>
AuthorDate: Tue Aug 23 17:27:02 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 23 18:56:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cc6c155

dev-cpp/valijson: bump to 0.7 & fix test compilation with gcc12

Bug: https://bugs.gentoo.org/866153
Signed-off-by: Holger Hoffstätte <holger <AT> applied-asynchrony.com>
Closes: https://github.com/gentoo/gentoo/pull/26988
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/valijson/Manifest                                     | 2 +-
 dev-cpp/valijson/{valijson-0.6.ebuild => valijson-0.7.ebuild} | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-cpp/valijson/Manifest b/dev-cpp/valijson/Manifest
index ab196e007f5b..7c45f2998533 100644
--- a/dev-cpp/valijson/Manifest
+++ b/dev-cpp/valijson/Manifest
@@ -1 +1 @@
-DIST valijson-0.6.tar.gz 1881386 BLAKE2B 1dd7783e10f7d362673bd2b80920c911cca194068078ac1411897b212600032bc15ffe10dbb62c27e54d168a1c634d73ee40b394e4d534e72224694ec662e0a6 SHA512 a493d17159e479be7fe29d45c610c7d4fdd2c2f9ba897923129734fb07257dbb41fddde4c4263dbf0aa5c7101cd1555568a048beba2f60d2b32e625dd9690749
+DIST valijson-0.7.tar.gz 2060214 BLAKE2B d2e1c58e37213e44d7d6af173691cad3853e87648948c229ea683bfcba8b19256b0230852b0537c2dbdd7084fcf1ac068e320c5f59a69e446610390b82e76474 SHA512 662e53bf1cac4def19792392cda7cbfe2cbadf77b768eb69b2dec693b16f85f32fa2e9b97eae36569cfcc9ac45f1e6338967423cf415d6bcd90372bc49793a2d

diff --git a/dev-cpp/valijson/valijson-0.6.ebuild b/dev-cpp/valijson/valijson-0.7.ebuild
similarity index 85%
rename from dev-cpp/valijson/valijson-0.6.ebuild
rename to dev-cpp/valijson/valijson-0.7.ebuild
index 879b255f1760..52fc96a2bad8 100644
--- a/dev-cpp/valijson/valijson-0.6.ebuild
+++ b/dev-cpp/valijson/valijson-0.7.ebuild
@@ -21,11 +21,15 @@ src_configure() {
 	)
 
 	if use test; then
+		# Fix relative paths to test data
 		sed -i -e "s:../tests/data/documents/:../${P}/tests/data/documents/:" tests/test_adapter_comparison.cpp || die
 		sed -i -e "s:../tests/data:../${P}/tests/data:" tests/test_validation_errors.cpp || die
 		sed -i -e "s:../thirdparty/:../${P}/thirdparty/:" -e "s:../doc/schema/:../${P}/doc/schema/:" tests/test_validator.cpp || die
 	fi
 
+	# -Werror is too aggressive due to false positives with gcc-12, see bug #866153
+	sed -i -e 's/-Werror//g' ../${P}/CMakeLists.txt || die
+
 	cmake_src_configure
 }
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2023-01-03 18:28 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2023-01-03 18:28 UTC (permalink / raw
  To: gentoo-commits

commit:     caba8df5f38782fc7a1948419c73c22ff490d636
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  3 18:28:10 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan  3 18:28:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caba8df5

dev-cpp/valijson: Stabilize 0.7 x86, #889532

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

 dev-cpp/valijson/valijson-0.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/valijson/valijson-0.7.ebuild b/dev-cpp/valijson/valijson-0.7.ebuild
index 52fc96a2bad8..030b372e2a46 100644
--- a/dev-cpp/valijson/valijson-0.7.ebuild
+++ b/dev-cpp/valijson/valijson-0.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2023-01-04  6:30 Arthur Zamarin
  0 siblings, 0 replies; 24+ messages in thread
From: Arthur Zamarin @ 2023-01-04  6:30 UTC (permalink / raw
  To: gentoo-commits

commit:     c6b9f386a210ffa75b235a02a160f60040055dd5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Jan  4 06:30:10 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Jan  4 06:30:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6b9f386

dev-cpp/valijson: Stabilize 0.7 amd64, #889532

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

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

diff --git a/dev-cpp/valijson/valijson-0.7.ebuild b/dev-cpp/valijson/valijson-0.7.ebuild
index 030b372e2a46..ca723120f1e0 100644
--- a/dev-cpp/valijson/valijson-0.7.ebuild
+++ b/dev-cpp/valijson/valijson-0.7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2023-03-27 20:51 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2023-03-27 20:51 UTC (permalink / raw
  To: gentoo-commits

commit:     96a2848072fe5667b9ea74aec7852df44dcdaaaf
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 27 20:51:47 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 27 20:51:47 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96a28480

dev-cpp/valijson: Stabilize 1.0 x86, #903249

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

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

diff --git a/dev-cpp/valijson/valijson-1.0.ebuild b/dev-cpp/valijson/valijson-1.0.ebuild
index f8228da04f59..47708ce4f85c 100644
--- a/dev-cpp/valijson/valijson-1.0.ebuild
+++ b/dev-cpp/valijson/valijson-1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="BSD-2 Boost-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
 RESTRICT="test"
 
 PATCHES=(


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2023-03-27 20:51 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2023-03-27 20:51 UTC (permalink / raw
  To: gentoo-commits

commit:     99981c11f220d9ef57645cea90b8435aef648be9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 27 20:51:49 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 27 20:51:49 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99981c11

dev-cpp/valijson: Stabilize 1.0 amd64, #903249

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

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

diff --git a/dev-cpp/valijson/valijson-1.0.ebuild b/dev-cpp/valijson/valijson-1.0.ebuild
index 47708ce4f85c..bc4327b63333 100644
--- a/dev-cpp/valijson/valijson-1.0.ebuild
+++ b/dev-cpp/valijson/valijson-1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="BSD-2 Boost-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 RESTRICT="test"
 
 PATCHES=(


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2023-05-27  7:49 Joonas Niilola
  0 siblings, 0 replies; 24+ messages in thread
From: Joonas Niilola @ 2023-05-27  7:49 UTC (permalink / raw
  To: gentoo-commits

commit:     8907498d925ed490841e9208e84c01994316c3af
Author:     Holger Hoffstätte <holger <AT> applied-asynchrony <DOT> com>
AuthorDate: Mon May 15 09:44:49 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat May 27 07:49:18 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8907498d

dev-cpp/valijson: clean up old

Can be cleaned up since 1.0 is stable.

Closes: https://bugs.gentoo.org/891683
Signed-off-by: Holger Hoffstätte <holger <AT> applied-asynchrony.com>
Closes: https://github.com/gentoo/gentoo/pull/31040
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-cpp/valijson/Manifest            |  1 -
 dev-cpp/valijson/valijson-0.7.ebuild | 44 ------------------------------------
 2 files changed, 45 deletions(-)

diff --git a/dev-cpp/valijson/Manifest b/dev-cpp/valijson/Manifest
index 3094c2282938..b112a7c010c0 100644
--- a/dev-cpp/valijson/Manifest
+++ b/dev-cpp/valijson/Manifest
@@ -1,2 +1 @@
-DIST valijson-0.7.tar.gz 2060214 BLAKE2B d2e1c58e37213e44d7d6af173691cad3853e87648948c229ea683bfcba8b19256b0230852b0537c2dbdd7084fcf1ac068e320c5f59a69e446610390b82e76474 SHA512 662e53bf1cac4def19792392cda7cbfe2cbadf77b768eb69b2dec693b16f85f32fa2e9b97eae36569cfcc9ac45f1e6338967423cf415d6bcd90372bc49793a2d
 DIST valijson-1.0.tar.gz 721078 BLAKE2B 74f4a061266a6ee8fba9d93b4e1df20dc828d85169f865bdb60ba9f5217ee422324a09788b02b4ddd18a92d906c64863a5bd7c1250f8bdb62fd9f00f3d73c7e7 SHA512 a206954b11e92cbebbebf094e6f0925a270ebd6bec49cbdb7adda5a4cec93587a5a61ebbce105846c3950cf5df74bfdd5f5bb1ffbf73315f45c7a6cda2b77db9

diff --git a/dev-cpp/valijson/valijson-0.7.ebuild b/dev-cpp/valijson/valijson-0.7.ebuild
deleted file mode 100644
index ca723120f1e0..000000000000
--- a/dev-cpp/valijson/valijson-0.7.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Header-only C++ library for JSON Schema validation"
-HOMEPAGE="https://github.com/tristanpenman/valijson"
-SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-src_configure() {
-	local mycmakeargs=(
-		-Dvalijson_BUILD_TESTS=$(usex test)
-	)
-
-	if use test; then
-		# Fix relative paths to test data
-		sed -i -e "s:../tests/data/documents/:../${P}/tests/data/documents/:" tests/test_adapter_comparison.cpp || die
-		sed -i -e "s:../tests/data:../${P}/tests/data:" tests/test_validation_errors.cpp || die
-		sed -i -e "s:../thirdparty/:../${P}/thirdparty/:" -e "s:../doc/schema/:../${P}/doc/schema/:" tests/test_validator.cpp || die
-	fi
-
-	# -Werror is too aggressive due to false positives with gcc-12, see bug #866153
-	sed -i -e 's/-Werror//g' ../${P}/CMakeLists.txt || die
-
-	cmake_src_configure
-}
-
-src_test() {
-	cd "${BUILD_DIR}" || die
-	./test_suite || die
-}
-
-src_install() {
-	# there is no target for installing headers, so do it manually
-	doheader -r include/*
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2024-06-04 18:23 Arthur Zamarin
  0 siblings, 0 replies; 24+ messages in thread
From: Arthur Zamarin @ 2024-06-04 18:23 UTC (permalink / raw
  To: gentoo-commits

commit:     5884189496a9003a3e3cf6171efaab17133bf79b
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  4 16:48:02 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Jun  4 18:23:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58841894

dev-cpp/valijson: add 1.0.2

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

 dev-cpp/valijson/Manifest              |  1 +
 dev-cpp/valijson/valijson-1.0.2.ebuild | 20 ++++++++++++++++++++
 2 files changed, 21 insertions(+)

diff --git a/dev-cpp/valijson/Manifest b/dev-cpp/valijson/Manifest
index b112a7c010c0..e485a9f791ba 100644
--- a/dev-cpp/valijson/Manifest
+++ b/dev-cpp/valijson/Manifest
@@ -1 +1,2 @@
+DIST valijson-1.0.2.tar.gz 723131 BLAKE2B ada64202d1c82f4e24c8fb3935a070ee40a24e8b75712fd4392f19c93c363d293db788cd1481ed3a857721fcd6f87e2d91c3b9779863fb6e2421ba4ee4f1d1f7 SHA512 c1141e533d6a791a01883c5b7ab9501eebc39057a850d784670a4bcf99bff3fee4c3120107128dcaa9db0505adf2ae794700620c02163b3e636f0b635031df80
 DIST valijson-1.0.tar.gz 721078 BLAKE2B 74f4a061266a6ee8fba9d93b4e1df20dc828d85169f865bdb60ba9f5217ee422324a09788b02b4ddd18a92d906c64863a5bd7c1250f8bdb62fd9f00f3d73c7e7 SHA512 a206954b11e92cbebbebf094e6f0925a270ebd6bec49cbdb7adda5a4cec93587a5a61ebbce105846c3950cf5df74bfdd5f5bb1ffbf73315f45c7a6cda2b77db9

diff --git a/dev-cpp/valijson/valijson-1.0.2.ebuild b/dev-cpp/valijson/valijson-1.0.2.ebuild
new file mode 100644
index 000000000000..b0c20539683e
--- /dev/null
+++ b/dev-cpp/valijson/valijson-1.0.2.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Header-only C++ library for JSON Schema validation"
+HOMEPAGE="https://github.com/tristanpenman/valijson"
+SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2 Boost-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+RESTRICT="test"
+
+src_install() {
+	# there is no target for installing headers, so do it manually
+	doheader -r include/*
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2024-08-17  7:28 Michał Górny
  0 siblings, 0 replies; 24+ messages in thread
From: Michał Górny @ 2024-08-17  7:28 UTC (permalink / raw
  To: gentoo-commits

commit:     73ed5608ce7ee15cffce1e3ee2244487ca1aba83
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 17 07:27:51 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Aug 17 07:27:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73ed5608

dev-cpp/valijson: Stabilize 1.0.2 x86, #938007

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/dev-cpp/valijson/valijson-1.0.2.ebuild b/dev-cpp/valijson/valijson-1.0.2.ebuild
index 3424174d3833..9ee0f307cdba 100644
--- a/dev-cpp/valijson/valijson-1.0.2.ebuild
+++ b/dev-cpp/valijson/valijson-1.0.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="BSD-2 Boost-1.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 RESTRICT="test"
 
 src_install() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2024-08-17  7:28 Michał Górny
  0 siblings, 0 replies; 24+ messages in thread
From: Michał Górny @ 2024-08-17  7:28 UTC (permalink / raw
  To: gentoo-commits

commit:     d6b120d9d55701bfacd0b9ae416a3eba50550b4e
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 17 07:27:50 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Aug 17 07:27:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6b120d9

dev-cpp/valijson: Stabilize 1.0.2 amd64, #938007

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/dev-cpp/valijson/valijson-1.0.2.ebuild b/dev-cpp/valijson/valijson-1.0.2.ebuild
index b0c20539683e..3424174d3833 100644
--- a/dev-cpp/valijson/valijson-1.0.2.ebuild
+++ b/dev-cpp/valijson/valijson-1.0.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="BSD-2 Boost-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 RESTRICT="test"
 
 src_install() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2024-09-13  7:20 Joonas Niilola
  0 siblings, 0 replies; 24+ messages in thread
From: Joonas Niilola @ 2024-09-13  7:20 UTC (permalink / raw
  To: gentoo-commits

commit:     059e1d741bab451a4af105e13ac519f3a339fe4d
Author:     Holger Hoffstätte <holger <AT> applied-asynchrony <DOT> com>
AuthorDate: Wed Aug 28 10:56:17 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Sep 13 07:20:39 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=059e1d74

dev-cpp/valijson: add 1.0.3

Signed-off-by: Holger Hoffstätte <holger <AT> applied-asynchrony.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-cpp/valijson/Manifest              |  1 +
 dev-cpp/valijson/valijson-1.0.3.ebuild | 20 ++++++++++++++++++++
 2 files changed, 21 insertions(+)

diff --git a/dev-cpp/valijson/Manifest b/dev-cpp/valijson/Manifest
index e485a9f791ba..da5681470d90 100644
--- a/dev-cpp/valijson/Manifest
+++ b/dev-cpp/valijson/Manifest
@@ -1,2 +1,3 @@
 DIST valijson-1.0.2.tar.gz 723131 BLAKE2B ada64202d1c82f4e24c8fb3935a070ee40a24e8b75712fd4392f19c93c363d293db788cd1481ed3a857721fcd6f87e2d91c3b9779863fb6e2421ba4ee4f1d1f7 SHA512 c1141e533d6a791a01883c5b7ab9501eebc39057a850d784670a4bcf99bff3fee4c3120107128dcaa9db0505adf2ae794700620c02163b3e636f0b635031df80
+DIST valijson-1.0.3.tar.gz 727517 BLAKE2B c0bf5bc3aedf1462ae7cf30d64acc6d91e620cdd747f13f05f25df07074731dc2b611a07cb6204a5883641bd73c80dc4042a5a804e2aac23a24464add378ea7e SHA512 5ab67d27c8906c116e65198831ebfc3e5a1772087b7cfe316bde7d2bbd78a7ec3bf0e8fc803fc4528779fe2515e72711b8cb14f05ca6f5bf01af2b5e9ca396fa
 DIST valijson-1.0.tar.gz 721078 BLAKE2B 74f4a061266a6ee8fba9d93b4e1df20dc828d85169f865bdb60ba9f5217ee422324a09788b02b4ddd18a92d906c64863a5bd7c1250f8bdb62fd9f00f3d73c7e7 SHA512 a206954b11e92cbebbebf094e6f0925a270ebd6bec49cbdb7adda5a4cec93587a5a61ebbce105846c3950cf5df74bfdd5f5bb1ffbf73315f45c7a6cda2b77db9

diff --git a/dev-cpp/valijson/valijson-1.0.3.ebuild b/dev-cpp/valijson/valijson-1.0.3.ebuild
new file mode 100644
index 000000000000..b0c20539683e
--- /dev/null
+++ b/dev-cpp/valijson/valijson-1.0.3.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Header-only C++ library for JSON Schema validation"
+HOMEPAGE="https://github.com/tristanpenman/valijson"
+SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2 Boost-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+RESTRICT="test"
+
+src_install() {
+	# there is no target for installing headers, so do it manually
+	doheader -r include/*
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2025-02-15 13:39 Arthur Zamarin
  0 siblings, 0 replies; 24+ messages in thread
From: Arthur Zamarin @ 2025-02-15 13:39 UTC (permalink / raw
  To: gentoo-commits

commit:     32978aa9110cdc62f3d3019ddcbb0309a74ebaf1
Author:     Holger Hoffstätte <holger <AT> applied-asynchrony <DOT> com>
AuthorDate: Sat Feb 15 13:28:16 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 15 13:39:04 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32978aa9

dev-cpp/valijson: add 1.0.4

Signed-off-by: Holger Hoffstätte <holger <AT> applied-asynchrony.com>
Closes: https://github.com/gentoo/gentoo/pull/40585
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-cpp/valijson/Manifest              |  1 +
 dev-cpp/valijson/valijson-1.0.4.ebuild | 20 ++++++++++++++++++++
 2 files changed, 21 insertions(+)

diff --git a/dev-cpp/valijson/Manifest b/dev-cpp/valijson/Manifest
index 2827b7834556..2f005f0e4a09 100644
--- a/dev-cpp/valijson/Manifest
+++ b/dev-cpp/valijson/Manifest
@@ -1,2 +1,3 @@
 DIST valijson-1.0.2.tar.gz 723131 BLAKE2B ada64202d1c82f4e24c8fb3935a070ee40a24e8b75712fd4392f19c93c363d293db788cd1481ed3a857721fcd6f87e2d91c3b9779863fb6e2421ba4ee4f1d1f7 SHA512 c1141e533d6a791a01883c5b7ab9501eebc39057a850d784670a4bcf99bff3fee4c3120107128dcaa9db0505adf2ae794700620c02163b3e636f0b635031df80
 DIST valijson-1.0.3.tar.gz 727517 BLAKE2B c0bf5bc3aedf1462ae7cf30d64acc6d91e620cdd747f13f05f25df07074731dc2b611a07cb6204a5883641bd73c80dc4042a5a804e2aac23a24464add378ea7e SHA512 5ab67d27c8906c116e65198831ebfc3e5a1772087b7cfe316bde7d2bbd78a7ec3bf0e8fc803fc4528779fe2515e72711b8cb14f05ca6f5bf01af2b5e9ca396fa
+DIST valijson-1.0.4.tar.gz 741124 BLAKE2B 3fad58546efcd3f08a6f92f4bc6c1f429c423da4076233a6159dffc0cb8d81e6be655072cbc08667140d7f4076149ae69a9edd6abc38190b03818353d257eafa SHA512 acd8971d3afd3c89255f45367a6b40e71f3b155dd2968afdc49f0b4d381d25da116383a8c7853f93a47e69333b99b969db0abcb25c646d97143afa9523c9d4b9

diff --git a/dev-cpp/valijson/valijson-1.0.4.ebuild b/dev-cpp/valijson/valijson-1.0.4.ebuild
new file mode 100644
index 000000000000..10e6d497669f
--- /dev/null
+++ b/dev-cpp/valijson/valijson-1.0.4.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Header-only C++ library for JSON Schema validation"
+HOMEPAGE="https://github.com/tristanpenman/valijson"
+SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2 Boost-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+RESTRICT="test"
+
+src_install() {
+	# there is no target for installing headers, so do it manually
+	doheader -r include/*
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2025-04-14  6:06 Joonas Niilola
  0 siblings, 0 replies; 24+ messages in thread
From: Joonas Niilola @ 2025-04-14  6:06 UTC (permalink / raw
  To: gentoo-commits

commit:     1f0c1152e7f2cacf1d68be51ab2b1425924d3d8b
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 14 06:05:06 2025 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Apr 14 06:06:11 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f0c1152

dev-cpp/valijson: Stabilize 1.0.4 amd64, #953820

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

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

diff --git a/dev-cpp/valijson/valijson-1.0.4.ebuild b/dev-cpp/valijson/valijson-1.0.4.ebuild
index 10e6d497669f..e0851045bf30 100644
--- a/dev-cpp/valijson/valijson-1.0.4.ebuild
+++ b/dev-cpp/valijson/valijson-1.0.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="BSD-2 Boost-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 RESTRICT="test"
 
 src_install() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2025-04-14  6:12 Joonas Niilola
  0 siblings, 0 replies; 24+ messages in thread
From: Joonas Niilola @ 2025-04-14  6:12 UTC (permalink / raw
  To: gentoo-commits

commit:     388276cc25e4e20b52d263f1810ea59c80d3eda8
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 14 06:11:11 2025 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Apr 14 06:12:42 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=388276cc

dev-cpp/valijson: Stabilize 1.0.4 x86, #953820

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

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

diff --git a/dev-cpp/valijson/valijson-1.0.4.ebuild b/dev-cpp/valijson/valijson-1.0.4.ebuild
index e0851045bf30..f63a86fea096 100644
--- a/dev-cpp/valijson/valijson-1.0.4.ebuild
+++ b/dev-cpp/valijson/valijson-1.0.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="BSD-2 Boost-1.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 RESTRICT="test"
 
 src_install() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2025-04-16 17:17 Arthur Zamarin
  0 siblings, 0 replies; 24+ messages in thread
From: Arthur Zamarin @ 2025-04-16 17:17 UTC (permalink / raw
  To: gentoo-commits

commit:     2d0b8baf3881a969b8f0747cbc24901d90c66c31
Author:     Holger Hoffstätte <holger <AT> applied-asynchrony <DOT> com>
AuthorDate: Mon Apr 14 08:14:28 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 16 17:17:36 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d0b8baf

dev-cpp/valijson: add 1.0.5

Signed-off-by: Holger Hoffstätte <holger <AT> applied-asynchrony.com>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-cpp/valijson/Manifest              |  1 +
 dev-cpp/valijson/valijson-1.0.5.ebuild | 20 ++++++++++++++++++++
 2 files changed, 21 insertions(+)

diff --git a/dev-cpp/valijson/Manifest b/dev-cpp/valijson/Manifest
index 2f005f0e4a09..a4fb4a561169 100644
--- a/dev-cpp/valijson/Manifest
+++ b/dev-cpp/valijson/Manifest
@@ -1,3 +1,4 @@
 DIST valijson-1.0.2.tar.gz 723131 BLAKE2B ada64202d1c82f4e24c8fb3935a070ee40a24e8b75712fd4392f19c93c363d293db788cd1481ed3a857721fcd6f87e2d91c3b9779863fb6e2421ba4ee4f1d1f7 SHA512 c1141e533d6a791a01883c5b7ab9501eebc39057a850d784670a4bcf99bff3fee4c3120107128dcaa9db0505adf2ae794700620c02163b3e636f0b635031df80
 DIST valijson-1.0.3.tar.gz 727517 BLAKE2B c0bf5bc3aedf1462ae7cf30d64acc6d91e620cdd747f13f05f25df07074731dc2b611a07cb6204a5883641bd73c80dc4042a5a804e2aac23a24464add378ea7e SHA512 5ab67d27c8906c116e65198831ebfc3e5a1772087b7cfe316bde7d2bbd78a7ec3bf0e8fc803fc4528779fe2515e72711b8cb14f05ca6f5bf01af2b5e9ca396fa
 DIST valijson-1.0.4.tar.gz 741124 BLAKE2B 3fad58546efcd3f08a6f92f4bc6c1f429c423da4076233a6159dffc0cb8d81e6be655072cbc08667140d7f4076149ae69a9edd6abc38190b03818353d257eafa SHA512 acd8971d3afd3c89255f45367a6b40e71f3b155dd2968afdc49f0b4d381d25da116383a8c7853f93a47e69333b99b969db0abcb25c646d97143afa9523c9d4b9
+DIST valijson-1.0.5.tar.gz 739302 BLAKE2B 7283d0e748975e6df60d5e112e4d68556bf2d77745d58ad41f2334d695fd420c30dd7ad7db714964c9644ed6ebda272ec05f478dbc9dc66e1895ab68a1c685ab SHA512 2b3a3f6f29d576bfdd7460f69bb8efceee886ab352d2b09c60ced24e1707bbf3e05329d6ec36758905a424f7d615f18cdb874fe9d9a5d1b2efd9cc4a2cbf9a29

diff --git a/dev-cpp/valijson/valijson-1.0.5.ebuild b/dev-cpp/valijson/valijson-1.0.5.ebuild
new file mode 100644
index 000000000000..10e6d497669f
--- /dev/null
+++ b/dev-cpp/valijson/valijson-1.0.5.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Header-only C++ library for JSON Schema validation"
+HOMEPAGE="https://github.com/tristanpenman/valijson"
+SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2 Boost-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+RESTRICT="test"
+
+src_install() {
+	# there is no target for installing headers, so do it manually
+	doheader -r include/*
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2025-04-16 17:17 Arthur Zamarin
  0 siblings, 0 replies; 24+ messages in thread
From: Arthur Zamarin @ 2025-04-16 17:17 UTC (permalink / raw
  To: gentoo-commits

commit:     95db5c47352c58132a9f8fa7331a73688d30dfdf
Author:     Holger Hoffstätte <holger <AT> applied-asynchrony <DOT> com>
AuthorDate: Mon Apr 14 08:15:00 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 16 17:17:36 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95db5c47

dev-cpp/valijson: clean up old

Signed-off-by: Holger Hoffstätte <holger <AT> applied-asynchrony.com>
Closes: https://github.com/gentoo/gentoo/pull/41589
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-cpp/valijson/Manifest              |  2 --
 dev-cpp/valijson/valijson-1.0.2.ebuild | 20 --------------------
 dev-cpp/valijson/valijson-1.0.3.ebuild | 20 --------------------
 3 files changed, 42 deletions(-)

diff --git a/dev-cpp/valijson/Manifest b/dev-cpp/valijson/Manifest
index a4fb4a561169..4b784c1a64d4 100644
--- a/dev-cpp/valijson/Manifest
+++ b/dev-cpp/valijson/Manifest
@@ -1,4 +1,2 @@
-DIST valijson-1.0.2.tar.gz 723131 BLAKE2B ada64202d1c82f4e24c8fb3935a070ee40a24e8b75712fd4392f19c93c363d293db788cd1481ed3a857721fcd6f87e2d91c3b9779863fb6e2421ba4ee4f1d1f7 SHA512 c1141e533d6a791a01883c5b7ab9501eebc39057a850d784670a4bcf99bff3fee4c3120107128dcaa9db0505adf2ae794700620c02163b3e636f0b635031df80
-DIST valijson-1.0.3.tar.gz 727517 BLAKE2B c0bf5bc3aedf1462ae7cf30d64acc6d91e620cdd747f13f05f25df07074731dc2b611a07cb6204a5883641bd73c80dc4042a5a804e2aac23a24464add378ea7e SHA512 5ab67d27c8906c116e65198831ebfc3e5a1772087b7cfe316bde7d2bbd78a7ec3bf0e8fc803fc4528779fe2515e72711b8cb14f05ca6f5bf01af2b5e9ca396fa
 DIST valijson-1.0.4.tar.gz 741124 BLAKE2B 3fad58546efcd3f08a6f92f4bc6c1f429c423da4076233a6159dffc0cb8d81e6be655072cbc08667140d7f4076149ae69a9edd6abc38190b03818353d257eafa SHA512 acd8971d3afd3c89255f45367a6b40e71f3b155dd2968afdc49f0b4d381d25da116383a8c7853f93a47e69333b99b969db0abcb25c646d97143afa9523c9d4b9
 DIST valijson-1.0.5.tar.gz 739302 BLAKE2B 7283d0e748975e6df60d5e112e4d68556bf2d77745d58ad41f2334d695fd420c30dd7ad7db714964c9644ed6ebda272ec05f478dbc9dc66e1895ab68a1c685ab SHA512 2b3a3f6f29d576bfdd7460f69bb8efceee886ab352d2b09c60ced24e1707bbf3e05329d6ec36758905a424f7d615f18cdb874fe9d9a5d1b2efd9cc4a2cbf9a29

diff --git a/dev-cpp/valijson/valijson-1.0.2.ebuild b/dev-cpp/valijson/valijson-1.0.2.ebuild
deleted file mode 100644
index 9ee0f307cdba..000000000000
--- a/dev-cpp/valijson/valijson-1.0.2.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Header-only C++ library for JSON Schema validation"
-HOMEPAGE="https://github.com/tristanpenman/valijson"
-SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2 Boost-1.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-RESTRICT="test"
-
-src_install() {
-	# there is no target for installing headers, so do it manually
-	doheader -r include/*
-}

diff --git a/dev-cpp/valijson/valijson-1.0.3.ebuild b/dev-cpp/valijson/valijson-1.0.3.ebuild
deleted file mode 100644
index b0c20539683e..000000000000
--- a/dev-cpp/valijson/valijson-1.0.3.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Header-only C++ library for JSON Schema validation"
-HOMEPAGE="https://github.com/tristanpenman/valijson"
-SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2 Boost-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-RESTRICT="test"
-
-src_install() {
-	# there is no target for installing headers, so do it manually
-	doheader -r include/*
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2025-05-24  2:36 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2025-05-24  2:36 UTC (permalink / raw
  To: gentoo-commits

commit:     d4560a1194db94c2afe178ef8af1be32d46c4f51
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 24 02:28:30 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 24 02:28:30 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4560a11

dev-cpp/valijson: add comment wrt test restriction

It was added in 44f039de30123a9472590cc6d2c15aa520a1d82b.

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

 dev-cpp/valijson/valijson-1.0.5.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-cpp/valijson/valijson-1.0.5.ebuild b/dev-cpp/valijson/valijson-1.0.5.ebuild
index 10e6d497669f..7afb50af88bb 100644
--- a/dev-cpp/valijson/valijson-1.0.5.ebuild
+++ b/dev-cpp/valijson/valijson-1.0.5.ebuild
@@ -12,6 +12,9 @@ SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}
 LICENSE="BSD-2 Boost-1.0"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~x86"
+# Bundled test dependencies are included as submodules, so not in github
+# autogenerated tarballs. The dependencies are largely packaged, but
+# needs patching to use those.
 RESTRICT="test"
 
 src_install() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2025-06-08  6:48 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2025-06-08  6:48 UTC (permalink / raw
  To: gentoo-commits

commit:     243c2a01e0bc3654247f9a99aa18b08fbe87ac27
Author:     Holger Hoffstätte <holger <AT> applied-asynchrony <DOT> com>
AuthorDate: Sat Jun  7 14:50:49 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun  8 06:48:09 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=243c2a01

dev-cpp/valijson: set CMAKE_QA_COMPAT_SKIP=1

The unused & unbuilt "inspector" app has an outdated CMakeLists.txt.
Instead of patching an unmaintained subproject just skip the cmake
compatibility check.

Closes: https://bugs.gentoo.org/957461
Signed-off-by: Holger Hoffstätte <holger <AT> applied-asynchrony.com>
Part-of: https://github.com/gentoo/gentoo/pull/42491
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/valijson/valijson-1.0.4.ebuild | 3 +++
 dev-cpp/valijson/valijson-1.0.5.ebuild | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/dev-cpp/valijson/valijson-1.0.4.ebuild b/dev-cpp/valijson/valijson-1.0.4.ebuild
index f63a86fea096..3b5871f18f9a 100644
--- a/dev-cpp/valijson/valijson-1.0.4.ebuild
+++ b/dev-cpp/valijson/valijson-1.0.4.ebuild
@@ -14,6 +14,9 @@ SLOT="0"
 KEYWORDS="amd64 ~arm64 x86"
 RESTRICT="test"
 
+# unused inspector/CMakeLists.txt (bug #957461)
+CMAKE_QA_COMPAT_SKIP=1
+
 src_install() {
 	# there is no target for installing headers, so do it manually
 	doheader -r include/*

diff --git a/dev-cpp/valijson/valijson-1.0.5.ebuild b/dev-cpp/valijson/valijson-1.0.5.ebuild
index 7afb50af88bb..09724ca85eb4 100644
--- a/dev-cpp/valijson/valijson-1.0.5.ebuild
+++ b/dev-cpp/valijson/valijson-1.0.5.ebuild
@@ -17,6 +17,9 @@ KEYWORDS="~amd64 ~arm64 ~x86"
 # needs patching to use those.
 RESTRICT="test"
 
+# unused inspector/CMakeLists.txt (bug #957461)
+CMAKE_QA_COMPAT_SKIP=1
+
 src_install() {
 	# there is no target for installing headers, so do it manually
 	doheader -r include/*


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2025-06-08  6:48 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2025-06-08  6:48 UTC (permalink / raw
  To: gentoo-commits

commit:     36906d88ba3f2b8adc327ba5cca252a248f02846
Author:     Holger Hoffstätte <holger <AT> applied-asynchrony <DOT> com>
AuthorDate: Sat Jun  7 15:17:56 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun  8 06:48:10 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36906d88

dev-cpp/valijson: add 1.0.6

This release offers a way to use boost::regex instead of std::regex,
however this has to be done by the importing client code and by
setting VALIJSON_USE_BOOST_REGEX. This cannot be enabled globally,
so there is no corresponding USE flag.

Signed-off-by: Holger Hoffstätte <holger <AT> applied-asynchrony.com>
Part-of: https://github.com/gentoo/gentoo/pull/42491
Closes: https://github.com/gentoo/gentoo/pull/42491
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/valijson/Manifest              |  1 +
 dev-cpp/valijson/valijson-1.0.6.ebuild | 26 ++++++++++++++++++++++++++
 2 files changed, 27 insertions(+)

diff --git a/dev-cpp/valijson/Manifest b/dev-cpp/valijson/Manifest
index 4b784c1a64d4..e32eb00ba729 100644
--- a/dev-cpp/valijson/Manifest
+++ b/dev-cpp/valijson/Manifest
@@ -1,2 +1,3 @@
 DIST valijson-1.0.4.tar.gz 741124 BLAKE2B 3fad58546efcd3f08a6f92f4bc6c1f429c423da4076233a6159dffc0cb8d81e6be655072cbc08667140d7f4076149ae69a9edd6abc38190b03818353d257eafa SHA512 acd8971d3afd3c89255f45367a6b40e71f3b155dd2968afdc49f0b4d381d25da116383a8c7853f93a47e69333b99b969db0abcb25c646d97143afa9523c9d4b9
 DIST valijson-1.0.5.tar.gz 739302 BLAKE2B 7283d0e748975e6df60d5e112e4d68556bf2d77745d58ad41f2334d695fd420c30dd7ad7db714964c9644ed6ebda272ec05f478dbc9dc66e1895ab68a1c685ab SHA512 2b3a3f6f29d576bfdd7460f69bb8efceee886ab352d2b09c60ced24e1707bbf3e05329d6ec36758905a424f7d615f18cdb874fe9d9a5d1b2efd9cc4a2cbf9a29
+DIST valijson-1.0.6.tar.gz 739545 BLAKE2B 54a7c81db610cb8a2eab8d1ed24e0e7e3d6976a52a7a1e0026a97bb90bc5479467dc44a895ce7ba0c51e2afa6f7c7c2f0bc2699f0a60daec73d7e7b5b11d4607 SHA512 d62fd57c10ef5343f2ba16c23f0c327ead21dabe637a9100c3a4ab88920b7feb55b53f6abc966da37e3cebbb44c19bc2588470dd036f0ff6e58054b41b71758a

diff --git a/dev-cpp/valijson/valijson-1.0.6.ebuild b/dev-cpp/valijson/valijson-1.0.6.ebuild
new file mode 100644
index 000000000000..09724ca85eb4
--- /dev/null
+++ b/dev-cpp/valijson/valijson-1.0.6.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Header-only C++ library for JSON Schema validation"
+HOMEPAGE="https://github.com/tristanpenman/valijson"
+SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2 Boost-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# Bundled test dependencies are included as submodules, so not in github
+# autogenerated tarballs. The dependencies are largely packaged, but
+# needs patching to use those.
+RESTRICT="test"
+
+# unused inspector/CMakeLists.txt (bug #957461)
+CMAKE_QA_COMPAT_SKIP=1
+
+src_install() {
+	# there is no target for installing headers, so do it manually
+	doheader -r include/*
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2025-08-08  8:54 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2025-08-08  8:54 UTC (permalink / raw
  To: gentoo-commits

commit:     d96426e82795d5a87d3565e50d9d4d930bbb1cd1
Author:     Sebastian Parborg <sebastian <AT> blender <DOT> org>
AuthorDate: Thu Aug  7 14:02:31 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug  8 08:53:58 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d96426e8

dev-cpp/valijson: Use default install target

Valijson now has a valid install target for the headers.
In addition to this, it also has an install target for the
valijsonConfig.cmake  file that some projects have started using.

Signed-off-by: Sebastian Parborg <sebastian <AT> blender.org>
Part-of: https://github.com/gentoo/gentoo/pull/43370
Closes: https://github.com/gentoo/gentoo/pull/43370
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/valijson/valijson-1.0.6-r1.ebuild | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/dev-cpp/valijson/valijson-1.0.6-r1.ebuild b/dev-cpp/valijson/valijson-1.0.6-r1.ebuild
new file mode 100644
index 000000000000..8941b0003d85
--- /dev/null
+++ b/dev-cpp/valijson/valijson-1.0.6-r1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Header-only C++ library for JSON Schema validation"
+HOMEPAGE="https://github.com/tristanpenman/valijson"
+SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2 Boost-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# Bundled test dependencies are included as submodules, so not in github
+# autogenerated tarballs. The dependencies are largely packaged, but
+# needs patching to use those.
+RESTRICT="test"
+
+# unused inspector/CMakeLists.txt (bug #957461)
+CMAKE_QA_COMPAT_SKIP=1


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2025-08-15 16:43 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2025-08-15 16:43 UTC (permalink / raw
  To: gentoo-commits

commit:     35e0fdb175fbdc3f777bd9618acde5882b710a17
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 15 16:42:20 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 15 16:42:20 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35e0fdb1

dev-cpp/valijson: Stabilize 1.0.6 x86, #960178

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

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

diff --git a/dev-cpp/valijson/valijson-1.0.6.ebuild b/dev-cpp/valijson/valijson-1.0.6.ebuild
index 09724ca85eb4..a7f091f11237 100644
--- a/dev-cpp/valijson/valijson-1.0.6.ebuild
+++ b/dev-cpp/valijson/valijson-1.0.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="BSD-2 Boost-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
 # Bundled test dependencies are included as submodules, so not in github
 # autogenerated tarballs. The dependencies are largely packaged, but
 # needs patching to use those.


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2025-08-15 16:43 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2025-08-15 16:43 UTC (permalink / raw
  To: gentoo-commits

commit:     131b6b2f46d4c4fd7c38a7808716af137e57896c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 15 16:42:22 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 15 16:42:22 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=131b6b2f

dev-cpp/valijson: Stabilize 1.0.6 amd64, #960178

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

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

diff --git a/dev-cpp/valijson/valijson-1.0.6.ebuild b/dev-cpp/valijson/valijson-1.0.6.ebuild
index a7f091f11237..a27cb9a9a7f9 100644
--- a/dev-cpp/valijson/valijson-1.0.6.ebuild
+++ b/dev-cpp/valijson/valijson-1.0.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="BSD-2 Boost-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 # Bundled test dependencies are included as submodules, so not in github
 # autogenerated tarballs. The dependencies are largely packaged, but
 # needs patching to use those.


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2025-09-23 12:08 Arthur Zamarin
  0 siblings, 0 replies; 24+ messages in thread
From: Arthur Zamarin @ 2025-09-23 12:08 UTC (permalink / raw
  To: gentoo-commits

commit:     a13034b36babe2a6776897f3ac19cab6341ce7f7
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 23 12:08:27 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 23 12:08:27 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a13034b3

dev-cpp/valijson: Stabilize 1.0.6-r1 amd64, #963232

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

 dev-cpp/valijson/valijson-1.0.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/valijson/valijson-1.0.6-r1.ebuild b/dev-cpp/valijson/valijson-1.0.6-r1.ebuild
index f8bbc5c09a57..e24c8f0cd417 100644
--- a/dev-cpp/valijson/valijson-1.0.6-r1.ebuild
+++ b/dev-cpp/valijson/valijson-1.0.6-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="BSD-2 Boost-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 # Bundled test dependencies are included as submodules, so not in github
 # autogenerated tarballs. The dependencies are largely packaged, but
 # needs patching to use those.


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/
@ 2025-09-23 12:08 Arthur Zamarin
  0 siblings, 0 replies; 24+ messages in thread
From: Arthur Zamarin @ 2025-09-23 12:08 UTC (permalink / raw
  To: gentoo-commits

commit:     e2a5f788b8748dbab28191e5a4e31e91d7740425
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 23 12:08:26 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 23 12:08:26 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2a5f788

dev-cpp/valijson: Stabilize 1.0.6-r1 x86, #963232

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

 dev-cpp/valijson/valijson-1.0.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/valijson/valijson-1.0.6-r1.ebuild b/dev-cpp/valijson/valijson-1.0.6-r1.ebuild
index 8941b0003d85..f8bbc5c09a57 100644
--- a/dev-cpp/valijson/valijson-1.0.6-r1.ebuild
+++ b/dev-cpp/valijson/valijson-1.0.6-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="BSD-2 Boost-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
 # Bundled test dependencies are included as submodules, so not in github
 # autogenerated tarballs. The dependencies are largely packaged, but
 # needs patching to use those.


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

end of thread, other threads:[~2025-09-23 12:09 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-23 12:08 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/valijson/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2025-09-23 12:08 Arthur Zamarin
2025-08-15 16:43 Sam James
2025-08-15 16:43 Sam James
2025-08-08  8:54 Sam James
2025-06-08  6:48 Sam James
2025-06-08  6:48 Sam James
2025-05-24  2:36 Sam James
2025-04-16 17:17 Arthur Zamarin
2025-04-16 17:17 Arthur Zamarin
2025-04-14  6:12 Joonas Niilola
2025-04-14  6:06 Joonas Niilola
2025-02-15 13:39 Arthur Zamarin
2024-09-13  7:20 Joonas Niilola
2024-08-17  7:28 Michał Górny
2024-08-17  7:28 Michał Górny
2024-06-04 18:23 Arthur Zamarin
2023-05-27  7:49 Joonas Niilola
2023-03-27 20:51 Sam James
2023-03-27 20:51 Sam James
2023-01-04  6:30 Arthur Zamarin
2023-01-03 18:28 Sam James
2022-08-23 18:57 Sam James
2022-08-23  5:34 Sam James

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