Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/mosquitto/
Date: Thu, 28 Mar 2019 23:12:54
Message-Id: 1553814755.b544f1de171519fa30bb99f5a5d266f123307ac9.monsieurp@gentoo
1 commit: b544f1de171519fa30bb99f5a5d266f123307ac9
2 Author: Stijn Tintel <stijn <AT> linux-ipv6 <DOT> be>
3 AuthorDate: Wed Mar 27 17:54:31 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 28 23:12:35 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b544f1de
7
8 app-misc/mosquitto: LibreSSL support.
9
10 Mosquitto supports LibreSSL since version 1.5.5.
11
12 Package-Manager: Portage-2.3.62, Repoman-2.3.11
13 Signed-off-by: Stijn Tintel <stijn <AT> linux-ipv6.be>
14 Closes: https://github.com/gentoo/gentoo/pull/11519
15 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
16
17 app-misc/mosquitto/mosquitto-1.5.6.ebuild | 12 +++++++++---
18 1 file changed, 9 insertions(+), 3 deletions(-)
19
20 diff --git a/app-misc/mosquitto/mosquitto-1.5.6.ebuild b/app-misc/mosquitto/mosquitto-1.5.6.ebuild
21 index 2a915dd90e4..7b6a16c2daf 100644
22 --- a/app-misc/mosquitto/mosquitto-1.5.6.ebuild
23 +++ b/app-misc/mosquitto/mosquitto-1.5.6.ebuild
24 @@ -13,13 +13,19 @@ SRC_URI="https://mosquitto.org/files/source/${P}.tar.gz"
25 LICENSE="EPL-1.0"
26 SLOT="0"
27 KEYWORDS="amd64 arm x86"
28 -IUSE="bridge examples +persistence +srv ssl tcpd test websockets"
29 +IUSE="bridge examples libressl +persistence +srv ssl tcpd test websockets"
30
31 -REQUIRED_USE="test? ( bridge )"
32 +REQUIRED_USE="
33 + libressl? ( ssl )
34 + test? ( bridge )
35 +"
36
37 RDEPEND="tcpd? ( sys-apps/tcp-wrappers )
38 srv? ( net-dns/c-ares )
39 - ssl? ( dev-libs/openssl:0= )"
40 + ssl? (
41 + !libressl? ( dev-libs/openssl:0= )
42 + libressl? ( dev-libs/libressl:0= )
43 + )"
44 DEPEND="${RDEPEND}
45 ${PYTHON_DEPS}
46 websockets? ( net-libs/libwebsockets )"