[arch-commits] Commit in mod_wsgi/repos (8 files)

Alexander Rødseth arodseth at archlinux.org
Wed Nov 1 11:18:42 UTC 2017


    Date: Wednesday, November 1, 2017 @ 11:18:41
  Author: arodseth
Revision: 264995

archrelease: copy trunk to community-x86_64, community-i686

Added:
  mod_wsgi/repos/community-i686/PKGBUILD
    (from rev 264994, mod_wsgi/trunk/PKGBUILD)
  mod_wsgi/repos/community-i686/mod_wsgi.install
    (from rev 264994, mod_wsgi/trunk/mod_wsgi.install)
  mod_wsgi/repos/community-x86_64/PKGBUILD
    (from rev 264994, mod_wsgi/trunk/PKGBUILD)
  mod_wsgi/repos/community-x86_64/mod_wsgi.install
    (from rev 264994, mod_wsgi/trunk/mod_wsgi.install)
Deleted:
  mod_wsgi/repos/community-i686/PKGBUILD
  mod_wsgi/repos/community-i686/mod_wsgi.install
  mod_wsgi/repos/community-x86_64/PKGBUILD
  mod_wsgi/repos/community-x86_64/mod_wsgi.install

-----------------------------------+
 /PKGBUILD                         |  114 ++++++++++++++++++++++++++++++++++++
 /mod_wsgi.install                 |   28 ++++++++
 community-i686/PKGBUILD           |   59 ------------------
 community-i686/mod_wsgi.install   |   14 ----
 community-x86_64/PKGBUILD         |   59 ------------------
 community-x86_64/mod_wsgi.install |   14 ----
 6 files changed, 142 insertions(+), 146 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-11-01 11:18:27 UTC (rev 264994)
