Diff gunicorn-23.0.0 with a gunicorn-24.0.0
| /usr/portage/www-servers/gunicorn/gunicorn-24.0.0.ebuild 2026-01-27 11:18:04.678427159 +0300 | ||
|---|---|---|
| 1 |
# Copyright 1999-2025 Gentoo Authors |
|
| 1 |
# Copyright 1999-2026 Gentoo Authors |
|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 | |
| 4 | 4 |
EAPI=8 |
| ... | ... | |
| 19 | 19 |
-> ${P}.gh.tar.gz
|
| 20 | 20 |
" |
| 21 | 21 | |
| 22 |
LICENSE="MIT PSF-2 doc? ( BSD )" |
|
| 22 |
LICENSE="MIT PSF-2" |
|
| 23 | 23 |
SLOT="0" |
| 24 |
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos" |
|
| 24 |
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" |
|
| 25 | 25 | |
| 26 | 26 |
RDEPEND=" |
| 27 | 27 |
dev-python/packaging[${PYTHON_USEDEP}]
|
| ... | ... | |
| 30 | 30 | |
| 31 | 31 |
DOCS=( README.rst ) |
| 32 | 32 | |
| 33 |
distutils_enable_sphinx 'docs/source' --no-autodoc |
|
| 33 |
EPYTEST_PLUGINS=( pytest-asyncio ) |
|
| 34 | 34 |
distutils_enable_tests pytest |
| 35 | 35 | |
| 36 | 36 |
python_test() {
|
| ... | ... | |
| 40 | 40 |
tests/workers/test_ggevent.py |
| 41 | 41 |
) |
| 42 | 42 | |
| 43 |
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 |
|
| 44 | 43 |
epytest -o addopts= |
| 45 | 44 |
} |
| 46 | ||
| 47 |
python_install_all() {
|
|
| 48 |
use doc && local HTML_DOCS=( docs/source/_build/html/. ) |
|
| 49 | ||
| 50 |
distutils-r1_python_install_all |
|
| 51 |
} |
|