Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Jan 2014 05:01:54 +0000 (UTC)
From:      "Sergey A. Osokin" <osa@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r338622 - in head/www: nginx nginx-devel nginx-devel/files nginx/files rubygem-passenger
Message-ID:  <201401040501.s0451skN032999@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: osa
Date: Sat Jan  4 05:01:53 2014
New Revision: 338622
URL: http://svnweb.freebsd.org/changeset/ports/338622

Log:
  Update from 4.0.30 to 4.0.33:
  
  o) www/rubygem-passenger;
  o) third-party modules for www/nginx and www/nginx-devel.
  
  <ChangeLog>
  
  Release 4.0.33
  --------------
  
  * Fixed a compatibility problem in passenger-install-apache2-module with Ruby 1.8.
    The language selection menu didn't work properly.
  
  Release 4.0.32
  --------------
  
  * Fixed compatibility problems with old Ruby versions that didn't include RubyGems.
  
  Release 4.0.31
  --------------
  
  * Introduced a new tool: `passenger-config restart-app`. With this command you
    can initiate an application restart without touching restart.txt.
    Unlike touching restart.txt, this tool initiates the restart immediately
    instead of on the next request.
  * Fixed some problems in process spawning and request handling.
  * Fixed some problems with the handling of HTTP chunked transfer encoding
    bodies. These problems only occurred in Ruby.
  * Fixed the HelperAgent, upon shutdown, not correctly waiting 5 seconds until
    all clients have disconnected. Fixes issue #884.
  * Fixed compilation problems on FreeBSD.
  * Fixed some C++ strict aliasing problems.
  * Fixed some problems with spawning applications that print messages without
    newline during startup. Fixes issue #1039.
  * Fixed potential hangs on JRuby when Ctrl-C is used to shutdown the server.
    Fixes issue #1035.
  * When Phusion Passenger is installed through the Debian package,
    passenger-install-apache2-module now checks whether the Apache
    module package (libapache2-mod-passenger) is properly installed,
    and installs it using apt-get if it's not installed. Fixes
    issue #1031.
  * The `passenger-status --show=xml` command no longer prints the non-XML
    preamble, such as the version number and the time. Fixes issue #1037.
  * The Ruby native extension check whether it's loaded against the right Ruby
    version, to prevent problems when people upgrade Ruby without recompiling
    their native extensions.
  * Various other minor Debian packaging improvements.
  
  </ChangeLog>

Modified:
  head/www/nginx-devel/Makefile
  head/www/nginx-devel/distinfo
  head/www/nginx-devel/files/extra-patch-passenger-build-nginx.rb
  head/www/nginx/Makefile
  head/www/nginx/distinfo
  head/www/nginx/files/extra-patch-passenger-build-nginx.rb
  head/www/rubygem-passenger/Makefile
  head/www/rubygem-passenger/distinfo

Modified: head/www/nginx-devel/Makefile
==============================================================================
--- head/www/nginx-devel/Makefile	Sat Jan  4 02:13:11 2014	(r338621)
+++ head/www/nginx-devel/Makefile	Sat Jan  4 05:01:53 2014	(r338622)
@@ -644,7 +644,7 @@ CONFIGURE_ARGS+=--without-http_rewrite_m
 .endif
 
 .if ${PORT_OPTIONS:MPASSENGER}
-PASSENGER_VERSION=	4.0.30
+PASSENGER_VERSION=	4.0.33
 MASTER_SITES+=	http://s3.amazonaws.com/phusion-passenger/releases/:passenger
 DISTFILES+=	passenger-${PASSENGER_VERSION}.tar.gz:passenger
 CONFIGURE_ARGS+=--add-module=${WRKDIR}/passenger-${PASSENGER_VERSION}/ext/nginx

