repo/gentoo:master commit in: www-servers/gunicorn/
MichaŠGórny <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1787117909.1d41b17c18b2f5f66eda594e11478e574c7f9c4d.mgorny@gentoo> |
commit: 1d41b17c18b2f5f66eda594e11478e574c7f9c4d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 19 05:06:25 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug 19 05:38:29 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d41b17c
www-servers/gunicorn: Bump to 26.1.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
www-servers/gunicorn/Manifest | 1 +
www-servers/gunicorn/gunicorn-26.1.0.ebuild | 44 +++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/www-servers/gunicorn/Manifest b/www-servers/gunicorn/Manifest
index 43d401ea87f8..2dac31e2755d 100644
--- a/www-servers/gunicorn/Manifest
+++ b/www-servers/gunicorn/Manifest
@@ -1 +1,2 @@
DIST gunicorn-26.0.0.gh.tar.gz 749564 BLAKE2B 01e7ff9c5fe41825e8158d7d8372cd2cb5983d24d365adb4f850bf7940d711c3409525e9713f4818e2e511573b9d7d209ccde2398fa7d9b0bb596be48bd8af36 SHA512 a2bdce4858b32d55cd7adeb4dd8cc4da20b2781d2ef792c5e845c5a8ed6d7ce402f2de8807a2f54a80310a46cd7d3abd5e73211b393174f94f08e90f595f9d9a
+DIST gunicorn-26.1.0.tar.gz 755923 BLAKE2B dfa34b96c1ef478d45521f32ce3a5c660a8279e33559d3f2059174dec1c0f1ceadc7516d2f6c9ca715a1e7e068804c4b533044256cf7fc55e4d89e4012e4b22e SHA512 4500cb7ee0255b4e44edf5cab1de70dd1801f7180df3878dce9f04adb027a2249e60c98c0e89dc34dea4b1fc71918f8043d5e8594b40cc1bb27d2dac0517a744
diff --git a/www-servers/gunicorn/gunicorn-26.1.0.ebuild b/www-servers/gunicorn/gunicorn-26.1.0.ebuild
new file mode 100644
index 000000000000..6ef394903796
--- /dev/null
+++ b/www-servers/gunicorn/gunicorn-26.1.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{12..15} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A WSGI HTTP Server for UNIX"
+HOMEPAGE="
+ https://gunicorn.org/
+ https://github.com/benoitc/gunicorn/
+ https://pypi.org/project/gunicorn/
+"
+
+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.4.1[${PYTHON_USEDEP}]
+ dev-python/httpx[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_PLUGINS=( pytest-asyncio )
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+python_test() {
+ local EPYTEST_IGNORE=(
+ # removed deps
+ tests/workers/test_ggevent.py
+ )
+
+ epytest -o addopts=
+}