wok annotate apache-mod-wsgi/receipt @ rev 24173

updated outguess again (0.2 -> 0.4)
author Hans-G?nter Theisgen
date Wed Dec 29 09:24:42 2021 +0100 (2021-12-29)
parents e0d8b796f528
children 079c61a21362
rev   line source
erjo@9845 1 # SliTaz package receipt.
erjo@9845 2
erjo@9845 3 PACKAGE="apache-mod-wsgi"
Hans-G?nter@22486 4 VERSION="4.6.5"
erjo@9845 5 CATEGORY="network"
erjo@9845 6 SHORT_DESC="Python WSGI adapter module for Apache."
erjo@9845 7 MAINTAINER="erjo@slitaz.org"
pascal@15361 8 LICENSE="Apache"
hackdorte@20007 9 WEB_SITE="https://github.com/GrahamDumpleton/mod_wsgi"
Hans-G?nter@22486 10
Hans-G?nter@22486 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@22486 12 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
erjo@9845 13
erjo@9845 14 DEPENDS="apache python"
Hans-G?nter@22486 15 BUILD_DEPENDS="acl acl-dev apache apache-dev apr-dev apr-util-dev python-dev sed"
erjo@9845 16
pascal@24055 17 current_version()
pascal@24055 18 {
pascal@24055 19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@24055 20 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
pascal@24055 21 }
pascal@24055 22
erjo@9845 23 # Rules to configure and make the package.
erjo@9845 24 compile_rules()
erjo@9845 25 {
Hans-G?nter@22486 26 ./configure --prefix=/usr &&
Hans-G?nter@22486 27 make &&
Hans-G?nter@22486 28 make install
erjo@9845 29 }
erjo@9845 30
erjo@9845 31 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@9845 32 genpkg_rules()
erjo@9845 33 {
erjo@9845 34 mkdir -p $fs/etc/apache/extra
Hans-G?nter@22486 35
Hans-G?nter@22486 36 cp -a $install/* $fs
Hans-G?nter@22486 37 cp $stuff/httpd-mod-wsgi.conf $fs/etc/apache/extra
erjo@9845 38 }
erjo@9845 39
erjo@9845 40 post_install()
erjo@9845 41 {
Hans-G?nter@22486 42 # Enable WSGI module
Hans-G?nter@22486 43 echo "# Python WSGI module" >> "$1/etc/apache/httpd.conf"
Hans-G?nter@22486 44 echo "Include /etc/apache/extra/httpd-mod-wsgi.conf " >> "$1/etc/apache/httpd.conf"
erjo@9845 45 }
erjo@9845 46
erjo@9845 47 post_remove()
erjo@9845 48 {
Hans-G?nter@22486 49 # Remove WSGI configuration
Hans-G?nter@22486 50 sed -i s/\# Python.*// "$1/etc/apache/httpd.conf"
Hans-G?nter@22486 51 sed -i s/.*httpd-mod-wsgi.conf// "$1/etc/apache/httpd.conf"
erjo@9845 52 }