Modified: head/www/nginx-devel/distinfo
==============================================================================
--- head/www/nginx-devel/distinfo	Sat Jan  4 02:13:11 2014	(r338621)
+++ head/www/nginx-devel/distinfo	Sat Jan  4 05:01:53 2014	(r338622)
@@ -72,8 +72,8 @@ SHA256 (modsecurity-apache_2.7.5.tar.gz)
 SIZE (modsecurity-apache_2.7.5.tar.gz) = 1045387
 SHA256 (naxsi-core-0.50.tgz) = 7cece5f9d9c5df9e09af1e1023bc8e04bbbbe953e67461b893b8240e82ca52ef
 SIZE (naxsi-core-0.50.tgz) = 49809
-SHA256 (passenger-4.0.30.tar.gz) = 295849fabfa8abe2c7227effea2e81ccf9925ff27310372ce02cd00d28401307
-SIZE (passenger-4.0.30.tar.gz) = 4304256
+SHA256 (passenger-4.0.33.tar.gz) = 31d0e96e2c025a086a5c6ebdb06f7539a2756d74b0703e2f88de7c5425f41a8d
+SIZE (passenger-4.0.33.tar.gz) = 4229510
 SHA256 (ngx_postgres-0.9.tar.gz) = aac0141e73b5c440927b7e040072f120b36e49deb2ff36ad00ff96a80622fbec
 SIZE (ngx_postgres-0.9.tar.gz) = 41022
 SHA256 (agentzh-rds-csv-nginx-module-v0.05-0-g607e26b.tar.gz) = 3fa9cb3960a97f505c9ad0cc8683c8fe17ba98aa98d003e255bf214e5144751c

