summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRebecca Cran <rebecca@bsdio.com>2020-01-25 00:20:35 -0700
committerBruce Ashfield <bruce.ashfield@gmail.com>2020-01-29 10:42:27 -0500
commit7d0f24938106c73114782ec6bebf13ad4ad7f297 (patch)
treefce9464d1f90d1b6243184df4b08b589a46aad47
parent63abf0e38689ba4fa3edc01f840dcf47a359a80c (diff)
downloadmeta-cloud-services-7d0f24938106c73114782ec6bebf13ad4ad7f297.tar.gz
Fix mod-wsgi recipe
mod-wsgi version 4.5.13 doesn't build against python 3.8: update it to 4.6.8 which does build. Update the homepage URL: the Google Code project has been archived. Fix the LoadModule line: mod_wsgi.so is installed in ${libexecdir}, not ${libdir}. Signed-off-by: Rebecca Cran <rebecca@bsdio.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb b/meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb
index 4a1048e..73dab13 100644
--- a/meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb
+++ b/meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb
@@ -5,12 +5,12 @@ DESCRIPTION = "\
5 be suitable for use in hosting high performance production web sites, as well as \ 5 be suitable for use in hosting high performance production web sites, as well as \
6 your average self managed personal sites running on web hosting services." 6 your average self managed personal sites running on web hosting services."
7 7
8HOMEPAGE = "http://code.google.com/p/modwsgi/" 8HOMEPAGE = "https://github.com/GrahamDumpleton/mod_wsgi"
9LICENSE = "Apache-2.0" 9LICENSE = "Apache-2.0"
10LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" 10LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
11 11
12SRCREV = "f22376f5141e8505f183b1b48f276c31168e2b6a" 12SRCREV = "217e80b7436035723b80ff02ee349365e8553dfc"
13PV = "4.5.13+git${SRCPV}" 13PV = "4.6.8+git${SRCPV}"
14 14
15S = "${WORKDIR}/git" 15S = "${WORKDIR}/git"
16 16
@@ -47,7 +47,7 @@ FILES_${PN}-dbg += "${libdir}/apache2/modules/.debug"
47 47
48do_install_append() { 48do_install_append() {
49 mkdir -p ${D}/etc/apache2/modules.d/ 49 mkdir -p ${D}/etc/apache2/modules.d/
50 echo "LoadModule wsgi_module ${libdir}/apache2/modules/mod_wsgi.so" > \ 50 echo "LoadModule wsgi_module ${libexecdir}/apache2/modules/mod_wsgi.so" > \
51 ${D}/etc/apache2/modules.d/wsgi.load 51 ${D}/etc/apache2/modules.d/wsgi.load
52} 52}
53 53