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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3C37E158087 for ; Fri, 12 Nov 2021 22:51:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CB4AE0A98; Fri, 12 Nov 2021 22:51:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DDC512BC013 for ; Fri, 12 Nov 2021 22:51:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7C2F5342D4E for ; Fri, 12 Nov 2021 22:51:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8DE11B8 for ; Fri, 12 Nov 2021 22:51:39 +0000 (UTC) From: "Andrey Utkin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Utkin" Message-ID: <1636757340.c15710fb4ccd1258f228563f46f0c5754bc51fdf.andrey_utkin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libstrophe/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libstrophe/libstrophe-0.11.0.ebuild X-VCS-Directories: dev-libs/libstrophe/ X-VCS-Committer: andrey_utkin X-VCS-Committer-Name: Andrey Utkin X-VCS-Revision: c15710fb4ccd1258f228563f46f0c5754bc51fdf X-VCS-Branch: master Date: Fri, 12 Nov 2021 22:51:39 +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: 3330f4de-03fe-419e-a677-be9e5fb5a98d X-Archives-Hash: 1a142d8b42cdfefec552f879ffc28c91 commit: c15710fb4ccd1258f228563f46f0c5754bc51fdf Author: Andrey Utkin gentoo org> AuthorDate: Fri Nov 12 22:40:28 2021 +0000 Commit: Andrey Utkin gentoo org> CommitDate: Fri Nov 12 22:49:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c15710fb dev-libs/libstrophe: 0.11.0: add gnutls USE flag This release allows to choose gnutls as an alternative to openssl. Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Andrey Utkin gentoo.org> dev-libs/libstrophe/libstrophe-0.11.0.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-libs/libstrophe/libstrophe-0.11.0.ebuild b/dev-libs/libstrophe/libstrophe-0.11.0.ebuild index bae3fd596e3..4a33b68fac1 100644 --- a/dev-libs/libstrophe/libstrophe-0.11.0.ebuild +++ b/dev-libs/libstrophe/libstrophe-0.11.0.ebuild @@ -8,11 +8,13 @@ SRC_URI="https://github.com/strophe/${PN}/releases/download/${PV}/${P}.tar.gz" LICENSE="|| ( MIT GPL-3 )" SLOT="0" KEYWORDS="~amd64" -IUSE="doc expat" +IUSE="doc expat gnutls" RDEPEND=" expat? ( dev-libs/expat ) !expat? ( dev-libs/libxml2:2 ) + gnutls? ( net-libs/gnutls:0= ) + !gnutls? ( dev-libs/openssl:0= ) dev-libs/openssl:0= " DEPEND="${RDEPEND} @@ -26,6 +28,7 @@ src_configure() { local myeconf=( --enable-tls $(use_with !expat libxml2) + $(use_with gnutls) ) econf "${myeconf[@]}" }