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 6FB8E158087 for ; Sun, 24 Oct 2021 08:54:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 755E7E0866; Sun, 24 Oct 2021 08:54:49 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60291E0866 for ; Sun, 24 Oct 2021 08:54:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 25D5C34375B for ; Sun, 24 Oct 2021 08:54:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7BF9168 for ; Sun, 24 Oct 2021 08:54:46 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1635065654.9b917569c45be9820e11885aa563c430f84cedd2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/libjson-rpc-cpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-1.4.0.ebuild X-VCS-Directories: dev-cpp/libjson-rpc-cpp/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9b917569c45be9820e11885aa563c430f84cedd2 X-VCS-Branch: master Date: Sun, 24 Oct 2021 08:54:46 +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: 716b1f32-a95a-4a3f-a422-69e698e14a4b X-Archives-Hash: 25e721399e765c6e19f93854659d79c1 commit: 9b917569c45be9820e11885aa563c430f84cedd2 Author: Michał Górny gentoo org> AuthorDate: Sun Oct 24 08:54:09 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Oct 24 08:54:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b917569 dev-cpp/libjson-rpc-cpp: Remove broken doc support Closes: https://bugs.gentoo.org/819948 Signed-off-by: Michał Górny gentoo.org> dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-1.4.0.ebuild | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-1.4.0.ebuild b/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-1.4.0.ebuild index 02579592624..f1b78fc655f 100644 --- a/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-1.4.0.ebuild +++ b/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-1.4.0.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/cinemast/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0/1" KEYWORDS="~amd64 ~x86" -IUSE="doc +http-client +http-server redis-client redis-server +stubgen test" +IUSE="+http-client +http-server redis-client redis-server +stubgen test" RESTRICT="!test? ( test )" RDEPEND=" @@ -24,7 +24,6 @@ RDEPEND=" stubgen? ( dev-libs/argtable:= )" DEPEND="${RDEPEND}" BDEPEND=" - doc? ( app-doc/doxygen ) test? ( dev-cpp/catch:0 )" src_configure() { @@ -50,20 +49,8 @@ src_configure() { cmake_src_configure } -src_compile() { - cmake_src_compile - - use doc && emake -C "${BUILD_DIR}" doc -} - src_test() { # Tests fail randomly when run in parallel local MAKEOPTS=-j1 cmake_src_test } - -src_install() { - cmake_src_install - - use doc && dodoc -r "${BUILD_DIR}"/doc/html -}