From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1009012-garchives=archives.gentoo.org@lists.gentoo.org> 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 6E4F01382C5 for <garchives@archives.gentoo.org>; 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 B71B8E0917; 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 96BAFE0917 for <gentoo-commits@lists.gentoo.org>; Mon, 12 Mar 2018 17:08:02 +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 A2C30335C52 for <gentoo-commits@lists.gentoo.org>; Mon, 12 Mar 2018 17:08:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3142624F for <gentoo-commits@lists.gentoo.org>; Mon, 12 Mar 2018 17:08:00 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> 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" <mgorny@gentoo.org> Message-ID: <1520874474.66e26409bfde3ed83954d3f6513045801bee6cf7.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 dev-libs/libgit2/metadata.xml X-VCS-Directories: dev-libs/libgit2/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 66e26409bfde3ed83954d3f6513045801bee6cf7 X-VCS-Branch: master Date: Mon, 12 Mar 2018 17:08:00 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 82c0716b-8108-4a6c-9d0c-4f439c75cff1 X-Archives-Hash: da93baec9a5171b2365359b50bac63f2 commit: 66e26409bfde3ed83954d3f6513045801bee6cf7 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Mon Mar 12 16:32:49 2018 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Mon Mar 12 17:07:54 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66e26409 dev-libs/libgit2: Add missing flag+dependency on net-misc/curl dev-libs/libgit2/libgit2-9999.ebuild | 7 ++++++- dev-libs/libgit2/metadata.xml | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-libs/libgit2/libgit2-9999.ebuild b/dev-libs/libgit2/libgit2-9999.ebuild index 19fc4bd0b35..549b491f613 100644 --- a/dev-libs/libgit2/libgit2-9999.ebuild +++ b/dev-libs/libgit2/libgit2-9999.ebuild @@ -18,13 +18,17 @@ HOMEPAGE="https://libgit2.github.com/" LICENSE="GPL-2-with-linking-exception" SLOT="0/26" -IUSE="examples gssapi libressl +ssh test +threads trace" +IUSE="+curl examples gssapi libressl +ssh test +threads trace" 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 ) " @@ -49,6 +53,7 @@ src_configure() { -DUSE_GSSAPI=$(usex gssapi) -DUSE_SSH=$(usex ssh) -DTHREADSAFE=$(usex threads) + -DCURL=$(usex curl) ) cmake-utils_src_configure } diff --git a/dev-libs/libgit2/metadata.xml b/dev-libs/libgit2/metadata.xml index 341b4d4cf6d..e090ecb97fe 100644 --- a/dev-libs/libgit2/metadata.xml +++ b/dev-libs/libgit2/metadata.xml @@ -15,6 +15,8 @@ speed custom Git applications in any language which supports C bindings. </longdescription> <use> + <flag name="curl">Use <pkg>net-misc/curl</pkg> for HTTP support + (otherwise, limited built-in implementation will be used)</flag> <flag name="gssapi">Enable GSSAPI support for SPNEGO auth</flag> <flag name="ssh">Enable SSH transport support</flag> <flag name="trace">Enable tracing support</flag>