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.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 A8F4E158003 for ; Wed, 29 Jun 2022 10:59:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9468E09A8; Wed, 29 Jun 2022 10:59:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BF4D2E09A8 for ; Wed, 29 Jun 2022 10:59:17 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 866923419B8 for ; Wed, 29 Jun 2022 10:59:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ADB5D1E for ; Wed, 29 Jun 2022 10:59:14 +0000 (UTC) From: "Marek Szuba" 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" Message-ID: <1656498230.404e39461ab474cfce0cddfa4c6624fc61f4005c.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.ebuild X-VCS-Directories: www-servers/gunicorn/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 404e39461ab474cfce0cddfa4c6624fc61f4005c X-VCS-Branch: master Date: Wed, 29 Jun 2022 10:59:14 +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: 256ad9ff-22b2-49c2-8c13-d3ca5737174e X-Archives-Hash: 620a546cda40ee18d8123fe106112b7c commit: 404e39461ab474cfce0cddfa4c6624fc61f4005c Author: Marek Szuba gentoo org> AuthorDate: Wed Jun 29 10:23:50 2022 +0000 Commit: Marek Szuba gentoo org> CommitDate: Wed Jun 29 10:23:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=404e3946 www-servers/gunicorn: drop 20.1.0 Signed-off-by: Marek Szuba gentoo.org> www-servers/gunicorn/gunicorn-20.1.0.ebuild | 48 ----------------------------- 1 file changed, 48 deletions(-) diff --git a/www-servers/gunicorn/gunicorn-20.1.0.ebuild b/www-servers/gunicorn/gunicorn-20.1.0.ebuild deleted file mode 100644 index 0758612b5491..000000000000 --- a/www-servers/gunicorn/gunicorn-20.1.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( pypy3 python3_{8..10} ) - -inherit distutils-r1 optfeature - -DESCRIPTION="A WSGI HTTP Server for UNIX" -HOMEPAGE="https://gunicorn.org https://pypi.org/project/gunicorn https://github.com/benoitc/gunicorn" -# Tagged on GitHub on 2021-02-12 yet only got posted on PyPI on 2021-03-27, two weeks -# before this ebuild got published. Will likely switch back to PyPI come next release. -SRC_URI="https://github.com/benoitc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT PSF-2 doc? ( BSD )" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" - -RDEPEND="dev-python/setproctitle[${PYTHON_USEDEP}]" - -PATCHES=( - "${FILESDIR}"/${PN}-20.1.0-tests_optional_modules.patch - "${FILESDIR}"/${P}-new-eventlet.patch -) - -DOCS=( README.rst ) - -distutils_enable_sphinx 'docs/source' --no-autodoc -distutils_enable_tests pytest - -src_prepare() { - sed -e 's:--cov=gunicorn --cov-report=xml::' -i setup.cfg || die - distutils-r1_src_prepare -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/source/_build/html/. ) - - 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" - optfeature "gevent-based greenlets workers" "dev-python/gevent" -}