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@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@gentoo.org>
This commit is contained in:
Holger Hoffstätte
2025-06-07 17:17:56 +02:00
committed by Sam James
parent 243c2a01e0
commit 36906d88ba
2 changed files with 27 additions and 0 deletions

View File

@@ -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

View File

@@ -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/*
}