summaryrefslogtreecommitdiff
path: root/community/mod_wsgi2
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/mod_wsgi2
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/mod_wsgi2')
-rw-r--r--community/mod_wsgi2/PKGBUILD35
-rw-r--r--community/mod_wsgi2/mod_wsgi2.install16
2 files changed, 0 insertions, 51 deletions
diff --git a/community/mod_wsgi2/PKGBUILD b/community/mod_wsgi2/PKGBUILD
deleted file mode 100644
index 6cdf187df..000000000
--- a/community/mod_wsgi2/PKGBUILD
+++ /dev/null
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 95322 2013-08-09 11:50:53Z arodseth $
-# Maintainer: Alexander Rødseth <rodseth@gmail.com>
-# Contributor: Andrea Scarpino <andrea@archlinux.org>
-# Contributor: Ryan Coyner <rcoyner@gmail.com>
-
-pkgname=mod_wsgi2
-pkgver=3.4
-pkgrel=4
-pkgdesc='Python2 WSGI adapter module for Apache'
-arch=('x86_64' 'i686')
-url='http://www.modwsgi.org/'
-license=('APACHE')
-depends=('apache' 'python2')
-conflicts=('mod_wsgi')
-install="$pkgname.install"
-source=("http://modwsgi.googlecode.com/files/mod_wsgi-$pkgver.tar.gz")
-sha256sums=('ae85c98e9e146840ab3c3e4490e6774f9bef0f99b9f679fca786b2adb5b4b6e8')
-
-build() {
- cd "$srcdir/mod_wsgi-$pkgver"
-
- ./configure \
- --prefix=/usr \
- --with-apxs=/usr/bin/apxs \
- --with-python=/usr/bin/python2
- make
-}
-
-package() {
- cd "$srcdir/mod_wsgi-$pkgver"
-
- make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/mod_wsgi2/mod_wsgi2.install b/community/mod_wsgi2/mod_wsgi2.install
deleted file mode 100644
index a7f0290c2..000000000
--- a/community/mod_wsgi2/mod_wsgi2.install
+++ /dev/null
@@ -1,16 +0,0 @@
-post_install() {
- cat << ENDOFMESSAGE
-==>
-==>
-==> To install mod_wsgi, add the following line in
-==> /etc/httpd/conf/httpd.conf file:
-==>
-==> LoadModule wsgi_module modules/mod_wsgi.so
-==>
-==> and restart/reload Apache.
-==>
-==>
-ENDOFMESSAGE
-}
-
-# vim:set ts=2 sw=2 et: