Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/web
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7222

Modified Files:
        nginx.info 
Added Files:
        nginx-cur.info 
Log Message:
Update to latest stable version
Add current mainline version


Index: nginx.info
===================================================================
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/web/nginx.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- nginx.info  10 Jan 2013 21:20:36 -0000      1.2
+++ nginx.info  9 Jun 2013 12:00:53 -0000       1.3
@@ -1,5 +1,5 @@
 Package: nginx
-Version: 1.3.11
+Version: 1.4.1
 Revision: 1
 Description: Small, powerful, scalable web/proxy server
 License: BSD
@@ -8,7 +8,7 @@
 BuildDepends: fink (>= 0.24.12), pcre, system-openssl-dev, gd2, geoip-dev
 Provides: httpd
 Source: http://nginx.org/download/%n-%v.tar.gz
-Source-MD5: 4d299999bca4d2cecfbe48e51684a345
+Source-MD5: fea7dfab995545ce27fe4c49dc21a972
 SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE 
-Wno-deprecated-declarations
 SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include
 SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE

--- NEW FILE: nginx-cur.info ---
Package: nginx-cur
Version: 1.5.1
Revision: 1
Description: Small, powerful, scalable web/proxy server
License: BSD
Maintainer: Andreas Gockel <fink-ng...@unixforge.de>
Depends: daemonic, pcre-shlibs, gd2-shlibs, gd2-bin, geoip, geoip-shlibs
BuildDepends: fink (>= 0.24.12), pcre, system-openssl-dev, gd2, geoip-dev
Provides: httpd
Replaces: nginx
Conflicts: nginx
Source: http://nginx.org/download/nginx-%v.tar.gz
Source-MD5: de43ddea9d7447d6ab640436eca98960
SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE 
-Wno-deprecated-declarations
SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include
SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie 
-L%p/lib/system-openssl/lib
ConfigureParams: <<
 --conf-path=%p/etc/nginx/nginx.conf\
 --error-log-path=%p/var/log/nginx/error.log\
 --http-client-body-temp-path=%p/var/lib/nginx/body\
 --http-fastcgi-temp-path=%p/var/lib/nginx/fastcgi\
 --http-log-path=%p/var/log/nginx/access.log\
 --http-proxy-temp-path=%p/var/lib/nginx/proxy\
 --http-scgi-temp-path=%p/var/lib/nginx/scgi\
 --http-uwsgi-temp-path=%p/var/lib/nginx/uwsgi\
 --lock-path=%p/var/lock/nginx/nginx.lock\
 --pid-path=%p/var/run/nginx.pid\
 --with-pcre-jit\
 --with-debug\
 --with-http_addition_module\
 --with-http_dav_module\
 --with-http_flv_module\
 --with-http_geoip_module\
 --with-http_gzip_static_module\
 --with-http_image_filter_module\
 --with-http_realip_module\
 --with-http_stub_status_module\
 --with-http_ssl_module\
 --with-http_sub_module\
 --with-http_xslt_module\
 --with-ipv6\
 --with-mail\
 --with-mail_ssl_module\
 --user=www\
 --group=www\
 --with-ld-opt="-L%p/lib"\
 --with-cc-opt="-I%p/include"
<<
InstallScript: <<
 make install prefix=%p DESTDIR=%d
 /usr/bin/install -d -m 775 %i/var/nginx/www
 /usr/bin/install -d -m 755 
%i/var/{lib/nginx{,/body,/fastcgi,/proxy,/scgi,/uwsgi},lock/nginx}
 /bin/mv %i/html/* %i/var/nginx/www/
 /bin/rmdir %i/html
 /usr/bin/sed -i .removeme -e 's1log  logs1log  %p/var/log/nginx1g' 
%i/etc/nginx/nginx.conf{,.default}
 /usr/bin/sed -i .removeme -e 's1pid        logs1pid        %p/var/run/1g' 
%i/etc/nginx/nginx.conf{,.default}
 /usr/bin/sed -i .removeme -e 's1#user  nobody;1user  www;1g' 
%i/etc/nginx/nginx.conf{,.default}
 /usr/bin/sed -i .removeme -e 's1root   html;1root   %p/var/nginx/www;1g' 
%i/etc/nginx/nginx.conf{,.default}
 /usr/bin/find %i -name \*.removeme -delete
<<
DocFiles: CHANGES CHANGES.ru LICENSE README
PostInstScript: <<
#/bin/sh -ex
 if [ "$1" = "configure" ]; then
  /usr/sbin/chown -R www:www %p/var/log/nginx %p/var/lib/nginx %p/var/nginx/www 
%p/var/lock/nginx
  %p/bin/daemonic install net.nginx.nginx
 fi
 if [ "$1" = "upgrade" ]; then
  %p/bin/daemonic update net.nginx.nginx
 fi
 %p/bin/daemonic enable net.nginx.nginx
 if [ -f %p/var/run/nginx.pid ]; then
  echo "Stopping nginx"
  killall nginx 2>/dev/null
  echo "Starting nginx"
  %p/sbin/nginx
fi
<<
PreRmScript: <<
#/bin/sh -ex
 if [ "$1" != "upgrade" ]; then
  if [ -f %p/var/run/nginx.pid ]; then
   echo "Stopping nginx"
   killall nginx 2>/dev/null
  fi
 %p/bin/daemonic disable net.nginx.nginx
fi
<<
ConfFiles: <<
 %p/etc/nginx/fastcgi_params %p/etc/nginx/fastcgi_params.default 
%p/etc/nginx/koi-utf
 %p/etc/nginx/koi-win %p/etc/nginx/mime.types %p/etc/nginx/mime.types.default
 %p/etc/nginx/nginx.conf %p/etc/nginx/nginx.conf.default %p/etc/nginx/win-utf
<<
DaemonicName: net.nginx.nginx
DaemonicFile: <<
<service>
  <description>Nginx web server</description>
  <message>Nginx %v</message>
 
        <daemon name="net.nginx.nginx">
                <executable background="yes">%p/sbin/nginx</executable>
                <configfile>%p/etc/nginx/nginx.conf</configfile>
                <pidfile>%p/var/run/nginx.pid</pidfile>
        </daemon>
</service>
<<
Homepage: http://nginx.org/
DescDetail: <<
 Nginx ("engine X") is a high-performance web and reverse proxy server
 created by Igor Sysoev. It can be used both as a standalone web server
 and as a proxy to reduce the load on back-end HTTP or mail servers.
 .
 This package provides a version of nginx with the complete set of
 standard modules included (but omitting some of those included in
 nginx-extra).
 .
 STANDARD HTTP MODULES: Core, Access, Auth Basic, Auto Index, Browser,
 Charset, Empty GIF, FastCGI, Geo, Gzip, Headers, Index, Limit Requests,
 Limit Zone, Log, Map, Memcached, Proxy, Referer, Rewrite, SCGI,
 Split Clients, SSI, Upstream, User ID, UWSGI.
 .
 OPTIONAL HTTP MODULES: Addition, Debug, GeoIP, Gzip Precompression,
 HTTP Sub, Image Filter, IPv6, Real IP, SSL, Stub Status, Substitution,
 WebDAV, XSLT.
 .
 MAIL MODULES: Mail Core, IMAP, POP3, SMTP, SSL.
<<
InfoTest: <<
 TestScript: echo "Nothing to test here"
<<


------------------------------------------------------------------------------
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to