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 3D1B8138335 for ; Wed, 10 Apr 2019 15:07:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60B2FE099F; Wed, 10 Apr 2019 15:07:37 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 3B183E0996 for ; Wed, 10 Apr 2019 15:07:37 +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 EB59D340A98 for ; Wed, 10 Apr 2019 15:07:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E04F5AF for ; Wed, 10 Apr 2019 15:07:33 +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: <1554908841.1e4ca566e3d2368f98b1b0753805a0b84e54d30d.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: 1e4ca566e3d2368f98b1b0753805a0b84e54d30d X-VCS-Branch: master Date: Wed, 10 Apr 2019 15:07:33 +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: 8e6dbe95-1ed5-43c0-81bc-bbf41823e712 X-Archives-Hash: ca92901429e285e3eb96d05aad51c105 commit: 1e4ca566e3d2368f98b1b0753805a0b84e54d30d Author: Michał Górny gentoo org> AuthorDate: Wed Apr 10 14:31:24 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Apr 10 15:07:21 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e4ca566 dev-libs/libgit2: Update live ebuild Signed-off-by: Michał Górny gentoo.org> dev-libs/libgit2/libgit2-9999.ebuild | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/dev-libs/libgit2/libgit2-9999.ebuild b/dev-libs/libgit2/libgit2-9999.ebuild index d10065358a4..bfad5c3fdc1 100644 --- a/dev-libs/libgit2/libgit2-9999.ebuild +++ b/dev-libs/libgit2/libgit2-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -18,18 +18,15 @@ DESCRIPTION="A linkable library for Git" HOMEPAGE="https://libgit2.github.com/" LICENSE="GPL-2-with-linking-exception" -SLOT="0/27" -IUSE="+curl examples gssapi libressl +ssh test +threads trace" +SLOT="0/28" +IUSE="examples gssapi libressl +ssh test +threads trace" +RESTRICT="!test? ( test )" RDEPEND=" !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) sys-libs/zlib net-libs/http-parser:= - curl? ( - !libressl? ( net-misc/curl:=[curl_ssl_openssl(-)] ) - libressl? ( net-misc/curl:=[curl_ssl_libressl(-)] ) - ) gssapi? ( virtual/krb5 ) ssh? ( net-libs/libssh2 ) " @@ -38,15 +35,6 @@ DEPEND="${RDEPEND} virtual/pkgconfig " -DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md ) - -src_prepare() { - # skip online tests - sed -i '/libgit2_clar/s/-ionline/-xonline/' tests/CMakeLists.txt || die - - cmake-utils_src_prepare -} - src_configure() { local mycmakeargs=( -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" @@ -55,7 +43,6 @@ src_configure() { -DUSE_GSSAPI=$(usex gssapi) -DUSE_SSH=$(usex ssh) -DTHREADSAFE=$(usex threads) - -DCURL=$(usex curl) ) cmake-utils_src_configure } @@ -67,12 +54,13 @@ src_test() { ewarn "Skipping tests: non-root privileges are required for all tests to pass" else local TEST_VERBOSE=1 - cmake-utils_src_test + cmake-utils_src_test -R offline fi } src_install() { cmake-utils_src_install + dodoc docs/*.{md,txt} if use examples ; then find examples -name '.gitignore' -delete || die