diff options
| author | Michał Górny <mgorny@gentoo.org> | 2026-02-03 07:44:42 +0100 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2026-02-03 08:27:17 +0100 |
| commit | 96694de4c6fac46bdf097abb4fcc743029129432 (patch) | |
| tree | 401a049349b19f3233b5880fde542d009c272d3c | |
| parent | 6e664808efca0a4fb7de679e48018587b213b1a6 (diff) | |
| download | gentoo-96694de4c6fac46bdf097abb4fcc743029129432.tar.gz gentoo-96694de4c6fac46bdf097abb4fcc743029129432.tar.bz2 gentoo-96694de4c6fac46bdf097abb4fcc743029129432.zip | |
www-servers/gunicorn: Bump to 25.0.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
| -rw-r--r-- | www-servers/gunicorn/Manifest | 1 | ||||
| -rw-r--r-- | www-servers/gunicorn/gunicorn-25.0.1.ebuild | 48 |
2 files changed, 49 insertions, 0 deletions
diff --git a/www-servers/gunicorn/Manifest b/www-servers/gunicorn/Manifest index 7ee7ddfae17d..b8db8a1414ec 100644 --- a/www-servers/gunicorn/Manifest +++ b/www-servers/gunicorn/Manifest @@ -2,3 +2,4 @@ DIST gunicorn-23.0.0.gh.tar.gz 373550 BLAKE2B 5f7e74e3554e68863ac32225a95e2e83b6 DIST gunicorn-24.0.0.gh.tar.gz 323199 BLAKE2B 434a569d4834b26a095d63310954ee722802febb84d2d7c7416fd0296cca6e0ec62277d6780bc9c1db354ecdc7721e445e0f3723818c02ff9699d57e50e62ee6 SHA512 02cae29fd534a4e28d69ce30260f2624c2e2ae1d1ac6b1c80b19cfe78692e98ffd9377da547bed69041167f0514b485fdf5608f7fc4caafa21ea65c311e68c52 DIST gunicorn-24.1.1.gh.tar.gz 336418 BLAKE2B 2c27ce0e30baddcf583f199748b34ea9f13581830d5701ee02dd0627c0a893917e2a2192a62f5f95df29abad1c03bcb224fd6a3f0ea73274acb8730cc0273e6e SHA512 7ff5c6a6a2a7bc63c069f06dce55fc8b16e7dc0c08f205bb5cb8235c8ebd27c17cc2cf0516d2ede8cb8934ab8b71dee5b9b5418d311d96613a87f919da1134b8 DIST gunicorn-25.0.0.gh.tar.gz 525914 BLAKE2B 3475473563531c84219b02cfd6159dc48bc91d0425fa031ab230115aec3b7606a77282d47930bc0e3bb5d3c3dd1581ea6e635ee3fd937fb7389016b75f2fefa7 SHA512 fa7e921399985cac26178f2af40983853a8aa07d6aa3e64107e058cbe2cabc88b35b7728bd69a2051979f5a95ef863e5abde9bd1ca9ab9511d7157e75fd5934a +DIST gunicorn-25.0.1.gh.tar.gz 593730 BLAKE2B 2d4952d18ce8b0ad6592e1d06d3ce408fc1e8f001cd6ecc49b6c01159f8bc19d9f65d54ef423f279276cf1478cb8517c254d7a2d6d95239c22c63b9250c15e8a SHA512 f0ebc30c1c7b2de1d045ae1521faa007ca125e833fabd79e2298af05e29eaa3b595f5f01f65e10cf44f91e4447b4a28bcd822a3c88cfd44fcbaa1202434998bd diff --git a/www-servers/gunicorn/gunicorn-25.0.1.ebuild b/www-servers/gunicorn/gunicorn-25.0.1.ebuild new file mode 100644 index 000000000000..d8d0aede9059 --- /dev/null +++ b/www-servers/gunicorn/gunicorn-25.0.1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3_11 python3_{11..14} ) + +inherit distutils-r1 + +DESCRIPTION="A WSGI HTTP Server for UNIX" +HOMEPAGE=" + https://gunicorn.org/ + https://github.com/benoitc/gunicorn/ + https://pypi.org/project/gunicorn/ +" +SRC_URI=" + https://github.com/benoitc/gunicorn/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT PSF-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" + +RDEPEND=" + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/setproctitle[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + >=dev-python/h2-4.1.0[${PYTHON_USEDEP}] + dev-python/httpx[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=( pytest-asyncio ) +distutils_enable_tests pytest + +python_test() { + local EPYTEST_IGNORE=( + # removed deps + tests/workers/test_geventlet.py + tests/workers/test_ggevent.py + ) + + epytest -o addopts= +} |
