Gentoo Archives: gentoo-commits

From: Stefan Strogin <steils@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/grpc/
Date: Thu, 23 Apr 2020 16:27:31
Message-Id: 1587659178.3a308b5a0ea3154682dbc1e14f83bdd245ce75fe.steils@gentoo
1 commit: 3a308b5a0ea3154682dbc1e14f83bdd245ce75fe
2 Author: Stefan Strogin <steils <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 23 16:20:48 2020 +0000
4 Commit: Stefan Strogin <steils <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 23 16:26:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a308b5a
7
8 net-libs/grpc: add USE=libressl
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Stefan Strogin <steils <AT> gentoo.org>
12
13 net-libs/grpc/grpc-1.28.1.ebuild | 5 +++--
14 1 file changed, 3 insertions(+), 2 deletions(-)
15
16 diff --git a/net-libs/grpc/grpc-1.28.1.ebuild b/net-libs/grpc/grpc-1.28.1.ebuild
17 index 18c6fb37e09..ef8cbdbbb06 100644
18 --- a/net-libs/grpc/grpc-1.28.1.ebuild
19 +++ b/net-libs/grpc/grpc-1.28.1.ebuild
20 @@ -14,14 +14,15 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
21 LICENSE="Apache-2.0"
22 SLOT="0"
23 KEYWORDS="~amd64 ~ppc64 ~x86"
24 -IUSE="examples doc"
25 +IUSE="doc examples libressl"
26
27 DEPEND="
28 ~dev-cpp/abseil-cpp-20200225.1:=
29 - >=dev-libs/openssl-1.0.2:0=[-bindist]
30 >=dev-libs/protobuf-3.11.2:=
31 >=net-dns/c-ares-1.15.0:=
32 sys-libs/zlib:=
33 + !libressl? ( >=dev-libs/openssl-1.0.2:0=[-bindist] )
34 + libressl? ( dev-libs/libressl:0= )
35 "
36
37 RDEPEND="${DEPEND}"