[arch-commits] Commit in nginx/repos (5 files)

2020-08-20 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, August 20, 2020 @ 16:19:27
  Author: grazzolini
Revision: 394443

archrelease: copy trunk to testing-x86_64

Added:
  nginx/repos/testing-x86_64/
  nginx/repos/testing-x86_64/PKGBUILD
(from rev 394442, nginx/trunk/PKGBUILD)
  nginx/repos/testing-x86_64/logrotate
(from rev 394442, nginx/trunk/logrotate)
  nginx/repos/testing-x86_64/nginx.install
(from rev 394442, nginx/trunk/nginx.install)
  nginx/repos/testing-x86_64/service
(from rev 394442, nginx/trunk/service)

---+
 PKGBUILD  |  150 
 logrotate |   10 +++
 nginx.install |   27 ++
 service   |   16 +
 4 files changed, 203 insertions(+)

Copied: nginx/repos/testing-x86_64/PKGBUILD (from rev 394442, 
nginx/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-08-20 16:19:27 UTC (rev 394443)
@@ -0,0 +1,150 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Sergej Pupykin 
+# Contributor: Miroslaw Szot 
+# Contributor: Daniel Micay 
+
+pkgbase=nginx
+pkgname=(nginx nginx-src)
+pkgver=1.18.0
+pkgrel=2
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server'
+arch=(x86_64)
+url='https://nginx.org'
+license=(custom)
+depends=(pcre zlib openssl geoip mailcap libxcrypt)
+makedepends=(mercurial)
+checkdepends=(perl perl-gd perl-io-socket-ssl perl-fcgi perl-cache-memcached
+  memcached ffmpeg inetutils) 
+backup=(etc/nginx/fastcgi.conf
+etc/nginx/fastcgi_params
+etc/nginx/koi-win
+etc/nginx/koi-utf
+etc/nginx/nginx.conf
+etc/nginx/scgi_params
+etc/nginx/uwsgi_params
+etc/nginx/win-utf
+etc/logrotate.d/nginx)
+install=nginx.install
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+hg+https://hg.nginx.org/nginx-tests#revision=c1d167a13c24
+service
+logrotate)
+validpgpkeys=(B0F4253373F8F6F510D42178520A9993A1C052F8) # Maxim Dounin 

