diff options
author | Sam James <sam@gentoo.org> | 2022-04-29 10:37:19 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-04-29 11:21:07 +0100 |
commit | ed5b736b06785e7ad8237a9312d970300b5ac962 (patch) | |
tree | f122c6a0c0333c548d89639e060e85c3e0b2a7e2 /www-apache/mod_wsgi | |
parent | virtual/libintl: drop 0, 0-r1 (diff) | |
download | gentoo-ed5b736b06785e7ad8237a9312d970300b5ac962.tar.gz gentoo-ed5b736b06785e7ad8237a9312d970300b5ac962.tar.bz2 gentoo-ed5b736b06785e7ad8237a9312d970300b5ac962.zip |
www-apache/mod_wsgi: drop 4.7.1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'www-apache/mod_wsgi')
-rw-r--r-- | www-apache/mod_wsgi/mod_wsgi-4.7.1.ebuild | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/www-apache/mod_wsgi/mod_wsgi-4.7.1.ebuild b/www-apache/mod_wsgi/mod_wsgi-4.7.1.ebuild deleted file mode 100644 index 7621b99b57d4..000000000000 --- a/www-apache/mod_wsgi/mod_wsgi-4.7.1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{7,8} ) -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}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86" -IUSE="" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND="" -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() { - # configure.ac contains bashisms - # (https://github.com/GrahamDumpleton/mod_wsgi/issues/567) - CONFIG_SHELL="/bin/bash" \ - econf --with-apxs="${APXS}" --with-python="${PYTHON}" -} - -src_compile() { - default -} |