From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1480063-garchives=archives.gentoo.org@lists.gentoo.org> 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9439015800F for <garchives@archives.gentoo.org>; Tue, 24 Jan 2023 11:01:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03B6EE07C7; Tue, 24 Jan 2023 11:01:03 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E1C1AE07C7 for <gentoo-commits@lists.gentoo.org>; Tue, 24 Jan 2023 11:01:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 052DD340E2F for <gentoo-commits@lists.gentoo.org>; Tue, 24 Jan 2023 11:01:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A38FE83C for <gentoo-commits@lists.gentoo.org>; Tue, 24 Jan 2023 11:00:59 +0000 (UTC) From: "Marek Szuba" <marecki@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" <marecki@gentoo.org> Message-ID: <1674558036.4d9c12bc43695bf3cafea7131254c448478469c5.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/gunicorn/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/gunicorn/gunicorn-20.1.0-r1.ebuild X-VCS-Directories: www-servers/gunicorn/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 4d9c12bc43695bf3cafea7131254c448478469c5 X-VCS-Branch: master Date: Tue, 24 Jan 2023 11:00:59 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8be43a2b-8c08-4655-9117-eb57fc0fc918 X-Archives-Hash: bf2041e67fdb0d8e03072eeeb6efdff3 commit: 4d9c12bc43695bf3cafea7131254c448478469c5 Author: Marek Szuba <marecki <AT> gentoo <DOT> org> AuthorDate: Tue Jan 24 09:26:27 2023 +0000 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org> CommitDate: Tue Jan 24 11:00:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d9c12bc www-servers/gunicorn: remove mention of dev-python/eventlet The package in question has been removed from the tree. This probably should have been removed then but since it was only an optional dependency of GUnicorn, I guess it got missed. Closes: https://bugs.gentoo.org/891875 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org> www-servers/gunicorn/gunicorn-20.1.0-r1.ebuild | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/www-servers/gunicorn/gunicorn-20.1.0-r1.ebuild b/www-servers/gunicorn/gunicorn-20.1.0-r1.ebuild index 38ba15646c58..59d1f339a4ba 100644 --- a/www-servers/gunicorn/gunicorn-20.1.0-r1.ebuild +++ b/www-servers/gunicorn/gunicorn-20.1.0-r1.ebuild @@ -6,7 +6,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( pypy3 python3_{9..11} ) -inherit distutils-r1 optfeature +inherit distutils-r1 DESCRIPTION="A WSGI HTTP Server for UNIX" HOMEPAGE=" @@ -48,8 +48,3 @@ python_install_all() { distutils-r1_python_install_all } - -pkg_postinst() { - optfeature_header "Alternative worker types need additional packages to be installed:" - optfeature "eventlet-based greenlets workers" "dev-python/eventlet" -}