summaryrefslogtreecommitdiff
path: root/www-apache/mod_wsgi/mod_wsgi-5.0.2.ebuild
diff options
context:
space:
mode:
authorHanno Böck <hanno@gentoo.org>2025-05-07 18:45:01 +0200
committerHanno Böck <hanno@gentoo.org>2025-05-07 18:45:03 +0200
commitfff1b241cce32bbeeaeb3938ba74b88f7acfc4c6 (patch)
tree66ddb845be5115efeca981f3bc189503e9e88e80 /www-apache/mod_wsgi/mod_wsgi-5.0.2.ebuild
parent683a29d2979a8ef0363f752d4336654d23032b88 (diff)
downloadgentoo-fff1b241cce32bbeeaeb3938ba74b88f7acfc4c6.tar.gz
gentoo-fff1b241cce32bbeeaeb3938ba74b88f7acfc4c6.tar.bz2
gentoo-fff1b241cce32bbeeaeb3938ba74b88f7acfc4c6.zip
www-apache/mod_wsgi: add 5.0.2
Add Python 3.13 support. Closes: https://bugs.gentoo.org/952755 Signed-off-by: Hanno Böck <hanno@gentoo.org>
Diffstat (limited to 'www-apache/mod_wsgi/mod_wsgi-5.0.2.ebuild')
-rw-r--r--www-apache/mod_wsgi/mod_wsgi-5.0.2.ebuild46
1 files changed, 46 insertions, 0 deletions
diff --git a/www-apache/mod_wsgi/mod_wsgi-5.0.2.ebuild b/www-apache/mod_wsgi/mod_wsgi-5.0.2.ebuild
new file mode 100644
index 000000000000..9cfb9701e72d
--- /dev/null
+++ b/www-apache/mod_wsgi/mod_wsgi-5.0.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..13} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit apache-module python-single-r1
+
+DESCRIPTION="An Apache2 module for running Python WSGI applications"
+HOMEPAGE="https://github.com/GrahamDumpleton/mod_wsgi"
+SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}"
+
+APACHE2_MOD_CONF="70_${PN}"
+APACHE2_MOD_DEFINE="WSGI"
+APACHE2_MOD_FILE="${S}/src/server/.libs/${PN}.so"
+
+DOCFILES="README.rst"
+
+need_apache2
+
+pkg_setup() {
+ python-single-r1_pkg_setup
+
+ # Calling depend.apache_pkg_setup fails because we do not have
+ # "apache2" in IUSE but the function expects this in order to call
+ # _init_apache2_late which sets the APACHE_MODULESDIR variable.
+ _init_apache2
+ _init_apache2_late
+}
+
+src_configure() {
+ econf --with-apxs="${APXS}" --with-python="${PYTHON}"
+}
+
+src_compile() {
+ default
+}