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 879FA138331 for ; Mon, 12 Mar 2018 17:08:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E30E7E0918; Mon, 12 Mar 2018 17:08:02 +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 C470CE0918 for ; Mon, 12 Mar 2018 17:08:02 +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 E1229335C50 for ; Mon, 12 Mar 2018 17:08:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1CE1B244 for ; Mon, 12 Mar 2018 17:08:00 +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: <1520874473.b0b200c760f3de118621be62ecf7b673fca2c583.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgit2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgit2/libgit2-9999.ebuild X-VCS-Directories: dev-libs/libgit2/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b0b200c760f3de118621be62ecf7b673fca2c583 X-VCS-Branch: master Date: Mon, 12 Mar 2018 17:08:00 +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-Archives-Salt: c022a9ae-8d2b-487b-8e46-a4181388be7b X-Archives-Hash: 71e9623c0b8499309880b4e3e983873c commit: b0b200c760f3de118621be62ecf7b673fca2c583 Author: Michał Górny gentoo org> AuthorDate: Mon Mar 12 16:26:40 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Mar 12 17:07:53 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0b200c7 dev-libs/libgit2: Bump to EAPI=6, modernize dev-libs/libgit2/libgit2-9999.ebuild | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/dev-libs/libgit2/libgit2-9999.ebuild b/dev-libs/libgit2/libgit2-9999.ebuild index 899540f73af..19fc4bd0b35 100644 --- a/dev-libs/libgit2/libgit2-9999.ebuild +++ b/dev-libs/libgit2/libgit2-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -inherit cmake-utils multilib +inherit cmake-utils if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" @@ -21,8 +21,8 @@ SLOT="0/26" IUSE="examples gssapi libressl +ssh test +threads trace" RDEPEND=" - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) sys-libs/zlib net-libs/http-parser:= gssapi? ( virtual/krb5 ) @@ -44,11 +44,11 @@ src_prepare() { src_configure() { local mycmakeargs=( -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" - $(cmake-utils_use_build test CLAR) - $(cmake-utils_use_enable trace TRACE) - $(cmake-utils_use_use gssapi GSSAPI) - $(cmake-utils_use_use ssh SSH) - $(cmake-utils_use threads THREADSAFE) + -DBUILD_CLAR=$(usex test) + -DENABLE_TRACE=$(usex trace) + -DUSE_GSSAPI=$(usex gssapi) + -DUSE_SSH=$(usex ssh) + -DTHREADSAFE=$(usex threads) ) cmake-utils_src_configure } @@ -68,7 +68,7 @@ src_install() { cmake-utils_src_install if use examples ; then - egit_clean examples + find examples -name '.gitignore' -delete || die dodoc -r examples docompress -x /usr/share/doc/${PF}/examples fi