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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C8BEA138334 for ; Wed, 2 Jan 2019 11:39:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DF94E0B06; Wed, 2 Jan 2019 11:39:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D5844E0B06 for ; Wed, 2 Jan 2019 11:39:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B5406335CFB for ; Wed, 2 Jan 2019 11:39:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86740505 for ; Wed, 2 Jan 2019 11:39:33 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1546429164.b7432a0728bf9fef07cfae4f6b2e53d2e8a4fc79.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/uwsgi/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/uwsgi/uwsgi-2.0.17.1-r1.ebuild X-VCS-Directories: www-servers/uwsgi/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: b7432a0728bf9fef07cfae4f6b2e53d2e8a4fc79 X-VCS-Branch: master Date: Wed, 2 Jan 2019 11:39:33 +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: f3fcdef7-4876-491a-89c0-6b6f1218e19f X-Archives-Hash: 39d567181383aacf2ad7e2c8bcb9b7d6 commit: b7432a0728bf9fef07cfae4f6b2e53d2e8a4fc79 Author: Justin Lecher gentoo org> AuthorDate: Wed Jan 2 10:50:58 2019 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Jan 2 11:39:24 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7432a07 www-servers/uwsgi: add missing slot operator Package-Manager: Portage-2.3.53, Repoman-2.3.12 Signed-off-by: Justin Lecher gentoo.org> www-servers/uwsgi/uwsgi-2.0.17.1-r1.ebuild | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/www-servers/uwsgi/uwsgi-2.0.17.1-r1.ebuild b/www-servers/uwsgi/uwsgi-2.0.17.1-r1.ebuild index 248929d1ca5..e9923f5a2eb 100644 --- a/www-servers/uwsgi/uwsgi-2.0.17.1-r1.ebuild +++ b/www-servers/uwsgi/uwsgi-2.0.17.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -79,17 +79,22 @@ REQUIRED_USE="|| ( ${LANG_SUPPORT_SIMPLE[@]} ${LANG_SUPPORT_EXTENDED[@]} ) # 2. General features # 3. Plugins # 4. Language/app support -CDEPEND="sys-libs/zlib +CDEPEND=" + sys-libs/zlib caps? ( sys-libs/libcap ) - json? ( !yajl? ( dev-libs/jansson ) - yajl? ( dev-libs/yajl ) ) + json? ( + !yajl? ( dev-libs/jansson ) + yajl? ( dev-libs/yajl ) + ) pcre? ( dev-libs/libpcre:3 ) ssl? ( - !libressl? ( dev-libs/openssl:0 ) + !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl ) ) - xml? ( !expat? ( dev-libs/libxml2 ) - expat? ( dev-libs/expat ) ) + xml? ( + !expat? ( dev-libs/libxml2 ) + expat? ( dev-libs/expat ) + ) yaml? ( dev-libs/libyaml ) zeromq? ( net-libs/zeromq sys-apps/util-linux ) uwsgi_plugins_alarm_curl? ( net-misc/curl )