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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 80CC91382C5 for ; Sun, 14 Feb 2021 22:06:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B32A8E09CA; Sun, 14 Feb 2021 22:06:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 974C7E09CA for ; Sun, 14 Feb 2021 22:06:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F5C133FE49 for ; Sun, 14 Feb 2021 22:06:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C91F49 for ; Sun, 14 Feb 2021 22:06:43 +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: <1613340376.ef833d3bff80f2cd1ea65771fbba31cee6084acf.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-r1.ebuild dev-libs/rapidjson/rapidjson-1.1.0.ebuild X-VCS-Directories: dev-libs/rapidjson/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ef833d3bff80f2cd1ea65771fbba31cee6084acf X-VCS-Branch: master Date: Sun, 14 Feb 2021 22:06:43 +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: dab2231f-aaeb-49ab-843d-b3a7fa7ca100 X-Archives-Hash: 2dd9711f567ce3f4789af32b34c0fdb7 commit: ef833d3bff80f2cd1ea65771fbba31cee6084acf Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 14 22:06:16 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 14 22:06:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef833d3b dev-libs/rapidjson: Drop 1.1.0 and 1.1.0-r1 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/rapidjson/rapidjson-1.1.0-r1.ebuild | 52 ---------------------------- dev-libs/rapidjson/rapidjson-1.1.0.ebuild | 41 ---------------------- 2 files changed, 93 deletions(-) diff --git a/dev-libs/rapidjson/rapidjson-1.1.0-r1.ebuild b/dev-libs/rapidjson/rapidjson-1.1.0-r1.ebuild deleted file mode 100644 index 89b31664240..00000000000 --- a/dev-libs/rapidjson/rapidjson-1.1.0-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="A fast JSON parser/generator for C++ with both SAX/DOM style API" -HOMEPAGE="http://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 x86" - S="${WORKDIR}/rapidjson-${PV}" -fi - -DEPEND=" - doc? ( app-doc/doxygen ) - test? ( - dev-cpp/gtest - dev-util/valgrind - )" -RDEPEND="" - -PATCHES=( - "${FILESDIR}/${P}-gcc-7.patch" -) - -src_prepare() { - cmake-utils_src_prepare - - sed -i -e 's|-Werror||g' CMakeLists.txt || die - sed -i -e 's|-Werror||g' example/CMakeLists.txt || die -} - -src_configure() { - local mycmakeargs=( - -DRAPIDJSON_BUILD_DOC=$(usex doc) - -DRAPIDJSON_BUILD_EXAMPLES=$(usex examples) - -DRAPIDJSON_BUILD_TESTS=$(usex test) - -DRAPIDJSON_BUILD_THIRDPARTY_GTEST=OFF - ) - cmake-utils_src_configure -} diff --git a/dev-libs/rapidjson/rapidjson-1.1.0.ebuild b/dev-libs/rapidjson/rapidjson-1.1.0.ebuild deleted file mode 100644 index ca44afce719..00000000000 --- a/dev-libs/rapidjson/rapidjson-1.1.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="A fast JSON parser/generator for C++ with both SAX/DOM style API" -HOMEPAGE="http://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 ~x86" - S="${WORKDIR}/rapidjson-${PV}" -fi - -DEPEND=" - doc? ( app-doc/doxygen ) - test? ( - dev-cpp/gtest - dev-util/valgrind - )" -RDEPEND="" - -src_configure() { - local mycmakeargs=( - -DRAPIDJSON_BUILD_DOC=$(usex doc) - -DRAPIDJSON_BUILD_EXAMPLES=$(usex examples) - -DRAPIDJSON_BUILD_TESTS=$(usex test) - -DRAPIDJSON_BUILD_THIRDPARTY_GTEST=OFF - ) - cmake-utils_src_configure -}