+++ community-i686/PKGBUILD	2017-11-01 11:18:41 UTC (rev 264995)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Ryan Coyner <rcoyner at gmail.com>
-
-pkgbase=mod_wsgi
-pkgname=($pkgbase 'mod_wsgi2')
-pkgver=4.5.17
-pkgrel=2
-pkgdesc='Python WSGI adapter module for Apache'
-arch=('x86_64' 'i686')
-url='http://www.modwsgi.org/'
-license=('APACHE')
-makedepends=('apache' 'python' 'python2' 'git')
-install='mod_wsgi.install'
-source=("git+https://github.com/GrahamDumpleton/mod_wsgi#tag=$pkgver")
-md5sums=('SKIP')
-
-build() {
-  cp -r "$pkgbase" py2
-
-  cd "$pkgbase"
-
-  ./configure \
-    --prefix=/usr \
-    --with-apxs=/usr/bin/apxs \
-    --with-python=/usr/bin/python
-
-  # Build mod_wsgi for py3
-  make LDLIBS="$(pkg-config python3 --libs) -lpthread -ldl -lutil -lm"
-
-  cd "$srcdir/py2"
-
-  ./configure \
-    --prefix=/usr \
-    --with-apxs=/usr/bin/apxs \
-    --with-python=/usr/bin/python2
-
-  # Build mod_wsgi for py2
-  make
-}
-
-package_mod_wsgi() {
-  pkgdesc='Python WSGI adapter module for Apache'
-  depends=('apache' 'python')
-  conflicts=('mod_wsgi2')
-
-  make -C "$pkgbase" DESTDIR="$pkgdir" install
-}
-
-package_mod_wsgi2() {
-  pkgdesc='Python2 WSGI adapter module for Apache'
-  depends=('apache' 'python2')
-  conflicts=('mod_wsgi')
-
-  make -C py2 DESTDIR="$pkgdir" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: mod_wsgi/repos/community-i686/PKGBUILD (from rev 264994, mod_wsgi/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-11-01 11:18:41 UTC (rev 264995)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Ryan Coyner <rcoyner at gmail.com>
+
+pkgbase=mod_wsgi
+pkgname=($pkgbase 'mod_wsgi2')
+pkgver=4.5.20
+pkgrel=1
+pkgdesc='Python WSGI adapter module for Apache'
+arch=('x86_64' 'i686')
+url='http://www.modwsgi.org/'
+license=('APACHE')
+makedepends=('apache' 'git' 'python' 'python2')
+install='mod_wsgi.install'
+source=("git+https://github.com/GrahamDumpleton/mod_wsgi#tag=$pkgver")
+md5sums=('SKIP')
+
+build() {
+  # Configure and build mod_wsgi for py2
+  cp -r "$pkgbase" py2
+  cd py2
+  ./configure \
+    --prefix=/usr \
+    --with-apxs=/usr/bin/apxs \
+    --with-python=/usr/bin/python2
+
+  make
+
+  # Configure and build mod_wsgi for py3
+  cd "$srcdir/$pkgbase"
+  ./configure \
+    --prefix=/usr \
+    --with-apxs=/usr/bin/apxs \
+    --with-python=/usr/bin/python
+
+  make LDLIBS="$(pkg-config python3 --libs) -lpthread -ldl -lutil -lm"
+}
+
+package_mod_wsgi() {
+  pkgdesc='Python WSGI adapter module for Apache'
+  depends=('apache' 'python')
+  conflicts=('mod_wsgi2')
+
+  make -C "$pkgbase" DESTDIR="$pkgdir" install
+}
+
+package_mod_wsgi2() {
+  pkgdesc='Python2 WSGI adapter module for Apache'
+  depends=('apache' 'python2')
+  conflicts=('mod_wsgi')
+
+  make -C py2 DESTDIR="$pkgdir" install
+}
+
+# getver: github.com/GrahamDumpleton/mod_wsgi
+# vim: ts=2 sw=2 et:

Deleted: community-i686/mod_wsgi.install
===================================================================
--- community-i686/mod_wsgi.install	2017-11-01 11:18:27 UTC (rev 264994)
+++ community-i686/mod_wsgi.install	2017-11-01 11:18:41 UTC (rev 264995)
@@ -1,14 +0,0 @@
-post_install() {
-/bin/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
-}

Copied: mod_wsgi/repos/community-i686/mod_wsgi.install (from rev 264994, mod_wsgi/trunk/mod_wsgi.install)
===================================================================
--- community-i686/mod_wsgi.install	                        (rev 0)
+++ community-i686/mod_wsgi.install	2017-11-01 11:18:41 UTC (rev 264995)
@@ -0,0 +1,14 @@
+post_install() {
+  /bin/cat << dog
+==>
+==>
+==>  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.
+==>
+==>
+dog
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-11-01 11:18:27 UTC (rev 264994)
+++ community-x86_64/PKGBUILD	2017-11-01 11:18:41 UTC (rev 264995)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Ryan Coyner <rcoyner at gmail.com>
-
-pkgbase=mod_wsgi
-pkgname=($pkgbase 'mod_wsgi2')
-pkgver=4.5.17
-pkgrel=2
-pkgdesc='Python WSGI adapter module for Apache'
-arch=('x86_64' 'i686')
-url='http://www.modwsgi.org/'
-license=('APACHE')
-makedepends=('apache' 'python' 'python2' 'git')
-install='mod_wsgi.install'
-source=("git+https://github.com/GrahamDumpleton/mod_wsgi#tag=$pkgver")
-md5sums=('SKIP')
-
-build() {
-  cp -r "$pkgbase" py2
-
-  cd "$pkgbase"
-
-  ./configure \
-    --prefix=/usr \
-    --with-apxs=/usr/bin/apxs \
-    --with-python=/usr/bin/python
-
-  # Build mod_wsgi for py3
-  make LDLIBS="$(pkg-config python3 --libs) -lpthread -ldl -lutil -lm"
-
-  cd "$srcdir/py2"
-
-  ./configure \
-    --prefix=/usr \
-    --with-apxs=/usr/bin/apxs \
-    --with-python=/usr/bin/python2
-
-  # Build mod_wsgi for py2
-  make
-}
-
-package_mod_wsgi() {
-  pkgdesc='Python WSGI adapter module for Apache'
-  depends=('apache' 'python')
-  conflicts=('mod_wsgi2')
-
-  make -C "$pkgbase" DESTDIR="$pkgdir" install
-}
-
-package_mod_wsgi2() {
-  pkgdesc='Python2 WSGI adapter module for Apache'
-  depends=('apache' 'python2')
-  conflicts=('mod_wsgi')
-
-  make -C py2 DESTDIR="$pkgdir" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: mod_wsgi/repos/community-x86_64/PKGBUILD (from rev 264994, mod_wsgi/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-11-01 11:18:41 UTC (rev 264995)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Ryan Coyner <rcoyner at gmail.com>
+
+pkgbase=mod_wsgi
+pkgname=($pkgbase 'mod_wsgi2')
+pkgver=4.5.20
+pkgrel=1
+pkgdesc='Python WSGI adapter module for Apache'
+arch=('x86_64' 'i686')
+url='http://www.modwsgi.org/'
+license=('APACHE')
+makedepends=('apache' 'git' 'python' 'python2')
+install='mod_wsgi.install'
+source=("git+https://github.com/GrahamDumpleton/mod_wsgi#tag=$pkgver")
+md5sums=('SKIP')
+
+build() {
+  # Configure and build mod_wsgi for py2
+  cp -r "$pkgbase" py2
+  cd py2
+  ./configure \
+    --prefix=/usr \
+    --with-apxs=/usr/bin/apxs \
+    --with-python=/usr/bin/python2
+
+  make
+
+  # Configure and build mod_wsgi for py3
+  cd "$srcdir/$pkgbase"
+  ./configure \
+    --prefix=/usr \
+    --with-apxs=/usr/bin/apxs \
+    --with-python=/usr/bin/python
+
+  make LDLIBS="$(pkg-config python3 --libs) -lpthread -ldl -lutil -lm"
+}
+
+package_mod_wsgi() {
+  pkgdesc='Python WSGI adapter module for Apache'
+  depends=('apache' 'python')
+  conflicts=('mod_wsgi2')
+
+  make -C "$pkgbase" DESTDIR="$pkgdir" install
+}
+
+package_mod_wsgi2() {
+  pkgdesc='Python2 WSGI adapter module for Apache'
+  depends=('apache' 'python2')
+  conflicts=('mod_wsgi')
+
+  make -C py2 DESTDIR="$pkgdir" install
+}
+
+# getver: github.com/GrahamDumpleton/mod_wsgi
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/mod_wsgi.install
===================================================================
--- community-x86_64/mod_wsgi.install	2017-11-01 11:18:27 UTC (rev 264994)
+++ community-x86_64/mod_wsgi.install	2017-11-01 11:18:41 UTC (rev 264995)
@@ -1,14 +0,0 @@
-post_install() {
-/bin/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
-}

Copied: mod_wsgi/repos/community-x86_64/mod_wsgi.install (from rev 264994, mod_wsgi/trunk/mod_wsgi.install)
===================================================================
--- community-x86_64/mod_wsgi.install	                        (rev 0)
+++ community-x86_64/mod_wsgi.install	2017-11-01 11:18:41 UTC (rev 264995)
@@ -0,0 +1,14 @@
+post_install() {
+  /bin/cat << dog
+==>
+==>
+==>  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.
+==>
+==>
+dog
+}



More information about the arch-commits mailing list