dev-python/waitress: add 2.1.0

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
Arthur Zamarin
2022-03-09 20:44:30 +02:00
parent fbd8f2a7b3
commit ef11aa0cae
2 changed files with 26 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST waitress-2.0.0.tar.gz 175641 BLAKE2B 819682a44f388cce3b77d31e5d1fb299db88d41a2a7b01e42d48554bff65c2ba165dae5d1e680cd2a46a1ebe6887f96f8b93d4bc18bd7527a48fd5c3aabab0bf SHA512 c046195431ca31ff5ad74638ff80022d23591a06265d195b82eb320bb20b2b1d2de261db5981a91556af9f9c3b2ad12bf42148e4dfd955ed764d9b3f9a71f058
DIST waitress-2.1.0.tar.gz 176665 BLAKE2B f78dba19a64b975b396c5babbb7b11747004ed4522980663fd94db5908c9e8da80d54911dcfd211b7b486e09e84c6903f842a908ad50a731f54b092e17bccf0c SHA512 7a64664ab57bedde72bfcac3a31c6b8c858d33f6b75a439de9a47d201f9a5c663414f2617ef568beaed77c2acd221758ab4d27135600aa900f1e7b1933883f01

View File

@@ -0,0 +1,25 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..10} pypy3 )
inherit distutils-r1
DESCRIPTION="A pure-Python WSGI server"
HOMEPAGE="https://docs.pylonsproject.org/projects/waitress/en/latest/
https://pypi.org/project/waitress/
https://github.com/Pylons/waitress"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ZPL"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
distutils_enable_tests pytest
src_prepare() {
sed -i -e 's:--cov::' setup.cfg || die
distutils-r1_src_prepare
}