From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CBC04158099 for ; Tue, 21 Nov 2023 22:36:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1FFE72BC03C; Tue, 21 Nov 2023 22:36:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3D992BC03C for ; Tue, 21 Nov 2023 22:36:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5BFD335D9E for ; Tue, 21 Nov 2023 22:36:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D887913B3 for ; Tue, 21 Nov 2023 22:36:15 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1700605197.7ac2555744e2c12ebe04137122da65c3cc55de58.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/rapidjson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/rapidjson/rapidjson-1.1.0-r3.ebuild X-VCS-Directories: dev-libs/rapidjson/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7ac2555744e2c12ebe04137122da65c3cc55de58 X-VCS-Branch: master Date: Tue, 21 Nov 2023 22:36:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6f07ded4-143a-47ab-af95-ca81102ff103 X-Archives-Hash: b968d155c91f86c5bcc723c616d03ebf commit: 7ac2555744e2c12ebe04137122da65c3cc55de58 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Nov 21 21:23:25 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Nov 21 22:19:57 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ac25557 dev-libs/rapidjson: drop 1.1.0-r3 Closes: https://bugs.gentoo.org/917390 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/rapidjson/rapidjson-1.1.0-r3.ebuild | 57 ---------------------------- 1 file changed, 57 deletions(-) diff --git a/dev-libs/rapidjson/rapidjson-1.1.0-r3.ebuild b/dev-libs/rapidjson/rapidjson-1.1.0-r3.ebuild deleted file mode 100644 index 73b3f54b7a78..000000000000 --- a/dev-libs/rapidjson/rapidjson-1.1.0-r3.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="A fast JSON parser/generator for C++ with both SAX/DOM style API" -HOMEPAGE="https://rapidjson.org/" - -LICENSE="MIT" -IUSE="doc examples test" -RESTRICT="!test? ( test )" -SLOT="0" - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/miloyip/rapidjson.git" - inherit git-r3 -else - SRC_URI="https://github.com/miloyip/rapidjson/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv sparc x86" - S="${WORKDIR}/rapidjson-${PV}" -fi - -DEPEND=" - doc? ( app-doc/doxygen ) - test? ( dev-cpp/gtest )" -RDEPEND="" - -PATCHES=( - "${FILESDIR}/${P}-gcc-7.patch" - "${FILESDIR}/${P}-system_gtest.patch" - "${FILESDIR}/${P}-valgrind_optional.patch" -) - -src_prepare() { - cmake_src_prepare - - sed -i -e 's| -march=native||g' CMakeLists.txt || die - sed -i -e 's| -Werror||g' CMakeLists.txt example/CMakeLists.txt test/unittest/CMakeLists.txt || die -} - -src_configure() { - local mycmakeargs=( - -DDOC_INSTALL_DIR="${EPREFIX}/usr/share/doc/${PF}" - -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" - -DRAPIDJSON_BUILD_CXX11=OFF # latest gtest requires C++14 or later - -DRAPIDJSON_BUILD_DOC=$(usex doc) - -DRAPIDJSON_BUILD_EXAMPLES=$(usex examples) - -DRAPIDJSON_BUILD_TESTS=$(usex test) - -DRAPIDJSON_BUILD_THIRDPARTY_GTEST=OFF - ) - use test && mycmakeargs+=( - -DVALGRIND_EXECUTABLE= - ) - cmake_src_configure -}