summaryrefslogtreecommitdiff
path: root/dev-cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dev-cpp')
-rw-r--r--dev-cpp/jsoncons/Manifest1
-rw-r--r--dev-cpp/jsoncons/files/jsoncons-1.4.0-uninit.patch22
-rw-r--r--dev-cpp/jsoncons/jsoncons-1.4.0.ebuild31
3 files changed, 0 insertions, 54 deletions
diff --git a/dev-cpp/jsoncons/Manifest b/dev-cpp/jsoncons/Manifest
index d8b7caf77459..1d58333947ab 100644
--- a/dev-cpp/jsoncons/Manifest
+++ b/dev-cpp/jsoncons/Manifest
@@ -1,2 +1 @@
-DIST jsoncons-1.4.0.tar.gz 1537117 BLAKE2B 633042b091fb1bcd5571420682de6f6c39a18299c1d1be025928226b22d1a9aa52ec2239b19ae38d3d75d19f4b0eaf67ee936096d9bdd7ec019484231a985207 SHA512 500a14ba6cb49d9c1ef04f39779f20b6718e3f4ad4418738b97ea8ffd49ebd7b87db046d1592cc0340d4d016a931ae3eb6888097af1216a30fc4c9e0be0d1337
DIST jsoncons-1.4.1.tar.gz 1538291 BLAKE2B 39a74727cad14592093a8a7046be9f3113d5e27013b5fced8792c5315fea0d8ec8ab511f84aa9ed7dfb97366d7cb3d9d0b3fb65844a6d1978052f67f973f426a SHA512 0d4344256fd0f8b9534f652f66330bea50cd838820d2ca5c114f7b161c218ce87379c56c1513bc11a60d362b0b8efc19ef7e81bb23cff04fc10c7cf5a5d58a52
diff --git a/dev-cpp/jsoncons/files/jsoncons-1.4.0-uninit.patch b/dev-cpp/jsoncons/files/jsoncons-1.4.0-uninit.patch
deleted file mode 100644
index 24506cb58f2f..000000000000
--- a/dev-cpp/jsoncons/files/jsoncons-1.4.0-uninit.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-https://github.com/danielaparker/jsoncons/pull/636
-
---- a/test/corelib/src/json_as_tests.cpp
-+++ b/test/corelib/src/json_as_tests.cpp
-@@ -108,7 +108,7 @@ TEST_CASE("json::as<__int128>()")
- {
- std::string s1 = "-18446744073709551617";
-
-- __int128 n;
-+ __int128 n{};
- auto result = jsoncons::utility::dec_to_integer(s1.data(),s1.size(), n);
- REQUIRE(result.ec == std::errc());
-
-@@ -129,7 +129,7 @@ TEST_CASE("json::as<unsigned __int128>()")
- {
- std::string s1 = "18446744073709551616";
-
-- unsigned __int128 n;
-+ unsigned __int128 n{};
-
- auto result = jsoncons::utility::dec_to_integer(s1.data(),s1.size(), n);
- REQUIRE(result.ec == std::errc());
diff --git a/dev-cpp/jsoncons/jsoncons-1.4.0.ebuild b/dev-cpp/jsoncons/jsoncons-1.4.0.ebuild
deleted file mode 100644
index 19801daab74f..000000000000
--- a/dev-cpp/jsoncons/jsoncons-1.4.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="C++ header-only library for JSON and JSON-like data formats"
-HOMEPAGE="https://danielaparker.github.io/jsoncons/ https://github.com/danielaparker/jsoncons"
-SRC_URI="https://github.com/danielaparker/jsoncons/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Boost-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-PATCHES=(
- "${FILESDIR}"/${P}-uninit.patch
-)
-
-DOCS=( doc )
-
-# uses modified version of catch.hpp, doesn't work with upstream catch2
-
-src_configure() {
- local mycmakeargs=(
- -DJSONCONS_BUILD_TESTS=$(usex test)
- )
- cmake_src_configure
-}