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 33A8E1382C5 for ; Sat, 6 Mar 2021 18:19:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 065C2E0858; Sat, 6 Mar 2021 18:19:15 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E1664E0858 for ; Sat, 6 Mar 2021 18:19:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 CE952335D32 for ; Sat, 6 Mar 2021 18:19:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C69E2A9 for ; Sat, 6 Mar 2021 18:19:12 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1615054468.d7d728e021f12e38e7f6dac0cd44e00235c75bfe.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/uriparser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/uriparser/uriparser-0.9.4.ebuild X-VCS-Directories: dev-libs/uriparser/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: d7d728e021f12e38e7f6dac0cd44e00235c75bfe X-VCS-Branch: master Date: Sat, 6 Mar 2021 18:19:12 +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: 852c8d84-d078-460c-96db-7598f6e07d19 X-Archives-Hash: 85d00746816e3980b4777b019f21e632 commit: d7d728e021f12e38e7f6dac0cd44e00235c75bfe Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 28 16:02:39 2021 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sat Mar 6 18:14:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7d728e0 dev-libs/uriparser: Fix EAPI-7 bump BDEPENDs, use cmake.eclass Fix DESCRIPTION BUILD_SHARED_LIBS=ON is default Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> Signed-off-by: Sebastian Pipping gentoo.org> dev-libs/uriparser/uriparser-0.9.4.ebuild | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/dev-libs/uriparser/uriparser-0.9.4.ebuild b/dev-libs/uriparser/uriparser-0.9.4.ebuild index d814ac60e35..5eefe6b42f0 100644 --- a/dev-libs/uriparser/uriparser-0.9.4.ebuild +++ b/dev-libs/uriparser/uriparser-0.9.4.ebuild @@ -3,9 +3,9 @@ EAPI=7 -inherit cmake-utils +inherit cmake -DESCRIPTION="Uriparser is a strictly RFC 3986 compliant URI parsing library in C" +DESCRIPTION="Strictly RFC 3986 compliant URI parsing library in C" HOMEPAGE="https://uriparser.github.io/" SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.bz2" @@ -14,31 +14,35 @@ SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" IUSE="doc qt5 test unicode" -RDEPEND="" -DEPEND="virtual/pkgconfig - doc? ( >=app-doc/doxygen-1.5.8 - qt5? ( dev-qt/qthelp:5 ) ) - test? ( >=dev-cpp/gtest-1.8.1 )" - REQUIRED_USE="test? ( unicode )" RESTRICT="!test? ( test )" +DEPEND=" + test? ( >=dev-cpp/gtest-1.8.1 ) +" +BDEPEND=" + virtual/pkgconfig + doc? ( + >=app-doc/doxygen-1.5.8 + qt5? ( dev-qt/qthelp:5 ) + ) +" + DOCS=( AUTHORS ChangeLog THANKS ) src_configure() { local mycmakeargs=( - -DBUILD_SHARED_LIBS=ON -DURIPARSER_BUILD_CHAR=ON -DURIPARSER_BUILD_DOCS=$(usex doc ON OFF) -DURIPARSER_BUILD_TESTS=$(usex test ON OFF) -DURIPARSER_BUILD_TOOLS=ON -DURIPARSER_BUILD_WCHAR_T=$(usex unicode ON OFF) ) - cmake-utils_src_configure + cmake_src_configure } src_install() { - cmake-utils_src_install + cmake_src_install if use doc && use qt5; then dodoc "${BUILD_DIR}"/doc/*.qch