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

2020-08-20 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, August 20, 2020 @ 16:26:57
  Author: grazzolini
Revision: 685571

archrelease: copy trunk to community-testing-x86_64

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

---+
 PKGBUILD  |  132 
 logrotate |   10 
 nginx.install |   12 +
 service   |   17 +++
 4 files changed, 171 insertions(+)

Copied: nginx-mainline/repos/community-testing-x86_64/PKGBUILD (from rev 
685570, nginx-mainline/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-08-20 16:26:57 UTC (rev 685571)
@@ -0,0 +1,132 @@
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew DeVault
+
+pkgname=nginx-mainline
+pkgver=1.19.2
+pkgrel=2
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
+arch=('x86_64')
+url='https://nginx.org'
+license=('custom')
+depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap' 'libxcrypt')
+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
+provides=('nginx')
+conflicts=('nginx')
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+service
+logrotate)
+validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

+md5sums=('3dc55f6451ed6f819f1c796f4e5e9617'
+ 'SKIP'
+ 'ef491e760e7c1ffec9ca25441a150c83'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+sha512sums=('f6232d58a91db486cf36cc027ab84f04ad25aeafe586051043f0f3295dad5f475094f7cedad142ef0f56ff15a0971d700d6ec34b68697c462364650c49be8fcc'
+'SKIP'
+
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
+
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
+
+_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
+)
+
+_mainline_flags=(
+)
+
+build() {
+  cd $provides-$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[@]} \
+${_mainline_flags[@]}
+
+  make
+}
+
+package() {
+  cd $provides-$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-mainline/repos/community-testing-x86_64/logrotate (from rev 
685570, nginx-mainline/trunk/logrotate)
===
--- community-testing-x86_64/logrotate  (rev 0)
+++ community-testing-x86_64/logrotate  2020-08-20 16:26:57 UTC (rev 685571)
@@ -0,0 +1,10 @@
+/var/log/nginx/*log {
+   missingok
+   notifempty
+   create 640 

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

2018-07-25 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, July 25, 2018 @ 20:04:53
  Author: grazzolini
Revision: 363413

archrelease: copy trunk to community-testing-x86_64

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

---+
 PKGBUILD  |  133 
 logrotate |   10 
 nginx.install |   12 +
 service   |   17 +++
 4 files changed, 172 insertions(+)

Copied: nginx-mainline/repos/community-testing-x86_64/PKGBUILD (from rev 
363412, nginx-mainline/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-07-25 20:04:53 UTC (rev 363413)
@@ -0,0 +1,133 @@
+# $Id$
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew DeVault
+
+pkgname=nginx-mainline
+pkgver=1.15.2
+pkgrel=1
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
+arch=('x86_64')
+url='https://nginx.org'
+license=('custom')
+depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap')
+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
+provides=('nginx')
+conflicts=('nginx')
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+service
+logrotate)
+validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

+md5sums=('d063f746d3dc4298aed9c518f1684166'
+ 'SKIP'
+ 'ef491e760e7c1ffec9ca25441a150c83'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+sha512sums=('ef8171138246b851f3713ea027d6b96de414b15e24de244fa4fcb428da3a68f4df0c54152e5c0993e36c9c97d4dabcd55a019d6709840b4393c86995604668ff'
+'SKIP'
+
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
+
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
+
+_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
+)
+
+_mainline_flags=(
+)
+
+build() {
+  cd $provides-$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[@]} \
+${_mainline_flags[@]}
+
+  make
+}
+
+package() {
+  cd $provides-$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-mainline/repos/community-testing-x86_64/logrotate (from rev 
363412, nginx-mainline/trunk/logrotate)
===
--- community-testing-x86_64/logrotate  (rev 0)
+++ community-testing-x86_64/logrotate  2018-07-25 20:04:53 UTC (rev 363413)
@@ -0,0 +1,10 @@
+/var/log/nginx/*log {
+   missingok
+   notifempty
+   create 640 http 

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

2018-07-03 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, July 3, 2018 @ 17:37:23
  Author: grazzolini
Revision: 351451

archrelease: copy trunk to community-testing-x86_64

Added:
  nginx-mainline/repos/community-testing-x86_64/
  nginx-mainline/repos/community-testing-x86_64/PKGBUILD
(from rev 351448, nginx-mainline/trunk/PKGBUILD)
  nginx-mainline/repos/community-testing-x86_64/logrotate
(from rev 351448, nginx-mainline/trunk/logrotate)
  nginx-mainline/repos/community-testing-x86_64/nginx.install
(from rev 351449, nginx-mainline/trunk/nginx.install)
  nginx-mainline/repos/community-testing-x86_64/service
(from rev 351449, nginx-mainline/trunk/service)

---+
 PKGBUILD  |  133 
 logrotate |   10 
 nginx.install |   12 +
 service   |   17 +++
 4 files changed, 172 insertions(+)

Copied: nginx-mainline/repos/community-testing-x86_64/PKGBUILD (from rev 
351448, nginx-mainline/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-07-03 17:37:23 UTC (rev 351451)
@@ -0,0 +1,133 @@
+# $Id$
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew DeVault
+
+pkgname=nginx-mainline
+pkgver=1.15.1
+pkgrel=1
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
+arch=('x86_64')
+url='https://nginx.org'
+license=('custom')
+depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap')
+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
+provides=('nginx')
+conflicts=('nginx')
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+service
+logrotate)
+validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

+md5sums=('2dd5a265c54a76b699443931d80a61b9'
+ 'SKIP'
+ 'ef491e760e7c1ffec9ca25441a150c83'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+sha512sums=('bdb15791cd599d72a93d85772f8d35d83a76bab10fdfd76929173f81ed1dbad125addc305a6308c0f3d71efb836bc715acf48940047ec17fd48cf37e05b56d17'
+'SKIP'
+
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
+
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
+
+_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
+)
+
+_mainline_flags=(
+)
+
+build() {
+  cd $provides-$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[@]} \
+${_mainline_flags[@]}
+
+  make
+}
+
+package() {
+  cd $provides-$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-mainline/repos/community-testing-x86_64/logrotate (from rev 
351448, nginx-mainline/trunk/logrotate)
===
--- community-testing-x86_64/logrotate  (rev 0)
+++ community-testing-x86_64/logrotate  2018-07-03 17:37:23 UTC (rev 351451)
@@ -0,0 +1,10 @@
+/var/log/nginx/*log {
+   missingok
+   notifempty
+   create 640 http log
+ 

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

2018-06-05 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, June 6, 2018 @ 00:20:00
  Author: grazzolini
Revision: 340692

archrelease: copy trunk to community-testing-x86_64

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

---+
 PKGBUILD  |  133 
 logrotate |   10 
 nginx.install |   12 +
 service   |   17 +++
 4 files changed, 172 insertions(+)

Copied: nginx-mainline/repos/community-testing-x86_64/PKGBUILD (from rev 
340691, nginx-mainline/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-06-06 00:20:00 UTC (rev 340692)
@@ -0,0 +1,133 @@
+# $Id$
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew DeVault
+
+pkgname=nginx-mainline
+pkgver=1.15.0
+pkgrel=1
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
+arch=('x86_64')
+url='https://nginx.org'
+license=('custom')
+depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap')
+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
+provides=('nginx')
+conflicts=('nginx')
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+service
+logrotate)
+validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

+md5sums=('4a6ed39e9becf8705187b5bacb1263c8'
+ 'SKIP'
+ 'ef491e760e7c1ffec9ca25441a150c83'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+sha512sums=('7dbdf437d8d546059a8a03aa9c8d2be98dba7306e2daa49611c16f1e56413a25d4c622da13a815e8075a10f4a0cd744167deaeb971c0a69189940a7a05fa32df'
+'SKIP'
+
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
+
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
+
+_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
+)
+
+_mainline_flags=(
+)
+
+build() {
+  cd $provides-$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[@]} \
+${_mainline_flags[@]}
+
+  make
+}
+
+package() {
+  cd $provides-$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-mainline/repos/community-testing-x86_64/logrotate (from rev 
340691, nginx-mainline/trunk/logrotate)
===
--- community-testing-x86_64/logrotate  (rev 0)
+++ community-testing-x86_64/logrotate  2018-06-06 00:20:00 UTC (rev 340692)
@@ -0,0 +1,10 @@
+/var/log/nginx/*log {
+   missingok
+   notifempty
+   create 640 http log

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

2018-04-10 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, April 10, 2018 @ 16:11:52
  Author: grazzolini
Revision: 315595

archrelease: copy trunk to community-testing-x86_64

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

---+
 PKGBUILD  |  133 
 logrotate |   10 
 nginx.install |   12 +
 service   |   17 +++
 4 files changed, 172 insertions(+)

Copied: nginx-mainline/repos/community-testing-x86_64/PKGBUILD (from rev 
315594, nginx-mainline/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-04-10 16:11:52 UTC (rev 315595)
@@ -0,0 +1,133 @@
+# $Id$
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew DeVault
+
+pkgname=nginx-mainline
+pkgver=1.13.12
+pkgrel=1
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
+arch=('x86_64')
+url='https://nginx.org'
+license=('custom')
+depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap')
+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
+provides=('nginx')
+conflicts=('nginx')
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+service
+logrotate)
+validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

+md5sums=('20871b2cf21a16dbfb83078b4dc2dde0'
+ 'SKIP'
+ 'ef491e760e7c1ffec9ca25441a150c83'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+sha512sums=('c61668d4999d43ccd5ed8e99bd2f6992190503bb3c4103a22871e346feb8cbd049b04416ca7eb982c122a9a29bb21c6bb9f934411dd80bc02d946105f7917873'
+'SKIP'
+
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
+
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
+
+_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
+)
+
+_mainline_flags=(
+)
+
+build() {
+  cd $provides-$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[@]} \
+${_mainline_flags[@]}
+
+  make
+}
+
+package() {
+  cd $provides-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\

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

2018-04-04 Thread Giancarlo Razzolini via arch-commits
Date: Wednesday, April 4, 2018 @ 22:58:00
  Author: grazzolini
Revision: 314301

archrelease: copy trunk to community-testing-x86_64

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

---+
 PKGBUILD  |  133 
 logrotate |   10 
 nginx.install |   12 +
 service   |   17 +++
 4 files changed, 172 insertions(+)

Copied: nginx-mainline/repos/community-testing-x86_64/PKGBUILD (from rev 
314300, nginx-mainline/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-04-04 22:58:00 UTC (rev 314301)
@@ -0,0 +1,133 @@
+# $Id$
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew DeVault
+
+pkgname=nginx-mainline
+pkgver=1.13.11
+pkgrel=1
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
+arch=('x86_64')
+url='https://nginx.org'
+license=('custom')
+depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap')
+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
+provides=('nginx')
+conflicts=('nginx')
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+service
+logrotate)
+validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

+md5sums=('82edffd97b83afad8dbfc2068c0feafa'
+ 'SKIP'
+ 'ef491e760e7c1ffec9ca25441a150c83'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+sha512sums=('ae80317b143d3140eaf3b32c2ac1af4f491ec683b849a9565cd1c23d8d9769f23a2d4db346dea017a555da3e2bd7fa39d2710a287193abc5e2853cbb9dc21e63'
+'SKIP'
+
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
+
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
+
+_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
+)
+
+_mainline_flags=(
+)
+
+build() {
+  cd $provides-$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[@]} \
+${_mainline_flags[@]}
+
+  make
+}
+
+package() {
+  cd $provides-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\

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

2018-03-20 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, March 20, 2018 @ 18:36:23
  Author: grazzolini
Revision: 309619

archrelease: copy trunk to community-testing-x86_64

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

---+
 PKGBUILD  |  133 
 logrotate |   10 
 nginx.install |   12 +
 service   |   17 +++
 4 files changed, 172 insertions(+)

Copied: nginx-mainline/repos/community-testing-x86_64/PKGBUILD (from rev 
309618, nginx-mainline/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-03-20 18:36:23 UTC (rev 309619)
@@ -0,0 +1,133 @@
+# $Id$
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew DeVault
+
+pkgname=nginx-mainline
+pkgver=1.13.10
+pkgrel=1
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
+arch=('x86_64')
+url='https://nginx.org'
+license=('custom')
+depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap')
+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
+provides=('nginx')
+conflicts=('nginx')
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+service
+logrotate)
+validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

+md5sums=('cf1f69bd5193b0a1945baecaa91f2709'
+ 'SKIP'
+ 'ef491e760e7c1ffec9ca25441a150c83'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+sha512sums=('33c894e00a13703db4195bc4a1f8fd512af165d8793ba00a7bf25e0e410136c8b4a94b14a81885be5fa2625626c810802282162c6d7a4f1f251a5ffccab218b3'
+'SKIP'
+
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
+
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
+
+_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
+)
+
+_mainline_flags=(
+)
+
+build() {
+  cd $provides-$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[@]} \
+${_mainline_flags[@]}
+
+  make
+}
+
+package() {
+  cd $provides-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\

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

2017-12-26 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 26, 2017 @ 16:56:06
  Author: grazzolini
Revision: 276115

archrelease: copy trunk to community-testing-x86_64

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

---+
 PKGBUILD  |  133 
 logrotate |   10 
 nginx.install |   12 +
 service   |   17 +++
 4 files changed, 172 insertions(+)

Copied: nginx-mainline/repos/community-testing-x86_64/PKGBUILD (from rev 
276114, nginx-mainline/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-26 16:56:06 UTC (rev 276115)
@@ -0,0 +1,133 @@
+# $Id$
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew DeVault
+
+pkgname=nginx-mainline
+pkgver=1.13.8
+pkgrel=1
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
+arch=('x86_64')
+url='https://nginx.org'
+license=('custom')
+depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap')
+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
+provides=('nginx')
+conflicts=('nginx')
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+service
+logrotate)
+validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

+md5sums=('df4be9294365782dc1349ca33ce8c4ac'
+ 'SKIP'
+ 'ef491e760e7c1ffec9ca25441a150c83'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+sha512sums=('f2a4d41941ec223afcb57a6deb6523e0d4f54f96c7362835d366fa04a4b4578f6c4f27aa7774c1ecd40a42087df83e5c03d024e72caba83c558ec7e580c756a1'
+'SKIP'
+
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
+
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
+
+_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
+)
+
+_mainline_flags=(
+)
+
+build() {
+  cd $provides-$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[@]} \
+${_mainline_flags[@]}
+
+  make
+}
+
+package() {
+  cd $provides-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\

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

2017-11-21 Thread Giancarlo Razzolini
Date: Tuesday, November 21, 2017 @ 18:50:28
  Author: grazzolini
Revision: 267848

archrelease: copy trunk to community-testing-x86_64

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

---+
 PKGBUILD  |  133 
 logrotate |   10 
 nginx.install |   12 +
 service   |   17 +++
 4 files changed, 172 insertions(+)

Copied: nginx-mainline/repos/community-testing-x86_64/PKGBUILD (from rev 
267847, nginx-mainline/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-11-21 18:50:28 UTC (rev 267848)
@@ -0,0 +1,133 @@
+# $Id$
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew DeVault
+
+pkgname=nginx-mainline
+pkgver=1.13.7
+pkgrel=1
+pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
+arch=('x86_64')
+url='https://nginx.org'
+license=('custom')
+depends=('pcre' 'zlib' 'openssl' 'geoip')
+backup=('etc/nginx/fastcgi.conf'
+'etc/nginx/fastcgi_params'
+'etc/nginx/koi-win'
+'etc/nginx/koi-utf'
+'etc/nginx/mime.types'
+'etc/nginx/nginx.conf'
+'etc/nginx/scgi_params'
+'etc/nginx/uwsgi_params'
+'etc/nginx/win-utf'
+'etc/logrotate.d/nginx')
+install=nginx.install
+provides=('nginx')
+conflicts=('nginx')
+source=($url/download/nginx-$pkgver.tar.gz{,.asc}
+service
+logrotate)
+validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

+md5sums=('5fcd056b40cb5c47b053fb14a2a89e7d'
+ 'SKIP'
+ 'ef491e760e7c1ffec9ca25441a150c83'
+ '6a01fb17af86f03707c8ae60f98a2dc2')
+sha512sums=('77ee919315e0b16ec042ec80b5a9ed01ef057d30fded4c1991fc1b7648d41433b94897fbe6f0900299d3596ede7b25e842e47c44865b1c3d91d2dc6363d23fc0'
+'SKIP'
+
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
+
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
+
+_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
+)
+
+_mainline_flags=(
+)
+
+build() {
+  cd $provides-$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[@]} \
+${_mainline_flags[@]}
+
+  make
+}
+
+package() {
+  cd $provides-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -e 's|\