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 E42D0138359 for ; Thu, 19 Nov 2020 16:16:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1179FE077F; Thu, 19 Nov 2020 16:16:25 +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 EB978E077F for ; Thu, 19 Nov 2020 16:16:24 +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 D0270341106 for ; Thu, 19 Nov 2020 16:16:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 591FC451 for ; Thu, 19 Nov 2020 16:16:22 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1605802523.5e91db62387dad0f1fd97d4892aff39a40653fa0.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/davix/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/davix/davix-0.7.6.ebuild X-VCS-Directories: net-libs/davix/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 5e91db62387dad0f1fd97d4892aff39a40653fa0 X-VCS-Branch: master Date: Thu, 19 Nov 2020 16:16:22 +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: 5d9ff89c-e6a9-43a9-a792-eba517665565 X-Archives-Hash: 9068deca252631fd2663627f6942182e commit: 5e91db62387dad0f1fd97d4892aff39a40653fa0 Author: Guilherme Amadio gentoo org> AuthorDate: Thu Nov 19 16:15:23 2020 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Thu Nov 19 16:15:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e91db62 net-libs/davix: move to cmake.eclass Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Guilherme Amadio gentoo.org> net-libs/davix/davix-0.7.6.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/net-libs/davix/davix-0.7.6.ebuild b/net-libs/davix/davix-0.7.6.ebuild index 7357fa79011..cd414ce3d7e 100644 --- a/net-libs/davix/davix-0.7.6.ebuild +++ b/net-libs/davix/davix-0.7.6.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="High-performance file management over WebDAV/HTTP" HOMEPAGE="https://dmc.web.cern.ch/projects/davix" @@ -35,7 +35,7 @@ RDEPEND="${CDEPEND}" REQUIRED_USE="test? ( tools )" src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare for x in doc test; do if ! use $x; then @@ -58,18 +58,18 @@ src_configure() { -DSYSCONF_INSTALL_DIR="${EPREFIX}/etc" -DBUILD_TESTING=$(usex test) ) - cmake-utils_src_configure + cmake_src_configure } src_compile() { - cmake-utils_src_compile + cmake_src_compile if use doc; then - cmake-utils_src_compile doc + cmake_src_compile doc fi } src_install() { - cmake-utils_src_install + cmake_src_install if ! use tools; then rm -rf "${ED}/usr/share/man/man1"