Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/uwsgi/
Date: Wed, 02 Jan 2019 11:39:38
Message-Id: 1546429164.b7432a0728bf9fef07cfae4f6b2e53d2e8a4fc79.jlec@gentoo
1 commit: b7432a0728bf9fef07cfae4f6b2e53d2e8a4fc79
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 2 10:50:58 2019 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 2 11:39:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7432a07
7
8 www-servers/uwsgi: add missing slot operator
9
10 Package-Manager: Portage-2.3.53, Repoman-2.3.12
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 www-servers/uwsgi/uwsgi-2.0.17.1-r1.ebuild | 19 ++++++++++++-------
14 1 file changed, 12 insertions(+), 7 deletions(-)
15
16 diff --git a/www-servers/uwsgi/uwsgi-2.0.17.1-r1.ebuild b/www-servers/uwsgi/uwsgi-2.0.17.1-r1.ebuild
17 index 248929d1ca5..e9923f5a2eb 100644
18 --- a/www-servers/uwsgi/uwsgi-2.0.17.1-r1.ebuild
19 +++ b/www-servers/uwsgi/uwsgi-2.0.17.1-r1.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2018 Gentoo Authors
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=6
26 @@ -79,17 +79,22 @@ REQUIRED_USE="|| ( ${LANG_SUPPORT_SIMPLE[@]} ${LANG_SUPPORT_EXTENDED[@]} )
27 # 2. General features
28 # 3. Plugins
29 # 4. Language/app support
30 -CDEPEND="sys-libs/zlib
31 +CDEPEND="
32 + sys-libs/zlib
33 caps? ( sys-libs/libcap )
34 - json? ( !yajl? ( dev-libs/jansson )
35 - yajl? ( dev-libs/yajl ) )
36 + json? (
37 + !yajl? ( dev-libs/jansson )
38 + yajl? ( dev-libs/yajl )
39 + )
40 pcre? ( dev-libs/libpcre:3 )
41 ssl? (
42 - !libressl? ( dev-libs/openssl:0 )
43 + !libressl? ( dev-libs/openssl:0= )
44 libressl? ( dev-libs/libressl )
45 )
46 - xml? ( !expat? ( dev-libs/libxml2 )
47 - expat? ( dev-libs/expat ) )
48 + xml? (
49 + !expat? ( dev-libs/libxml2 )
50 + expat? ( dev-libs/expat )
51 + )
52 yaml? ( dev-libs/libyaml )
53 zeromq? ( net-libs/zeromq sys-apps/util-linux )
54 uwsgi_plugins_alarm_curl? ( net-misc/curl )