diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-12-07 09:04:37 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-12-07 15:35:52 +0200 |
commit | 20054fe639aba9445f2f870d0dc730181b2d18d3 (patch) | |
tree | 489e804fc9e45202b95ccd2a07aeba58e5fb51b4 /www-apache/mod_wsgi | |
parent | dev-lang/python: Stabilize 3.8.16 ppc64, #884651 (diff) | |
download | gentoo-20054fe639aba9445f2f870d0dc730181b2d18d3.tar.gz gentoo-20054fe639aba9445f2f870d0dc730181b2d18d3.tar.bz2 gentoo-20054fe639aba9445f2f870d0dc730181b2d18d3.zip |
www-apache/mod_wsgi: drop 4.7.1-r1 (EAPI=6)
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'www-apache/mod_wsgi')
-rw-r--r-- | www-apache/mod_wsgi/Manifest | 1 | ||||
-rw-r--r-- | www-apache/mod_wsgi/mod_wsgi-4.7.1-r1.ebuild | 55 |
2 files changed, 0 insertions, 56 deletions
diff --git a/www-apache/mod_wsgi/Manifest b/www-apache/mod_wsgi/Manifest index a9647c9c54e8..e326936af388 100644 --- a/www-apache/mod_wsgi/Manifest +++ b/www-apache/mod_wsgi/Manifest @@ -1,2 +1 @@ -DIST mod_wsgi-4.7.1.tar.gz 696111 BLAKE2B 69fea421077f1ecbf1cef5c9eac4ba296fa676e0bfbb860ca8a7cb701701f405edb3760486b87e8d9dd93efcb4c23385197d770ca32e16a473d5d252d292fb76 SHA512 cbb5ec53d55e47a83f2b0630527c6a52b48ef21d5d2c18adcb875fc455795b39b3c93f4a86dfbf9738c0bd554d86cc4912cc9ff83c428af302ab94a61f66b5b4 DIST mod_wsgi-4.9.0.tar.gz 699891 BLAKE2B 7ee6ffc28e86baf8ee92973479a26964f7c183c2b113b49a48af02c622f8d8f698abffcd4f522a1ecca5b89325f94856cbe89db5a81d2ac2e87438ee90be97b0 SHA512 9dc34d431171321094a9713444895d9754eff4e69ad1e86c8d3cd77bc1ca0a4c10b697e7f8cf14902d6bfaf205c8842e62fa944bb38f66f1c54fd36af95a09d6 diff --git a/www-apache/mod_wsgi/mod_wsgi-4.7.1-r1.ebuild b/www-apache/mod_wsgi/mod_wsgi-4.7.1-r1.ebuild deleted file mode 100644 index 759f60c5f6d0..000000000000 --- a/www-apache/mod_wsgi/mod_wsgi-4.7.1-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{8..10} ) -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" - -PATCHES=( - "${FILESDIR}/${P}-py310.patch" -) - -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 -} |