Date: Tuesday, March 5, 2013 @ 11:10:33
  Author: spupykin
Revision: 85708

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

Added:
  passenger/repos/community-staging-i686/
  passenger/repos/community-staging-i686/PKGBUILD
    (from rev 85707, passenger/trunk/PKGBUILD)
  passenger/repos/community-staging-i686/passenger.install
    (from rev 85707, passenger/trunk/passenger.install)
  passenger/repos/community-staging-x86_64/
  passenger/repos/community-staging-x86_64/PKGBUILD
    (from rev 85707, passenger/trunk/PKGBUILD)
  passenger/repos/community-staging-x86_64/passenger.install
    (from rev 85707, passenger/trunk/passenger.install)

--------------------------------------------+
 community-staging-i686/PKGBUILD            |   36 +++++++++++++++++++++++++++
 community-staging-i686/passenger.install   |   32 ++++++++++++++++++++++++
 community-staging-x86_64/PKGBUILD          |   36 +++++++++++++++++++++++++++
 community-staging-x86_64/passenger.install |   32 ++++++++++++++++++++++++
 4 files changed, 136 insertions(+)

Copied: passenger/repos/community-staging-i686/PKGBUILD (from rev 85707, 
passenger/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD                             (rev 0)
+++ community-staging-i686/PKGBUILD     2013-03-05 10:10:33 UTC (rev 85708)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin <[email protected]>
+
+pkgname=passenger
+pkgver=3.9.5.rc3
+pkgrel=1
+pkgdesc="mod_rails passenger"
+arch=('i686' 'x86_64')
+url="http://www.modrails.com";
+#http://rubyforge.org/frs/?group_id=5873
+license=('GPL')
+depends=('ruby' 'ruby-rack' 'curl')
+makedepends=('apache')
+install=passenger.install
+options=('!emptydirs')
+source=($pkgname-$pkgver.tar.gz::https://github.com/FooBarWidget/passenger/archive/release-$pkgver.tar.gz)
+md5sums=('60a1e0033fd2f0928607af559e2184f7')
+
+build(){
+  cd $srcdir/passenger-release-$pkgver
+
+  sed -i 's/env python/env python2/' 
lib/phusion_passenger/wsgi/request_handler.py
+
+  ./bin/passenger-install-apache2-module -a
+  rake nginx
+}
+
+package() {
+  cd $srcdir/passenger-release-$pkgver
+
+  mkdir -p $pkgdir/usr/lib/passenger/
+  cp -R * $pkgdir/usr/lib/passenger/
+
+  mkdir -p $pkgdir/usr/lib/httpd/modules
+  ln -sf /usr/lib/passenger/ext/apache2/mod_passenger.so 
$pkgdir/usr/lib/httpd/modules/mod_passenger.so
+}

Copied: passenger/repos/community-staging-i686/passenger.install (from rev 
85707, passenger/trunk/passenger.install)
===================================================================
--- community-staging-i686/passenger.install                            (rev 0)
+++ community-staging-i686/passenger.install    2013-03-05 10:10:33 UTC (rev 
85708)
@@ -0,0 +1,32 @@
+post_install() {
+       echo "Please edit your Apache configuration file, and add these lines:"
+       echo ""
+       echo "LoadModule passenger_module 
/usr/lib/httpd/modules/mod_passenger.so"
+       echo "PassengerRoot /usr/lib/passenger"
+       echo "PassengerRuby /usr/bin/ruby"
+       echo ""
+       echo "After you restart Apache, you are ready to deploy any number of 
Ruby on Rails"
+       echo "applications on Apache, without any further Ruby on 
Rails-specific"
+       echo "configuration!"
+       echo ""
+       echo ""
+       echo "Deploying a Ruby on Rails application: an example"
+       echo ""
+       echo "Suppose you have a Ruby on Rails application in /somewhere. Add a 
virtual host"
+       echo "to your Apache configuration file, and set its DocumentRoot to"
+       echo "/somewhere/public, like this:"
+       echo ""
+       echo "<VirtualHost *:80>"
+       echo "  ServerName www.yourhost.com"
+       echo "  DocumentRoot /somewhere/public    # <-- be sure to point to 
'public'!"
+       echo "   <Directory /somewhere/public>"
+       echo "      AllowOverride all              # <-- relax Apache security 
settings"
+       echo "      Options -MultiViews            # <-- MultiViews must be 
turned off"
+       echo "   </Directory>"
+       echo "</VirtualHost>"
+       echo ""
+       echo "And that's it! You may also want to check the Users Guide for 
security and"
+       echo "optimization tips, troubleshooting and other useful information:"
+       echo ""
+       echo "/usr/lib/passenger/doc/Users guide Apache.html"
+}

Copied: passenger/repos/community-staging-x86_64/PKGBUILD (from rev 85707, 
passenger/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-03-05 10:10:33 UTC (rev 85708)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin <[email protected]>
+
+pkgname=passenger
+pkgver=3.9.5.rc3
+pkgrel=1
+pkgdesc="mod_rails passenger"
+arch=('i686' 'x86_64')
+url="http://www.modrails.com";
+#http://rubyforge.org/frs/?group_id=5873
+license=('GPL')
+depends=('ruby' 'ruby-rack' 'curl')
+makedepends=('apache')
+install=passenger.install
+options=('!emptydirs')
+source=($pkgname-$pkgver.tar.gz::https://github.com/FooBarWidget/passenger/archive/release-$pkgver.tar.gz)
+md5sums=('60a1e0033fd2f0928607af559e2184f7')
+
+build(){
+  cd $srcdir/passenger-release-$pkgver
+
+  sed -i 's/env python/env python2/' 
lib/phusion_passenger/wsgi/request_handler.py
+
+  ./bin/passenger-install-apache2-module -a
+  rake nginx
+}
+
+package() {
+  cd $srcdir/passenger-release-$pkgver
+
+  mkdir -p $pkgdir/usr/lib/passenger/
+  cp -R * $pkgdir/usr/lib/passenger/
+
+  mkdir -p $pkgdir/usr/lib/httpd/modules
+  ln -sf /usr/lib/passenger/ext/apache2/mod_passenger.so 
$pkgdir/usr/lib/httpd/modules/mod_passenger.so
+}

Copied: passenger/repos/community-staging-x86_64/passenger.install (from rev 
85707, passenger/trunk/passenger.install)
===================================================================
--- community-staging-x86_64/passenger.install                          (rev 0)
+++ community-staging-x86_64/passenger.install  2013-03-05 10:10:33 UTC (rev 
85708)
@@ -0,0 +1,32 @@
+post_install() {
+       echo "Please edit your Apache configuration file, and add these lines:"
+       echo ""
+       echo "LoadModule passenger_module 
/usr/lib/httpd/modules/mod_passenger.so"
+       echo "PassengerRoot /usr/lib/passenger"
+       echo "PassengerRuby /usr/bin/ruby"
+       echo ""
+       echo "After you restart Apache, you are ready to deploy any number of 
Ruby on Rails"
+       echo "applications on Apache, without any further Ruby on 
Rails-specific"
+       echo "configuration!"
+       echo ""
+       echo ""
+       echo "Deploying a Ruby on Rails application: an example"
+       echo ""
+       echo "Suppose you have a Ruby on Rails application in /somewhere. Add a 
virtual host"
+       echo "to your Apache configuration file, and set its DocumentRoot to"
+       echo "/somewhere/public, like this:"
+       echo ""
+       echo "<VirtualHost *:80>"
+       echo "  ServerName www.yourhost.com"
+       echo "  DocumentRoot /somewhere/public    # <-- be sure to point to 
'public'!"
+       echo "   <Directory /somewhere/public>"
+       echo "      AllowOverride all              # <-- relax Apache security 
settings"
+       echo "      Options -MultiViews            # <-- MultiViews must be 
turned off"
+       echo "   </Directory>"
+       echo "</VirtualHost>"
+       echo ""
+       echo "And that's it! You may also want to check the Users Guide for 
security and"
+       echo "optimization tips, troubleshooting and other useful information:"
+       echo ""
+       echo "/usr/lib/passenger/doc/Users guide Apache.html"
+}

Reply via email to