Modified: head/www/nginx-devel/files/extra-patch-passenger-build-nginx.rb
==============================================================================
--- head/www/nginx-devel/files/extra-patch-passenger-build-nginx.rb	Sat Jan  4 02:13:11 2014	(r338621)
+++ head/www/nginx-devel/files/extra-patch-passenger-build-nginx.rb	Sat Jan  4 05:01:53 2014	(r338622)
@@ -1,5 +1,5 @@
---- ../passenger-4.0.30/build/nginx.rb.orig	2013-10-12 11:05:08.000000000 +0400
-+++ ../passenger-4.0.30/build/nginx.rb	2013-10-12 11:06:18.000000000 +0400
+--- ../passenger-4.0.33/build/nginx.rb.orig	2013-10-12 11:05:08.000000000 +0400
++++ ../passenger-4.0.33/build/nginx.rb	2013-10-12 11:06:18.000000000 +0400
 @@ -32,16 +32,12 @@
  desc "Build Nginx support files"
  task :nginx => [

Modified: head/www/nginx/Makefile
==============================================================================
--- head/www/nginx/Makefile	Sat Jan  4 02:13:11 2014	(r338621)
+++ head/www/nginx/Makefile	Sat Jan  4 05:01:53 2014	(r338622)
@@ -647,7 +647,7 @@ CONFIGURE_ARGS+=--without-http_rewrite_m
 .endif
 
 .if ${PORT_OPTIONS:MPASSENGER}
-PASSENGER_VERSION=	4.0.30
+PASSENGER_VERSION=	4.0.33
 MASTER_SITES+=	http://s3.amazonaws.com/phusion-passenger/releases/:passenger
 DISTFILES+=	passenger-${PASSENGER_VERSION}.tar.gz:passenger
 CONFIGURE_ARGS+=--add-module=${WRKDIR}/passenger-${PASSENGER_VERSION}/ext/nginx

Modified: head/www/nginx/distinfo
==============================================================================
--- head/www/nginx/distinfo	Sat Jan  4 02:13:11 2014	(r338621)
+++ head/www/nginx/distinfo	Sat Jan  4 05:01:53 2014	(r338622)
@@ -74,8 +74,8 @@ SHA256 (modsecurity-apache_2.7.5.tar.gz)
 SIZE (modsecurity-apache_2.7.5.tar.gz) = 1045387
 SHA256 (naxsi-core-0.50.tgz) = 7cece5f9d9c5df9e09af1e1023bc8e04bbbbe953e67461b893b8240e82ca52ef
 SIZE (naxsi-core-0.50.tgz) = 49809
-SHA256 (passenger-4.0.30.tar.gz) = 295849fabfa8abe2c7227effea2e81ccf9925ff27310372ce02cd00d28401307
-SIZE (passenger-4.0.30.tar.gz) = 4304256
+SHA256 (passenger-4.0.33.tar.gz) = 31d0e96e2c025a086a5c6ebdb06f7539a2756d74b0703e2f88de7c5425f41a8d
+SIZE (passenger-4.0.33.tar.gz) = 4229510
 SHA256 (ngx_postgres-0.9.tar.gz) = aac0141e73b5c440927b7e040072f120b36e49deb2ff36ad00ff96a80622fbec
 SIZE (ngx_postgres-0.9.tar.gz) = 41022
 SHA256 (agentzh-rds-csv-nginx-module-v0.05-0-g607e26b.tar.gz) = 3fa9cb3960a97f505c9ad0cc8683c8fe17ba98aa98d003e255bf214e5144751c

Modified: head/www/nginx/files/extra-patch-passenger-build-nginx.rb
==============================================================================
--- head/www/nginx/files/extra-patch-passenger-build-nginx.rb	Sat Jan  4 02:13:11 2014	(r338621)
+++ head/www/nginx/files/extra-patch-passenger-build-nginx.rb	Sat Jan  4 05:01:53 2014	(r338622)
@@ -1,5 +1,5 @@
---- ../passenger-4.0.30/build/nginx.rb.orig	2013-10-12 11:05:08.000000000 +0400
-+++ ../passenger-4.0.30/build/nginx.rb	2013-10-12 11:06:18.000000000 +0400
+--- ../passenger-4.0.33/build/nginx.rb.orig	2013-10-12 11:05:08.000000000 +0400
++++ ../passenger-4.0.33/build/nginx.rb	2013-10-12 11:06:18.000000000 +0400
 @@ -32,16 +32,12 @@
  desc "Build Nginx support files"
  task :nginx => [

Modified: head/www/rubygem-passenger/Makefile
==============================================================================
--- head/www/rubygem-passenger/Makefile	Sat Jan  4 02:13:11 2014	(r338621)
+++ head/www/rubygem-passenger/Makefile	Sat Jan  4 05:01:53 2014	(r338622)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	passenger
-PORTVERSION=	4.0.30
+PORTVERSION=	4.0.33
 CATEGORIES=	www rubygems
 MASTER_SITES=	RG
 PKGNAMEPREFIX=	rubygem-
@@ -80,7 +80,7 @@ post-install:
 		s!#{PlatformInfo.debugging_cflags}!${CFLAGS}!g; \
 		s!-O2!!g; \
 		s! -feliminate-unused-debug-symbols -feliminate-unused-debug-types!!g; \
-		193,195s!true!false!' \
+		201,203s!true!false!' \
 		${PREFIX}/${GEM_LIB_DIR}/build/basics.rb
 .if ${PORT_OPTIONS:NDEBUG}
 	@${REINPLACE_CMD} \

Modified: head/www/rubygem-passenger/distinfo
==============================================================================
--- head/www/rubygem-passenger/distinfo	Sat Jan  4 02:13:11 2014	(r338621)
+++ head/www/rubygem-passenger/distinfo	Sat Jan  4 05:01:53 2014	(r338622)
@@ -1,2 +1,2 @@
-SHA256 (rubygem/passenger-4.0.30.gem) = e7d11671130bf0a546dd7f4b4d42e364afd8bb324ba929149aff327df937fd32
-SIZE (rubygem/passenger-4.0.30.gem) = 4350976
+SHA256 (rubygem/passenger-4.0.33.gem) = 138bc672314785e8cee9c78d53f20563480eabb7e5cbe91cd01e758b1569647c
+SIZE (rubygem/passenger-4.0.33.gem) = 4278272



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401040501.s0451skN032999>