summaryrefslogtreecommitdiff
path: root/dev-cpp/jsoncons
diff options
context:
space:
mode:
authorAlexey Sokolov <alexey+gentoo@asokolov.org>2025-09-29 19:14:04 +0100
committerSam James <sam@gentoo.org>2025-10-03 01:34:09 +0100
commitd5f0be2ee2777ab330a39d6bd00d1c632edafcd3 (patch)
treee45dd3bf78c312f36899fb8478e21159ef10a753 /dev-cpp/jsoncons
parenta191ea7e01e7853bb200aa6c87071ee0e47f8f8d (diff)
downloadgentoo-d5f0be2ee2777ab330a39d6bd00d1c632edafcd3.tar.gz
gentoo-d5f0be2ee2777ab330a39d6bd00d1c632edafcd3.tar.bz2
gentoo-d5f0be2ee2777ab330a39d6bd00d1c632edafcd3.zip
dev-cpp/jsoncons: drop 1.4.1
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org> Part-of: https://github.com/gentoo/gentoo/pull/43986 Closes: https://github.com/gentoo/gentoo/pull/43986 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/jsoncons')
-rw-r--r--dev-cpp/jsoncons/Manifest1
-rw-r--r--dev-cpp/jsoncons/jsoncons-1.4.1.ebuild27
2 files changed, 0 insertions, 28 deletions
diff --git a/dev-cpp/jsoncons/Manifest b/dev-cpp/jsoncons/Manifest
index 2a5bf251cd3d..d733d9181c45 100644
--- a/dev-cpp/jsoncons/Manifest
+++ b/dev-cpp/jsoncons/Manifest
@@ -1,2 +1 @@
-DIST jsoncons-1.4.1.tar.gz 1538291 BLAKE2B 39a74727cad14592093a8a7046be9f3113d5e27013b5fced8792c5315fea0d8ec8ab511f84aa9ed7dfb97366d7cb3d9d0b3fb65844a6d1978052f67f973f426a SHA512 0d4344256fd0f8b9534f652f66330bea50cd838820d2ca5c114f7b161c218ce87379c56c1513bc11a60d362b0b8efc19ef7e81bb23cff04fc10c7cf5a5d58a52
DIST jsoncons-1.4.2.tar.gz 1538277 BLAKE2B 97826a3b7b4c872767a2c1bda485bfb20f3183dcbeaa1f2ae2f4e8906043fcb45054964f843b99acb67afd0a8070098887df9be0a672e7784b2494ebc4c41e40 SHA512 5c28a7450e2d8490de19d8a4475406addcc7134ec2a379883c2b705fd7c9f53061eff3814526ed3967ebb5a9089e9a76a2a76b59288eadf7daf36fc1b216e062
diff --git a/dev-cpp/jsoncons/jsoncons-1.4.1.ebuild b/dev-cpp/jsoncons/jsoncons-1.4.1.ebuild
deleted file mode 100644
index 79fff7668853..000000000000
--- a/dev-cpp/jsoncons/jsoncons-1.4.1.ebuild
+++ /dev/null
@@ -1,27 +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 )"
-
-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
-}