Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_wsgi/
Date: Fri, 29 Apr 2022 10:22:01
Message-Id: 1651227667.ed5b736b06785e7ad8237a9312d970300b5ac962.sam@gentoo
1 commit: ed5b736b06785e7ad8237a9312d970300b5ac962
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 29 09:37:19 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 29 10:21:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed5b736b
7
8 www-apache/mod_wsgi: drop 4.7.1
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 www-apache/mod_wsgi/mod_wsgi-4.7.1.ebuild | 51 -------------------------------
13 1 file changed, 51 deletions(-)
14
15 diff --git a/www-apache/mod_wsgi/mod_wsgi-4.7.1.ebuild b/www-apache/mod_wsgi/mod_wsgi-4.7.1.ebuild
16 deleted file mode 100644
17 index 7621b99b57d4..000000000000
18 --- a/www-apache/mod_wsgi/mod_wsgi-4.7.1.ebuild
19 +++ /dev/null
20 @@ -1,51 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -PYTHON_COMPAT=( python3_{7,8} )
27 -PYTHON_REQ_USE="threads(+)"
28 -
29 -inherit apache-module python-single-r1
30 -
31 -DESCRIPTION="An Apache2 module for running Python WSGI applications"
32 -HOMEPAGE="https://github.com/GrahamDumpleton/mod_wsgi"
33 -SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 -
35 -LICENSE="Apache-2.0"
36 -SLOT="0"
37 -KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86"
38 -IUSE=""
39 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
40 -
41 -DEPEND=""
42 -RDEPEND="${PYTHON_DEPS}"
43 -
44 -APACHE2_MOD_CONF="70_${PN}"
45 -APACHE2_MOD_DEFINE="WSGI"
46 -APACHE2_MOD_FILE="${S}/src/server/.libs/${PN}.so"
47 -
48 -DOCFILES="README.rst"
49 -
50 -need_apache2
51 -
52 -pkg_setup() {
53 - python-single-r1_pkg_setup
54 -
55 - # Calling depend.apache_pkg_setup fails because we do not have
56 - # "apache2" in IUSE but the function expects this in order to call
57 - # _init_apache2_late which sets the APACHE_MODULESDIR variable.
58 - _init_apache2
59 - _init_apache2_late
60 -}
61 -
62 -src_configure() {
63 - # configure.ac contains bashisms
64 - # (https://github.com/GrahamDumpleton/mod_wsgi/issues/567)
65 - CONFIG_SHELL="/bin/bash" \
66 - econf --with-apxs="${APXS}" --with-python="${PYTHON}"
67 -}
68 -
69 -src_compile() {
70 - default
71 -}