Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/mosquitto/
Date: Wed, 01 Jul 2020 02:49:38
Message-Id: 1593571764.0a8337be6e3e94db1635ad42fdefc741bb14c416.mattst88@gentoo
1 commit: 0a8337be6e3e94db1635ad42fdefc741bb14c416
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 1 02:06:36 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 1 02:49:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a8337be
7
8 app-misc/mosquitto: Version bump to 1.6.10
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 app-misc/mosquitto/Manifest | 1 +
13 app-misc/mosquitto/mosquitto-1.6.10.ebuild | 114 +++++++++++++++++++++++++++++
14 2 files changed, 115 insertions(+)
15
16 diff --git a/app-misc/mosquitto/Manifest b/app-misc/mosquitto/Manifest
17 index 964e6a872bc..03eb2b2d7e9 100644
18 --- a/app-misc/mosquitto/Manifest
19 +++ b/app-misc/mosquitto/Manifest
20 @@ -1,2 +1,3 @@
21 +DIST mosquitto-1.6.10.tar.gz 613060 BLAKE2B 8c148479f79a1aa8a9abdb2bd386dbf9466f1afa41f4e0ed4d29a52adf7571ebca47231f32ec8cbf2760eb7a27bd6633985851fe4c8cb413572c32588a12097b SHA512 2050a7a7af864057a177728f1cab9f6db70d6d1ea609d90c637723c2c9cfc9716429739302abd6742bde932716fae340854fff35956693dfee4ef31ce7b04a25
22 DIST mosquitto-1.6.8.tar.gz 589873 BLAKE2B aa2e13397f7d4b6305af3180cd042cd143054e154cf8e6d93b05bc5a10d48419174711a1893fe60c1303a2f83cfbc5341cf03ec595e3640f503a2407e869491b SHA512 c15897df4e0979ee29a1e67cc671f56db600a078e9eb0bea376248b3f53b13ceed36616ad3678e2c9e07d6834a6d75e4efca2c40086069c1546e0223be04c071
23 DIST mosquitto-1.6.9.tar.gz 610934 BLAKE2B 59d126a2b26be895f078be0c0dcf3513e56fc135dc956d9361ee191bd7ad6972b4692cd1824ad7a4e86a982df70c1e198e937f9ab23bf778069690098f87c815 SHA512 f78228a1e8305e4d89b34250981ed2c5fe5317636003636dc90f6fa2b1e3ca3c8fadb705ee7301f5252456cb093a6547bd46a255ca3d9fb5cdced697738d6eb7
24
25 diff --git a/app-misc/mosquitto/mosquitto-1.6.10.ebuild b/app-misc/mosquitto/mosquitto-1.6.10.ebuild
26 new file mode 100644
27 index 00000000000..4b5abada49c
28 --- /dev/null
29 +++ b/app-misc/mosquitto/mosquitto-1.6.10.ebuild
30 @@ -0,0 +1,114 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=( python3_{6,7,8} )
36 +
37 +inherit python-any-r1 systemd toolchain-funcs
38 +
39 +DESCRIPTION="An Open Source MQTT v3 Broker"
40 +HOMEPAGE="https://mosquitto.org/ https://github.com/eclipse/mosquitto"
41 +SRC_URI="https://mosquitto.org/files/source/${P}.tar.gz"
42 +
43 +LICENSE="EPL-1.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~x86"
46 +IUSE="bridge examples libressl +persistence +srv ssl tcpd test websockets"
47 +RESTRICT="!test? ( test )"
48 +
49 +REQUIRED_USE="test? ( bridge )"
50 +
51 +RDEPEND="
52 + acct-user/mosquitto
53 + acct-group/mosquitto
54 + srv? ( net-dns/c-ares:= )
55 + ssl? (
56 + !libressl? ( dev-libs/openssl:0= )
57 + libressl? ( dev-libs/libressl:0= )
58 + )
59 + tcpd? ( sys-apps/tcp-wrappers )"
60 +
61 +DEPEND="${PYTHON_DEPS}
62 + ${RDEPEND}
63 + test? ( dev-util/cunit )
64 + websockets? ( net-libs/libwebsockets[lejp] )"
65 +
66 +_emake() {
67 + local LIBDIR=$(get_libdir)
68 + emake \
69 + CC="$(tc-getCC)" \
70 + CLIENT_LDFLAGS="${LDFLAGS}" \
71 + LIB_SUFFIX="${LIBDIR:3}" \
72 + WITH_BRIDGE="$(usex bridge)" \
73 + WITH_PERSISTENCE="$(usex persistence)" \
74 + WITH_SRV="$(usex srv)" \
75 + WITH_TLS="$(usex ssl)" \
76 + WITH_WEBSOCKETS="$(usex websockets)" \
77 + WITH_WRAP="$(usex tcpd)" \
78 + "$@"
79 +}
80 +
81 +src_prepare() {
82 + default
83 + if use persistence; then
84 + sed -i -e "/^#autosave_interval/s|^#||" \
85 + -e "s|^#persistence false$|persistence true|" \
86 + -e "/^#persistence_file/s|^#||" \
87 + -e "s|#persistence_location|persistence_location /var/lib/mosquitto/|" \
88 + mosquitto.conf || die
89 + fi
90 +
91 + # Remove prestripping
92 + sed -i -e 's/-s --strip-program=${CROSS_COMPILE}${STRIP}//'\
93 + client/Makefile lib/cpp/Makefile src/Makefile lib/Makefile || die
94 +
95 + # Remove failing tests
96 + sed -i -e '/02-subpub-qos1-bad-pubcomp.py/d' \
97 + -e '/02-subpub-qos1-bad-pubrec.py/d' \
98 + -e '/02-subpub-qos2-bad-puback-1.py/d' \
99 + -e '/02-subpub-qos2-bad-puback-2.py/d' \
100 + -e '/02-subpub-qos2-bad-pubcomp.py/d' \
101 + test/broker/Makefile || die
102 + sed -i -e '/02-subscribe-qos1-async2.test/d' \
103 + test/lib/Makefile || die
104 +
105 + python_setup
106 + python_fix_shebang test
107 +}
108 +
109 +src_compile() {
110 + _emake
111 +}
112 +
113 +src_test() {
114 + _emake test
115 +}
116 +
117 +src_install() {
118 + _emake DESTDIR="${D}" prefix=/usr install
119 + keepdir /var/lib/mosquitto
120 + fowners mosquitto:mosquitto /var/lib/mosquitto
121 + dodoc readme.md CONTRIBUTING.md ChangeLog.txt
122 + doinitd "${FILESDIR}"/mosquitto
123 + insinto /etc/mosquitto
124 + doins mosquitto.conf
125 + systemd_dounit "${FILESDIR}/mosquitto.service"
126 +
127 + if use examples; then
128 + docompress -x "/usr/share/doc/${PF}/examples"
129 + dodoc -r examples
130 + fi
131 +}
132 +
133 +pkg_postinst() {
134 + if [[ -z "${REPLACING_VERSIONS}" ]]; then
135 + elog "The Python module has been moved out of mosquitto."
136 + elog "See https://mosquitto.org/documentation/python/"
137 + else
138 + elog "To start the mosquitto daemon at boot, add it to the default runlevel with:"
139 + elog ""
140 + elog " rc-update add mosquitto default"
141 + elog "or"
142 + elog " systemctl enable mosquitto"
143 + fi
144 +}