+md5sums=('b2d33d24d89b8b1f87ff5d251aa27eb8'
+ 'SKIP'
+ 'SKIP'
+ 'ba2e3b08ce0f0fff7cced624d0ecf7cc'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+
+_common_flags=(
+  --with-compat
+  --with-debug
+  --with-file-aio
+  --with-http_addition_module
+  --with-http_auth_request_module
+  --with-http_dav_module
+  --with-http_degradation_module
+  --with-http_flv_module
+  --with-http_geoip_module
+  --with-http_gunzip_module
+  --with-http_gzip_static_module
+  --with-http_mp4_module
+  --with-http_realip_module
+  --with-http_secure_link_module
+  --with-http_slice_module
+  --with-http_ssl_module
+  --with-http_stub_status_module
+  --with-http_sub_module
+  --with-http_v2_module
+  --with-mail
+  --with-mail_ssl_module
+  --with-pcre-jit
+  --with-stream
+  --with-stream_geoip_module
+  --with-stream_realip_module
+  --with-stream_ssl_module
+  --with-stream_ssl_preread_module
+  --with-threads
+)
+
+_stable_flags=(
+)
+
+prepare() {
+  cp -r $pkgbase-$pkgver{,-src}
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  ./configure \
+--prefix=/etc/nginx \
+--conf-path=/etc/nginx/nginx.conf \
+--sbin-path=/usr/bin/nginx \
+--pid-path=/run/nginx.pid \
+--lock-path=/run/lock/nginx.lock \
+--user=http \
+--group=http \
+--http-log-path=/var/log/nginx/access.log \
+--error-log-path=stderr \
+--http-client-body-temp-path=/var/lib/nginx/client-body \
+--http-proxy-temp-path=/var/lib/nginx/proxy \
+--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
+--http-scgi-temp-path=/var/lib/nginx/scgi \
+--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
+--with-cc-opt="$CFLAGS $CPPFLAGS" \
+--with-ld-opt="$LDFLAGS" \
+${_common_flags[@]} \
+${_stable_flags[@]}
+
+  make
+}
+
+check() {
+  cd nginx-tests
+  TEST_NGINX_BINARY="$srcdir/$pkgbase-$pkgver/objs/nginx" prove .
+}
+
+package_nginx() {
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
+
+  for i in ftdetect indent syntax; do
+install -Dm644 contrib/vim/$i/nginx.vim \
+  "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim"
+  done
+}
+
+package_nginx-src() {
+  pkgdesc="Source code of nginx $pkgver, useful for building modules"
+  depends=()
+  install -d "$pkgdir/usr/src"
+  cp -r $pkgbase-$pkgver-src "$pkgdir/usr/src/nginx"
+}

Copied: nginx/repos/testing-x86_64/logrotate (from rev 394442, 
nginx/trunk/logrotate)
===
--- testing-x86_64/logrotate(rev 0)
+++ testing-x86_64/logrotate2020-08-20 16:19:27 UTC (rev 394443)
@@ -0,0 +1,10 @@
+/var/log/nginx/*log {
+   missingok
+   notifempty
+   create 640 http log
+   sharedscripts
+   compress
+   postrotate
+   test ! -r /run/nginx.pid || kill -USR1 `cat /run/nginx.pid`
+   

[arch-commits] Commit in nginx/repos (5 files)

2020-04-22 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, April 22, 2020 @ 18:14:41
  Author: grazzolini
Revision: 380727

archrelease: copy trunk to staging-x86_64

Added:
  nginx/repos/staging-x86_64/
  nginx/repos/staging-x86_64/PKGBUILD
(from rev 380726, nginx/trunk/PKGBUILD)
  nginx/repos/staging-x86_64/logrotate
(from rev 380726, nginx/trunk/logrotate)
  nginx/repos/staging-x86_64/nginx.install
(from rev 380726, nginx/trunk/nginx.install)
  nginx/repos/staging-x86_64/service
(from rev 380726, nginx/trunk/service)

---+
 PKGBUILD  |  150 
 logrotate |   10 +++
 nginx.install |   27 ++
 service   |   16 +
 4 files changed, 203 insertions(+)

Copied: nginx/repos/staging-x86_64/PKGBUILD (from rev 380726, 
nginx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-04-22 18:14:41 UTC (rev 380727)
@@ -0,0 +1,150 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Sergej Pupykin 
+# Contributor: Miroslaw Szot 
+# Contributor: Daniel Micay 
+
+pkgbase=nginx
+pkgname=(nginx nginx-src)
+pkgver=1.18.0
+pkgrel=1
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server'
+arch=(x86_64)
+url='https://nginx.org'
+license=(custom)
+depends=(pcre zlib openssl geoip mailcap)
+makedepends=(mercurial)
+checkdepends=(perl perl-gd perl-io-socket-ssl perl-fcgi perl-cache-memcached
+  memcached ffmpeg inetutils) 
+backup=(etc/nginx/fastcgi.conf
+etc/nginx/fastcgi_params
+etc/nginx/koi-win
+etc/nginx/koi-utf
+etc/nginx/nginx.conf
+etc/nginx/scgi_params
+etc/nginx/uwsgi_params
+etc/nginx/win-utf
+etc/logrotate.d/nginx)
+install=nginx.install
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+hg+http://hg.nginx.org/nginx-tests#revision=c1d167a13c24
+service
+logrotate)
+validpgpkeys=(B0F4253373F8F6F510D42178520A9993A1C052F8) # Maxim Dounin 

+md5sums=('b2d33d24d89b8b1f87ff5d251aa27eb8'
+ 'SKIP'
+ 'SKIP'
+ 'ba2e3b08ce0f0fff7cced624d0ecf7cc'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+
+_common_flags=(
+  --with-compat
+  --with-debug
+  --with-file-aio
+  --with-http_addition_module
+  --with-http_auth_request_module
+  --with-http_dav_module
+  --with-http_degradation_module
+  --with-http_flv_module
+  --with-http_geoip_module
+  --with-http_gunzip_module
+  --with-http_gzip_static_module
+  --with-http_mp4_module
+  --with-http_realip_module
+  --with-http_secure_link_module
+  --with-http_slice_module
+  --with-http_ssl_module
+  --with-http_stub_status_module
+  --with-http_sub_module
+  --with-http_v2_module
+  --with-mail
+  --with-mail_ssl_module
+  --with-pcre-jit
+  --with-stream
+  --with-stream_geoip_module
+  --with-stream_realip_module
+  --with-stream_ssl_module
+  --with-stream_ssl_preread_module
+  --with-threads
+)
+
+_stable_flags=(
+)
+
+prepare() {
+  cp -r $pkgbase-$pkgver{,-src}
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  ./configure \
+--prefix=/etc/nginx \
+--conf-path=/etc/nginx/nginx.conf \
+--sbin-path=/usr/bin/nginx \
+--pid-path=/run/nginx.pid \
+--lock-path=/run/lock/nginx.lock \
+--user=http \
+--group=http \
+--http-log-path=/var/log/nginx/access.log \
+--error-log-path=stderr \
+--http-client-body-temp-path=/var/lib/nginx/client-body \
+--http-proxy-temp-path=/var/lib/nginx/proxy \
+--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
+--http-scgi-temp-path=/var/lib/nginx/scgi \
+--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
+--with-cc-opt="$CFLAGS $CPPFLAGS" \
+--with-ld-opt="$LDFLAGS" \
+${_common_flags[@]} \
+${_stable_flags[@]}
+
+  make
+}
+
+check() {
+  cd nginx-tests
+  TEST_NGINX_BINARY="$srcdir/$pkgbase-$pkgver/objs/nginx" prove .
+}
+
+package_nginx() {
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
+
+  for i in ftdetect indent syntax; do
+install -Dm644 contrib/vim/$i/nginx.vim \
+  "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim"
+  done
+}
+
+package_nginx-src() {
+  pkgdesc="Source code of nginx $pkgver, useful for building modules"
+  depends=()
+  install -d "$pkgdir/usr/src"
+  cp -r $pkgbase-$pkgver-src "$pkgdir/usr/src/nginx"
+}

Copied: nginx/repos/staging-x86_64/logrotate (from rev 380726, 
nginx/trunk/logrotate)
===
--- staging-x86_64/logrotate(rev 0)
+++ staging-x86_64/logrotate2020-04-22 18:14:41 UTC (rev 380727)
@@ -0,0 +1,10 @@
+/var/log/nginx/*log {
+   missingok
+   notifempty
+   create 640 http log
+   sharedscripts
+   compress
+   postrotate
+   test ! -r /run/nginx.pid || kill -USR1 `cat /run/nginx.pid`
+   endscript
+}

[arch-commits] Commit in nginx/repos (5 files)

2019-05-08 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, May 9, 2019 @ 01:28:10
  Author: grazzolini
Revision: 352791

archrelease: copy trunk to staging-x86_64

Added:
  nginx/repos/staging-x86_64/
  nginx/repos/staging-x86_64/PKGBUILD
(from rev 352790, nginx/trunk/PKGBUILD)
  nginx/repos/staging-x86_64/logrotate
(from rev 352790, nginx/trunk/logrotate)
  nginx/repos/staging-x86_64/nginx.install
(from rev 352790, nginx/trunk/nginx.install)
  nginx/repos/staging-x86_64/service
(from rev 352790, nginx/trunk/service)

---+
 PKGBUILD  |  138 
 logrotate |   10 
 nginx.install |   27 ++
 service   |   16 ++
 4 files changed, 191 insertions(+)

Copied: nginx/repos/staging-x86_64/PKGBUILD (from rev 352790, 
nginx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-05-09 01:28:10 UTC (rev 352791)
@@ -0,0 +1,138 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Sergej Pupykin 
+# Contributor: Miroslaw Szot 
+# Contributor: Daniel Micay 
+
+pkgname=nginx
+pkgver=1.16.0
+pkgrel=1
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server'
+arch=(x86_64)
+url='https://nginx.org'
+license=(custom)
+depends=(pcre zlib openssl geoip mailcap)
+makedepends=(mercurial)
+checkdepends=(perl perl-gd perl-io-socket-ssl perl-fcgi perl-cache-memcached
+  memcached ffmpeg inetutils) 
+backup=(etc/nginx/fastcgi.conf
+etc/nginx/fastcgi_params
+etc/nginx/koi-win
+etc/nginx/koi-utf
+etc/nginx/nginx.conf
+etc/nginx/scgi_params
+etc/nginx/uwsgi_params
+etc/nginx/win-utf
+etc/logrotate.d/nginx)
+install=nginx.install
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+hg+http://hg.nginx.org/nginx-tests#revision=ddbde6c5b0cd
+service
+logrotate)
+validpgpkeys=(B0F4253373F8F6F510D42178520A9993A1C052F8) # Maxim Dounin 

+md5sums=('97207283f30cd90cdba638c3ea30323a'
+ 'SKIP'
+ 'SKIP'
+ 'ba2e3b08ce0f0fff7cced624d0ecf7cc'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+
+_common_flags=(
+  --with-compat
+  --with-debug
+  --with-file-aio
+  --with-http_addition_module
+  --with-http_auth_request_module
+  --with-http_dav_module
+  --with-http_degradation_module
+  --with-http_flv_module
+  --with-http_geoip_module
+  --with-http_gunzip_module
+  --with-http_gzip_static_module
+  --with-http_mp4_module
+  --with-http_realip_module
+  --with-http_secure_link_module
+  --with-http_slice_module
+  --with-http_ssl_module
+  --with-http_stub_status_module
+  --with-http_sub_module
+  --with-http_v2_module
+  --with-mail
+  --with-mail_ssl_module
+  --with-pcre-jit
+  --with-stream
+  --with-stream_geoip_module
+  --with-stream_realip_module
+  --with-stream_ssl_module
+  --with-stream_ssl_preread_module
+  --with-threads
+)
+
+_stable_flags=(
+)
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/etc/nginx \
+--conf-path=/etc/nginx/nginx.conf \
+--sbin-path=/usr/bin/nginx \
+--pid-path=/run/nginx.pid \
+--lock-path=/run/lock/nginx.lock \
+--user=http \
+--group=http \
+--http-log-path=/var/log/nginx/access.log \
+--error-log-path=stderr \
+--http-client-body-temp-path=/var/lib/nginx/client-body \
+--http-proxy-temp-path=/var/lib/nginx/proxy \
+--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
+--http-scgi-temp-path=/var/lib/nginx/scgi \
+--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
+--with-cc-opt="$CFLAGS $CPPFLAGS" \
+--with-ld-opt="$LDFLAGS" \
+${_common_flags[@]} \
+${_stable_flags[@]}
+
+  make
+}
+
+check() {
+  cd nginx-tests
+  TEST_NGINX_BINARY="$srcdir/$pkgname-$pkgver/objs/nginx" prove .
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
+
+  for i in ftdetect indent syntax; do
+install -Dm644 contrib/vim/$i/nginx.vim \
+  "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim"
+  done
+}

Copied: nginx/repos/staging-x86_64/logrotate (from rev 352790, 
nginx/trunk/logrotate)
===
--- staging-x86_64/logrotate(rev 0)
+++ staging-x86_64/logrotate2019-05-09 01:28:10 UTC (rev 352791)
@@ -0,0 +1,10 @@
+/var/log/nginx/*log {
+   missingok
+   notifempty
+   create 640 http log
+   sharedscripts
+   compress
+   postrotate
+   test ! -r /run/nginx.pid || kill -USR1 `cat /run/nginx.pid`
+   endscript
+}

Copied: nginx/repos/staging-x86_64/nginx.install (from rev 352790, 
nginx/trunk/nginx.install)
===
--- staging-x86_64/nginx.install(rev 0)
+++ staging-x86_64/nginx.install

[arch-commits] Commit in nginx/repos (5 files)

2018-11-08 Thread Bartłomiej Piotrowski via arch-commits
Date: Friday, November 9, 2018 @ 00:41:51
  Author: bpiotrowski
Revision: 338432

archrelease: copy trunk to community-x86_64

Added:
  nginx/repos/community-x86_64/
  nginx/repos/community-x86_64/PKGBUILD
(from rev 338431, nginx/trunk/PKGBUILD)
  nginx/repos/community-x86_64/logrotate
(from rev 338431, nginx/trunk/logrotate)
  nginx/repos/community-x86_64/nginx.install
(from rev 338431, nginx/trunk/nginx.install)
  nginx/repos/community-x86_64/service
(from rev 338431, nginx/trunk/service)

---+
 PKGBUILD  |  138 
 logrotate |   10 
 nginx.install |   27 ++
 service   |   16 ++
 4 files changed, 191 insertions(+)

Copied: nginx/repos/community-x86_64/PKGBUILD (from rev 338431, 
nginx/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-11-09 00:41:51 UTC (rev 338432)
@@ -0,0 +1,138 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Sergej Pupykin 
+# Contributor: Miroslaw Szot 
+# Contributor: Daniel Micay 
+
+pkgname=nginx
+pkgver=1.14.1
+pkgrel=1
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server'
+arch=(x86_64)
+url='https://nginx.org'
+license=(custom)
+depends=(pcre zlib openssl geoip mailcap)
+makedepends=(mercurial)
+checkdepends=(perl perl-gd perl-io-socket-ssl perl-fcgi perl-cache-memcached
+  memcached ffmpeg inetutils) 
+backup=(etc/nginx/fastcgi.conf
+etc/nginx/fastcgi_params
+etc/nginx/koi-win
+etc/nginx/koi-utf
+etc/nginx/nginx.conf
+etc/nginx/scgi_params
+etc/nginx/uwsgi_params
+etc/nginx/win-utf
+etc/logrotate.d/nginx)
+install=nginx.install
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+hg+http://hg.nginx.org/nginx-tests#revision=d6daf03478ad
+service
+logrotate)
+validpgpkeys=(B0F4253373F8F6F510D42178520A9993A1C052F8) # Maxim Dounin 

+md5sums=('18561561ffa2b63885b607453390b49c'
+ 'SKIP'
+ 'SKIP'
+ 'ba2e3b08ce0f0fff7cced624d0ecf7cc'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+
+_common_flags=(
+  --with-compat
+  --with-debug
+  --with-file-aio
+  --with-http_addition_module
+  --with-http_auth_request_module
+  --with-http_dav_module
+  --with-http_degradation_module
+  --with-http_flv_module
+  --with-http_geoip_module
+  --with-http_gunzip_module
+  --with-http_gzip_static_module
+  --with-http_mp4_module
+  --with-http_realip_module
+  --with-http_secure_link_module
+  --with-http_slice_module
+  --with-http_ssl_module
+  --with-http_stub_status_module
+  --with-http_sub_module
+  --with-http_v2_module
+  --with-mail
+  --with-mail_ssl_module
+  --with-pcre-jit
+  --with-stream
+  --with-stream_geoip_module
+  --with-stream_realip_module
+  --with-stream_ssl_module
+  --with-stream_ssl_preread_module
+  --with-threads
+)
+
+_stable_flags=(
+)
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/etc/nginx \
+--conf-path=/etc/nginx/nginx.conf \
+--sbin-path=/usr/bin/nginx \
+--pid-path=/run/nginx.pid \
+--lock-path=/run/lock/nginx.lock \
+--user=http \
+--group=http \
+--http-log-path=/var/log/nginx/access.log \
+--error-log-path=stderr \
+--http-client-body-temp-path=/var/lib/nginx/client-body \
+--http-proxy-temp-path=/var/lib/nginx/proxy \
+--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
+--http-scgi-temp-path=/var/lib/nginx/scgi \
+--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
+--with-cc-opt="$CFLAGS $CPPFLAGS" \
+--with-ld-opt="$LDFLAGS" \
+${_common_flags[@]} \
+${_stable_flags[@]}
+
+  make
+}
+
+check() {
+  cd nginx-tests
+  TEST_NGINX_BINARY="$srcdir/$pkgname-$pkgver/objs/nginx" prove .
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
+
+  for i in ftdetect indent syntax; do
+install -Dm644 contrib/vim/$i/nginx.vim \
+  "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim"
+  done
+}

Copied: nginx/repos/community-x86_64/logrotate (from rev 338431, 
nginx/trunk/logrotate)
===
--- community-x86_64/logrotate  (rev 0)
+++ community-x86_64/logrotate  2018-11-09 00:41:51 UTC (rev 338432)
@@ -0,0 +1,10 @@
+/var/log/nginx/*log {
+   missingok
+   notifempty
+   create 640 http log
+   sharedscripts
+   compress
+   postrotate
+   test ! -r /run/nginx.pid || kill -USR1 `cat /run/nginx.pid`
+   endscript
+}

Copied: nginx/repos/community-x86_64/nginx.install (from rev 338431, 
nginx/trunk/nginx.install)
===
--- community-x86_64/nginx.install  (rev 0)
+++ 

[arch-commits] Commit in nginx/repos (5 files)

2018-04-20 Thread Bartłomiej Piotrowski via arch-commits
Date: Friday, April 20, 2018 @ 09:19:14
  Author: bpiotrowski
Revision: 322522

archrelease: copy trunk to staging-x86_64

Added:
  nginx/repos/staging-x86_64/
  nginx/repos/staging-x86_64/PKGBUILD
(from rev 322521, nginx/trunk/PKGBUILD)
  nginx/repos/staging-x86_64/logrotate
(from rev 322521, nginx/trunk/logrotate)
  nginx/repos/staging-x86_64/nginx.install
(from rev 322521, nginx/trunk/nginx.install)
  nginx/repos/staging-x86_64/service
(from rev 322521, nginx/trunk/service)

---+
 PKGBUILD  |  139 
 logrotate |   10 
 nginx.install |   27 ++
 service   |   16 ++
 4 files changed, 192 insertions(+)

Copied: nginx/repos/staging-x86_64/PKGBUILD (from rev 322521, 
nginx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-04-20 09:19:14 UTC (rev 322522)
@@ -0,0 +1,139 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Sébastien Luttringer
+# Contributor: Sergej Pupykin 
+# Contributor: Miroslaw Szot 
+# Contributor: Daniel Micay 
+
+pkgname=nginx
+pkgver=1.14.0
+pkgrel=1
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server'
+arch=(x86_64)
+url='https://nginx.org'
+license=(custom)
+depends=(pcre zlib openssl geoip mailcap)
+makedepends=(mercurial)
+checkdepends=(perl perl-gd perl-io-socket-ssl perl-fcgi perl-cache-memcached
+  memcached ffmpeg inetutils) 
+backup=(etc/nginx/fastcgi.conf
+etc/nginx/fastcgi_params
+etc/nginx/koi-win
+etc/nginx/koi-utf
+etc/nginx/nginx.conf
+etc/nginx/scgi_params
+etc/nginx/uwsgi_params
+etc/nginx/win-utf
+etc/logrotate.d/nginx)
+install=nginx.install
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+hg+http://hg.nginx.org/nginx-tests#revision=d6daf03478ad
+service
+logrotate)
+validpgpkeys=(B0F4253373F8F6F510D42178520A9993A1C052F8) # Maxim Dounin 

+md5sums=('2d856aca3dfe1d32e3c9f8c4cac0cc95'
+ 'SKIP'
+ 'SKIP'
+ 'ba2e3b08ce0f0fff7cced624d0ecf7cc'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+
+_common_flags=(
+  --with-compat
+  --with-debug
+  --with-file-aio
+  --with-http_addition_module
+  --with-http_auth_request_module
+  --with-http_dav_module
+  --with-http_degradation_module
+  --with-http_flv_module
+  --with-http_geoip_module
+  --with-http_gunzip_module
+  --with-http_gzip_static_module
+  --with-http_mp4_module
+  --with-http_realip_module
+  --with-http_secure_link_module
+  --with-http_slice_module
+  --with-http_ssl_module
+  --with-http_stub_status_module
+  --with-http_sub_module
+  --with-http_v2_module
+  --with-mail
+  --with-mail_ssl_module
+  --with-pcre-jit
+  --with-stream
+  --with-stream_geoip_module
+  --with-stream_realip_module
+  --with-stream_ssl_module
+  --with-stream_ssl_preread_module
+  --with-threads
+)
+
+_stable_flags=(
+)
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/etc/nginx \
+--conf-path=/etc/nginx/nginx.conf \
+--sbin-path=/usr/bin/nginx \
+--pid-path=/run/nginx.pid \
+--lock-path=/run/lock/nginx.lock \
+--user=http \
+--group=http \
+--http-log-path=/var/log/nginx/access.log \
+--error-log-path=stderr \
+--http-client-body-temp-path=/var/lib/nginx/client-body \
+--http-proxy-temp-path=/var/lib/nginx/proxy \
+--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
+--http-scgi-temp-path=/var/lib/nginx/scgi \
+--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
+--with-cc-opt="$CFLAGS $CPPFLAGS" \
+--with-ld-opt="$LDFLAGS" \
+${_common_flags[@]} \
+${_stable_flags[@]}
+
+  make
+}
+
+check() {
+  cd nginx-tests
+  TEST_NGINX_BINARY="$srcdir/$pkgname-$pkgver/objs/nginx" prove .
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
+
+  for i in ftdetect indent 

[arch-commits] Commit in nginx/repos (5 files)

2017-11-22 Thread Jan Steffens
Date: Thursday, November 23, 2017 @ 07:33:54
  Author: heftig
Revision: 310725

archrelease: copy trunk to testing-x86_64

Added:
  nginx/repos/testing-x86_64/
  nginx/repos/testing-x86_64/PKGBUILD
(from rev 310724, nginx/trunk/PKGBUILD)
  nginx/repos/testing-x86_64/logrotate
(from rev 310724, nginx/trunk/logrotate)
  nginx/repos/testing-x86_64/nginx.install
(from rev 310724, nginx/trunk/nginx.install)
  nginx/repos/testing-x86_64/service
(from rev 310724, nginx/trunk/service)

---+
 PKGBUILD  |  139 
 logrotate |   10 
 nginx.install |   27 ++
 service   |   17 ++
 4 files changed, 193 insertions(+)

Copied: nginx/repos/testing-x86_64/PKGBUILD (from rev 310724, 
nginx/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-11-23 07:33:54 UTC (rev 310725)
@@ -0,0 +1,139 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Sébastien Luttringer
+# Contributor: Sergej Pupykin 
+# Contributor: Miroslaw Szot 
+# Contributor: Daniel Micay 
+
+pkgname=nginx
+pkgver=1.12.2
+pkgrel=2
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server'
+arch=(x86_64)
+url='https://nginx.org'
+license=(custom)
+depends=(pcre zlib openssl geoip mailcap)
+makedepends=(mercurial)
+checkdepends=(perl perl-gd perl-io-socket-ssl perl-fcgi perl-cache-memcached
+  memcached ffmpeg inetutils) 
+backup=(etc/nginx/fastcgi.conf
+etc/nginx/fastcgi_params
+etc/nginx/koi-win
+etc/nginx/koi-utf
+etc/nginx/nginx.conf
+etc/nginx/scgi_params
+etc/nginx/uwsgi_params
+etc/nginx/win-utf
+etc/logrotate.d/nginx)
+install=nginx.install
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+hg+http://hg.nginx.org/nginx-tests#revision=cbda704b3093
+service
+logrotate)
+validpgpkeys=(B0F4253373F8F6F510D42178520A9993A1C052F8) # Maxim Dounin 

+md5sums=('4d2fc76211435f029271f1cf6d7eeae3'
+ 'SKIP'
+ 'SKIP'
+ 'ef491e760e7c1ffec9ca25441a150c83'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+
+_common_flags=(
+  --with-compat
+  --with-debug
+  --with-file-aio
+  --with-http_addition_module
+  --with-http_auth_request_module
+  --with-http_dav_module
+  --with-http_degradation_module
+  --with-http_flv_module
+  --with-http_geoip_module
+  --with-http_gunzip_module
+  --with-http_gzip_static_module
+  --with-http_mp4_module
+  --with-http_realip_module
+  --with-http_secure_link_module
+  --with-http_slice_module
+  --with-http_ssl_module
+  --with-http_stub_status_module
+  --with-http_sub_module
+  --with-http_v2_module
+  --with-mail
+  --with-mail_ssl_module
+  --with-pcre-jit
+  --with-stream
+  --with-stream_geoip_module
+  --with-stream_realip_module
+  --with-stream_ssl_module
+  --with-stream_ssl_preread_module
+  --with-threads
+)
+
+_stable_flags=(
+)
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/etc/nginx \
+--conf-path=/etc/nginx/nginx.conf \
+--sbin-path=/usr/bin/nginx \
+--pid-path=/run/nginx.pid \
+--lock-path=/run/lock/nginx.lock \
+--user=http \
+--group=http \
+--http-log-path=/var/log/nginx/access.log \
+--error-log-path=stderr \
+--http-client-body-temp-path=/var/lib/nginx/client-body \
+--http-proxy-temp-path=/var/lib/nginx/proxy \
+--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
+--http-scgi-temp-path=/var/lib/nginx/scgi \
+--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
+--with-cc-opt="$CFLAGS $CPPFLAGS" \
+--with-ld-opt="$LDFLAGS" \
+${_common_flags[@]} \
+${_stable_flags[@]}
+
+  make
+}
+
+check() {
+  cd nginx-tests
+  TEST_NGINX_BINARY="$srcdir/$pkgname-$pkgver/objs/nginx" prove .
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
+
+  for i in ftdetect indent