[arch-commits] Commit in apache/repos (10 files)

2020-08-21 Thread Anatol Pomozov via arch-commits
Date: Friday, August 21, 2020 @ 22:01:42
  Author: anatolik
Revision: 394520

archrelease: copy trunk to testing-x86_64

Added:
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 394519, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
(from rev 394519, apache/trunk/apache-2.2-optionsbleed-CVE-2017-9798.patch)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 394519, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 394519, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 394519, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 394519, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/nohttp2forprefork.patch
(from rev 394519, apache/trunk/nohttp2forprefork.patch)
  apache/repos/testing-x86_64/openssl-malloc-init.patch
(from rev 394519, apache/trunk/openssl-malloc-init.patch)
  apache/repos/testing-x86_64/script_name.patch
(from rev 394519, apache/trunk/script_name.patch)

-+
 PKGBUILD|  132 ++
 apache-2.2-optionsbleed-CVE-2017-9798.patch |   21 +
 apache.tmpfiles.conf|1 
 arch.layout |   22 +
 httpd.logrotate |7 
 httpd.service   |   15 
 nohttp2forprefork.patch |  506 ++
 openssl-malloc-init.patch   |   20 +
 script_name.patch   |   84 
 9 files changed, 808 insertions(+)

Copied: apache/repos/testing-x86_64/PKGBUILD (from rev 394519, 
apache/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-08-21 22:01:42 UTC (rev 394520)
@@ -0,0 +1,132 @@
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.46
+pkgrel=2
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('x86_64')
+url='https://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+provides=('mod_proxy_uwsgi')
+conflicts=('mod_proxy_uwsgi')
+replaces=('mod_proxy_uwsgi')
+depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl' 'libxcrypt')
+makedepends=('libxml2' 'lua53' 'curl' 'brotli' 'jansson')
+optdepends=(
+'lua53: for mod_lua module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'curl: for mod_md module'
+'jansson: for mod_md module'
+'brotli: for mod_brotli module'
+'uwsgi: for mod_proxy_uwsgi module'
+'lynx: apachectl status'
+)
+source=(
+https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+openssl-malloc-init.patch
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('740eddf6e1c641992b22359cabc66e6325868c3c5e2e3f98faf349b61ecf41ea'
+'SKIP'
+'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8' # Jim Jagielski
+  'B9E8213AEFB861AF35A41F2C995E35221AD84DFF'
+ 'E3480043595621FE56105F112AB12A7ADC55C003') # Daniel Ruggeri 
+
+prepare() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+
+  # https://github.com/openssl/openssl/issues/2865
+  patch -Np1 -i ../openssl-malloc-init.patch
+}
+
+build() {
+  cd httpd-${pkgver}
+
+  ./configure --sbindir=/usr/bin \
+  --enable-layout=Arch \
+  --enable-mpms-shared=all \
+  --enable-modules=all \
+  --enable-mods-shared=all \
+  --enable-so \
+  --enable-suexec \
+  --with-suexec-caller=http \
+  --with-suexec-docroot=/srv/http \
+  --with-suexec-logfile=/var/log/httpd/suexec.log \
+  --with-suexec-bin=/usr/bin/suexec \
+  --with-suexec-uidmin=99 --with-suexec-gidmin=99 \
+  --enable-ldap --enable-authnz-ldap --enable-authnz-fcgi \
+  --enable-cache --enable-disk-cache --enable-mem-cache 

[arch-commits] Commit in apache/repos (10 files)

2020-08-05 Thread Anatol Pomozov via arch-commits
Date: Wednesday, August 5, 2020 @ 23:37:43
  Author: anatolik
Revision: 393204

archrelease: copy trunk to testing-x86_64

Added:
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 393203, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
(from rev 393203, apache/trunk/apache-2.2-optionsbleed-CVE-2017-9798.patch)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 393203, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 393203, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 393203, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 393203, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/nohttp2forprefork.patch
(from rev 393203, apache/trunk/nohttp2forprefork.patch)
  apache/repos/testing-x86_64/openssl-malloc-init.patch
(from rev 393203, apache/trunk/openssl-malloc-init.patch)
  apache/repos/testing-x86_64/script_name.patch
(from rev 393203, apache/trunk/script_name.patch)

-+
 PKGBUILD|  132 ++
 apache-2.2-optionsbleed-CVE-2017-9798.patch |   21 +
 apache.tmpfiles.conf|1 
 arch.layout |   22 +
 httpd.logrotate |7 
 httpd.service   |   15 
 nohttp2forprefork.patch |  506 ++
 openssl-malloc-init.patch   |   20 +
 script_name.patch   |   84 
 9 files changed, 808 insertions(+)

Copied: apache/repos/testing-x86_64/PKGBUILD (from rev 393203, 
apache/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-08-05 23:37:43 UTC (rev 393204)
@@ -0,0 +1,132 @@
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.46
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('x86_64')
+url='https://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+provides=('mod_proxy_uwsgi')
+conflicts=('mod_proxy_uwsgi')
+replaces=('mod_proxy_uwsgi')
+depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl')
+makedepends=('libxml2' 'lua53' 'curl' 'brotli' 'jansson')
+optdepends=(
+'lua53: for mod_lua module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'curl: for mod_md module'
+'jansson: for mod_md module'
+'brotli: for mod_brotli module'
+'uwsgi: for mod_proxy_uwsgi module'
+'lynx: apachectl status'
+)
+source=(
+https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+openssl-malloc-init.patch
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('740eddf6e1c641992b22359cabc66e6325868c3c5e2e3f98faf349b61ecf41ea'
+'SKIP'
+'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8' # Jim Jagielski
+  'B9E8213AEFB861AF35A41F2C995E35221AD84DFF'
+ 'E3480043595621FE56105F112AB12A7ADC55C003') # Daniel Ruggeri 
+
+prepare() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+
+  # https://github.com/openssl/openssl/issues/2865
+  patch -Np1 -i ../openssl-malloc-init.patch
+}
+
+build() {
+  cd httpd-${pkgver}
+
+  ./configure --sbindir=/usr/bin \
+  --enable-layout=Arch \
+  --enable-mpms-shared=all \
+  --enable-modules=all \
+  --enable-mods-shared=all \
+  --enable-so \
+  --enable-suexec \
+  --with-suexec-caller=http \
+  --with-suexec-docroot=/srv/http \
+  --with-suexec-logfile=/var/log/httpd/suexec.log \
+  --with-suexec-bin=/usr/bin/suexec \
+  --with-suexec-uidmin=99 --with-suexec-gidmin=99 \
+  --enable-ldap --enable-authnz-ldap --enable-authnz-fcgi \
+  --enable-cache --enable-disk-cache --enable-mem-cache 

[arch-commits] Commit in apache/repos (10 files)

2020-06-30 Thread Anatol Pomozov via arch-commits
Date: Wednesday, July 1, 2020 @ 00:57:10
  Author: anatolik
Revision: 390676

archrelease: copy trunk to staging-x86_64

Added:
  apache/repos/staging-x86_64/
  apache/repos/staging-x86_64/PKGBUILD
(from rev 390675, apache/trunk/PKGBUILD)
  apache/repos/staging-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
(from rev 390675, apache/trunk/apache-2.2-optionsbleed-CVE-2017-9798.patch)
  apache/repos/staging-x86_64/apache.tmpfiles.conf
(from rev 390675, apache/trunk/apache.tmpfiles.conf)
  apache/repos/staging-x86_64/arch.layout
(from rev 390675, apache/trunk/arch.layout)
  apache/repos/staging-x86_64/httpd.logrotate
(from rev 390675, apache/trunk/httpd.logrotate)
  apache/repos/staging-x86_64/httpd.service
(from rev 390675, apache/trunk/httpd.service)
  apache/repos/staging-x86_64/nohttp2forprefork.patch
(from rev 390675, apache/trunk/nohttp2forprefork.patch)
  apache/repos/staging-x86_64/openssl-malloc-init.patch
(from rev 390675, apache/trunk/openssl-malloc-init.patch)
  apache/repos/staging-x86_64/script_name.patch
(from rev 390675, apache/trunk/script_name.patch)

-+
 PKGBUILD|  131 ++
 apache-2.2-optionsbleed-CVE-2017-9798.patch |   21 +
 apache.tmpfiles.conf|1 
 arch.layout |   22 +
 httpd.logrotate |7 
 httpd.service   |   15 
 nohttp2forprefork.patch |  506 ++
 openssl-malloc-init.patch   |   20 +
 script_name.patch   |   84 
 9 files changed, 807 insertions(+)

Copied: apache/repos/staging-x86_64/PKGBUILD (from rev 390675, 
apache/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-07-01 00:57:10 UTC (rev 390676)
@@ -0,0 +1,131 @@
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.43
+pkgrel=2
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('x86_64')
+url='https://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+provides=('mod_proxy_uwsgi')
+conflicts=('mod_proxy_uwsgi')
+replaces=('mod_proxy_uwsgi')
+depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl')
+makedepends=('libxml2' 'lua53' 'curl' 'brotli' 'jansson')
+optdepends=(
+'lua53: for mod_lua module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'curl: for mod_md module'
+'jansson: for mod_md module'
+'brotli: for mod_brotli module'
+'uwsgi: for mod_proxy_uwsgi module'
+'lynx: apachectl status'
+)
+source=(
+https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+openssl-malloc-init.patch
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('a497652ab3fc81318cdc2a203090a999150d86461acff97c1065dc910fe10f43'
+'SKIP'
+'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8' # Jim Jagielski
+  'B9E8213AEFB861AF35A41F2C995E35221AD84DFF') # Daniel Ruggeri 
+
+prepare() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+
+  # https://github.com/openssl/openssl/issues/2865
+  patch -Np1 -i ../openssl-malloc-init.patch
+}
+
+build() {
+  cd httpd-${pkgver}
+
+  ./configure --sbindir=/usr/bin \
+  --enable-layout=Arch \
+  --enable-mpms-shared=all \
+  --enable-modules=all \
+  --enable-mods-shared=all \
+  --enable-so \
+  --enable-suexec \
+  --with-suexec-caller=http \
+  --with-suexec-docroot=/srv/http \
+  --with-suexec-logfile=/var/log/httpd/suexec.log \
+  --with-suexec-bin=/usr/bin/suexec \
+  --with-suexec-uidmin=99 --with-suexec-gidmin=99 \
+  --enable-ldap --enable-authnz-ldap --enable-authnz-fcgi \
+  --enable-cache --enable-disk-cache --enable-mem-cache 
--enable-file-cache \
+  --enable-ssl --with-ssl \
+  

[arch-commits] Commit in apache/repos (10 files)

2020-03-31 Thread Anatol Pomozov via arch-commits
Date: Tuesday, March 31, 2020 @ 18:38:14
  Author: anatolik
Revision: 379006

archrelease: copy trunk to testing-x86_64

Added:
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 379005, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
(from rev 379005, apache/trunk/apache-2.2-optionsbleed-CVE-2017-9798.patch)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 379005, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 379005, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 379005, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 379005, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/nohttp2forprefork.patch
(from rev 379005, apache/trunk/nohttp2forprefork.patch)
  apache/repos/testing-x86_64/openssl-malloc-init.patch
(from rev 379005, apache/trunk/openssl-malloc-init.patch)
  apache/repos/testing-x86_64/script_name.patch
(from rev 379005, apache/trunk/script_name.patch)

-+
 PKGBUILD|  131 ++
 apache-2.2-optionsbleed-CVE-2017-9798.patch |   21 +
 apache.tmpfiles.conf|1 
 arch.layout |   22 +
 httpd.logrotate |7 
 httpd.service   |   15 
 nohttp2forprefork.patch |  506 ++
 openssl-malloc-init.patch   |   20 +
 script_name.patch   |   84 
 9 files changed, 807 insertions(+)

Copied: apache/repos/testing-x86_64/PKGBUILD (from rev 379005, 
apache/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-03-31 18:38:14 UTC (rev 379006)
@@ -0,0 +1,131 @@
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.43
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('x86_64')
+url='https://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+provides=('mod_proxy_uwsgi')
+conflicts=('mod_proxy_uwsgi')
+replaces=('mod_proxy_uwsgi')
+depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl')
+makedepends=('libxml2' 'lua' 'curl' 'brotli' 'jansson')
+optdepends=(
+'lua: for mod_lua module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'curl: for mod_md module'
+'jansson: for mod_md module'
+'brotli: for mod_brotli module'
+'uwsgi: for mod_proxy_uwsgi module'
+'lynx: apachectl status'
+)
+source=(
+https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+openssl-malloc-init.patch
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('a497652ab3fc81318cdc2a203090a999150d86461acff97c1065dc910fe10f43'
+'SKIP'
+'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8' # Jim Jagielski
+  'B9E8213AEFB861AF35A41F2C995E35221AD84DFF') # Daniel Ruggeri 
+
+prepare() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+
+  # https://github.com/openssl/openssl/issues/2865
+  patch -Np1 -i ../openssl-malloc-init.patch
+}
+
+build() {
+  cd httpd-${pkgver}
+
+  ./configure --sbindir=/usr/bin \
+  --enable-layout=Arch \
+  --enable-mpms-shared=all \
+  --enable-modules=all \
+  --enable-mods-shared=all \
+  --enable-so \
+  --enable-suexec \
+  --with-suexec-caller=http \
+  --with-suexec-docroot=/srv/http \
+  --with-suexec-logfile=/var/log/httpd/suexec.log \
+  --with-suexec-bin=/usr/bin/suexec \
+  --with-suexec-uidmin=99 --with-suexec-gidmin=99 \
+  --enable-ldap --enable-authnz-ldap --enable-authnz-fcgi \
+  --enable-cache --enable-disk-cache --enable-mem-cache 
--enable-file-cache \
+  --enable-ssl --with-ssl \
+  

[arch-commits] Commit in apache/repos (10 files)

2019-08-13 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 13, 2019 @ 22:47:27
  Author: anatolik
Revision: 359798

archrelease: copy trunk to testing-x86_64

Added:
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 359797, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
(from rev 359797, apache/trunk/apache-2.2-optionsbleed-CVE-2017-9798.patch)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 359797, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 359797, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 359797, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 359797, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/nohttp2forprefork.patch
(from rev 359797, apache/trunk/nohttp2forprefork.patch)
  apache/repos/testing-x86_64/openssl-malloc-init.patch
(from rev 359797, apache/trunk/openssl-malloc-init.patch)
  apache/repos/testing-x86_64/script_name.patch
(from rev 359797, apache/trunk/script_name.patch)

-+
 PKGBUILD|  131 ++
 apache-2.2-optionsbleed-CVE-2017-9798.patch |   21 +
 apache.tmpfiles.conf|1 
 arch.layout |   22 +
 httpd.logrotate |7 
 httpd.service   |   15 
 nohttp2forprefork.patch |  506 ++
 openssl-malloc-init.patch   |   20 +
 script_name.patch   |   84 
 9 files changed, 807 insertions(+)

Copied: apache/repos/testing-x86_64/PKGBUILD (from rev 359797, 
apache/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-13 22:47:27 UTC (rev 359798)
@@ -0,0 +1,131 @@
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.41
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('x86_64')
+url='https://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+provides=('mod_proxy_uwsgi')
+conflicts=('mod_proxy_uwsgi')
+replaces=('mod_proxy_uwsgi')
+depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl')
+makedepends=('libxml2' 'lua' 'curl' 'brotli' 'jansson')
+optdepends=(
+'lua: for mod_lua module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'curl: for mod_md module'
+'jansson: for mod_md module'
+'brotli: for mod_brotli module'
+'uwsgi: for mod_proxy_uwsgi module'
+'lynx: apachectl status'
+)
+source=(
+https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+openssl-malloc-init.patch
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('133d48298fe5315ae9366a0ec66282fa4040efa5d566174481077ade7d18ea40'
+'SKIP'
+'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8' # Jim Jagielski
+  'B9E8213AEFB861AF35A41F2C995E35221AD84DFF') # Daniel Ruggeri 
+
+prepare() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+
+  # https://github.com/openssl/openssl/issues/2865
+  patch -Np1 -i ../openssl-malloc-init.patch
+}
+
+build() {
+  cd httpd-${pkgver}
+
+  ./configure --sbindir=/usr/bin \
+  --enable-layout=Arch \
+  --enable-mpms-shared=all \
+  --enable-modules=all \
+  --enable-mods-shared=all \
+  --enable-so \
+  --enable-suexec \
+  --with-suexec-caller=http \
+  --with-suexec-docroot=/srv/http \
+  --with-suexec-logfile=/var/log/httpd/suexec.log \
+  --with-suexec-bin=/usr/bin/suexec \
+  --with-suexec-uidmin=99 --with-suexec-gidmin=99 \
+  --enable-ldap --enable-authnz-ldap --enable-authnz-fcgi \
+  --enable-cache --enable-disk-cache --enable-mem-cache 
--enable-file-cache \
+  --enable-ssl --with-ssl \
+  

[arch-commits] Commit in apache/repos (10 files)

2019-04-01 Thread Anatol Pomozov via arch-commits
Date: Tuesday, April 2, 2019 @ 04:08:13
  Author: anatolik
Revision: 349585

archrelease: copy trunk to testing-x86_64

Added:
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 349584, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
(from rev 349584, apache/trunk/apache-2.2-optionsbleed-CVE-2017-9798.patch)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 349584, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 349584, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 349584, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 349584, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/nohttp2forprefork.patch
(from rev 349584, apache/trunk/nohttp2forprefork.patch)
  apache/repos/testing-x86_64/openssl-malloc-init.patch
(from rev 349584, apache/trunk/openssl-malloc-init.patch)
  apache/repos/testing-x86_64/script_name.patch
(from rev 349584, apache/trunk/script_name.patch)

-+
 PKGBUILD|  131 ++
 apache-2.2-optionsbleed-CVE-2017-9798.patch |   21 +
 apache.tmpfiles.conf|1 
 arch.layout |   22 +
 httpd.logrotate |7 
 httpd.service   |   15 
 nohttp2forprefork.patch |  506 ++
 openssl-malloc-init.patch   |   20 +
 script_name.patch   |   84 
 9 files changed, 807 insertions(+)

Copied: apache/repos/testing-x86_64/PKGBUILD (from rev 349584, 
apache/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-02 04:08:13 UTC (rev 349585)
@@ -0,0 +1,131 @@
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.39
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('x86_64')
+url='http://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+provides=('mod_proxy_uwsgi')
+conflicts=('mod_proxy_uwsgi')
+replaces=('mod_proxy_uwsgi')
+depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl')
+makedepends=('libxml2' 'lua' 'curl' 'brotli' 'jansson')
+optdepends=(
+'lua: for mod_lua module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'curl: for mod_md module'
+'jansson: for mod_md module'
+'brotli: for mod_brotli module'
+'uwsgi: for mod_proxy_uwsgi module'
+'lynx: apachectl status'
+)
+source=(
+https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+openssl-malloc-init.patch
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('b4ca9d05773aa59b54d66cd8f4744b945289f084d3be17d7981d1783a5decfa2'
+'SKIP'
+'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8' # Jim Jagielski
+  'B9E8213AEFB861AF35A41F2C995E35221AD84DFF') # Daniel Ruggeri 
+
+prepare() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+
+  # https://github.com/openssl/openssl/issues/2865
+  patch -Np1 -i ../openssl-malloc-init.patch
+}
+
+build() {
+  cd httpd-${pkgver}
+
+  ./configure --sbindir=/usr/bin \
+  --enable-layout=Arch \
+  --enable-mpms-shared=all \
+  --enable-modules=all \
+  --enable-mods-shared=all \
+  --enable-so \
+  --enable-suexec \
+  --with-suexec-caller=http \
+  --with-suexec-docroot=/srv/http \
+  --with-suexec-logfile=/var/log/httpd/suexec.log \
+  --with-suexec-bin=/usr/bin/suexec \
+  --with-suexec-uidmin=99 --with-suexec-gidmin=99 \
+  --enable-ldap --enable-authnz-ldap --enable-authnz-fcgi \
+  --enable-cache --enable-disk-cache --enable-mem-cache 
--enable-file-cache \
+  --enable-ssl --with-ssl \
+  

[arch-commits] Commit in apache/repos (10 files)

2019-01-22 Thread Anatol Pomozov via arch-commits
Date: Tuesday, January 22, 2019 @ 22:36:23
  Author: anatolik
Revision: 344588

archrelease: copy trunk to testing-x86_64

Added:
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 344587, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
(from rev 344587, apache/trunk/apache-2.2-optionsbleed-CVE-2017-9798.patch)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 344587, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 344587, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 344587, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 344587, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/nohttp2forprefork.patch
(from rev 344587, apache/trunk/nohttp2forprefork.patch)
  apache/repos/testing-x86_64/openssl-malloc-init.patch
(from rev 344587, apache/trunk/openssl-malloc-init.patch)
  apache/repos/testing-x86_64/script_name.patch
(from rev 344587, apache/trunk/script_name.patch)

-+
 PKGBUILD|  131 ++
 apache-2.2-optionsbleed-CVE-2017-9798.patch |   21 +
 apache.tmpfiles.conf|1 
 arch.layout |   22 +
 httpd.logrotate |7 
 httpd.service   |   15 
 nohttp2forprefork.patch |  506 ++
 openssl-malloc-init.patch   |   20 +
 script_name.patch   |   84 
 9 files changed, 807 insertions(+)

Copied: apache/repos/testing-x86_64/PKGBUILD (from rev 344587, 
apache/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-01-22 22:36:23 UTC (rev 344588)
@@ -0,0 +1,131 @@
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.38
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('x86_64')
+url='http://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+provides=('mod_proxy_uwsgi')
+conflicts=('mod_proxy_uwsgi')
+replaces=('mod_proxy_uwsgi')
+depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl')
+makedepends=('libxml2' 'lua' 'curl' 'brotli' 'jansson')
+optdepends=(
+'lua: for mod_lua module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'curl: for mod_md module'
+'jansson: for mod_md module'
+'brotli: for mod_brotli module'
+'uwsgi: for mod_proxy_uwsgi module'
+'lynx: apachectl status'
+)
+source=(
+https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+openssl-malloc-init.patch
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('7dc65857a994c98370dc4334b260101a7a04be60e6e74a5c57a6dee1bc8f394a'
+'SKIP'
+'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8' # Jim Jagielski
+  'B9E8213AEFB861AF35A41F2C995E35221AD84DFF') # Daniel Ruggeri 
+
+prepare() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+
+  # https://github.com/openssl/openssl/issues/2865
+  patch -Np1 -i ../openssl-malloc-init.patch
+}
+
+build() {
+  cd httpd-${pkgver}
+
+  ./configure --sbindir=/usr/bin \
+  --enable-layout=Arch \
+  --enable-mpms-shared=all \
+  --enable-modules=all \
+  --enable-mods-shared=all \
+  --enable-so \
+  --enable-suexec \
+  --with-suexec-caller=http \
+  --with-suexec-docroot=/srv/http \
+  --with-suexec-logfile=/var/log/httpd/suexec.log \
+  --with-suexec-bin=/usr/bin/suexec \
+  --with-suexec-uidmin=99 --with-suexec-gidmin=99 \
+  --enable-ldap --enable-authnz-ldap --enable-authnz-fcgi \
+  --enable-cache --enable-disk-cache --enable-mem-cache 
--enable-file-cache \
+  --enable-ssl --with-ssl \
+  

[arch-commits] Commit in apache/repos (10 files)

2018-10-23 Thread Anatol Pomozov via arch-commits
Date: Tuesday, October 23, 2018 @ 18:38:02
  Author: anatolik
Revision: 337194

archrelease: copy trunk to testing-x86_64

Added:
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 337193, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
(from rev 337193, apache/trunk/apache-2.2-optionsbleed-CVE-2017-9798.patch)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 337193, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 337193, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 337193, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 337193, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/nohttp2forprefork.patch
(from rev 337193, apache/trunk/nohttp2forprefork.patch)
  apache/repos/testing-x86_64/openssl-malloc-init.patch
(from rev 337193, apache/trunk/openssl-malloc-init.patch)
  apache/repos/testing-x86_64/script_name.patch
(from rev 337193, apache/trunk/script_name.patch)

-+
 PKGBUILD|  131 ++
 apache-2.2-optionsbleed-CVE-2017-9798.patch |   21 +
 apache.tmpfiles.conf|1 
 arch.layout |   22 +
 httpd.logrotate |7 
 httpd.service   |   15 
 nohttp2forprefork.patch |  506 ++
 openssl-malloc-init.patch   |   20 +
 script_name.patch   |   84 
 9 files changed, 807 insertions(+)

Copied: apache/repos/testing-x86_64/PKGBUILD (from rev 337193, 
apache/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-10-23 18:38:02 UTC (rev 337194)
@@ -0,0 +1,131 @@
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.37
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('x86_64')
+url='http://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+provides=('mod_proxy_uwsgi')
+conflicts=('mod_proxy_uwsgi')
+replaces=('mod_proxy_uwsgi')
+depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl')
+makedepends=('libxml2' 'lua' 'curl' 'brotli' 'jansson')
+optdepends=(
+'lua: for mod_lua module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'curl: for mod_md module'
+'jansson: for mod_md module'
+'brotli: for mod_brotli module'
+'uwsgi: for mod_proxy_uwsgi module'
+'lynx: apachectl status'
+)
+source=(
+https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+openssl-malloc-init.patch
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('3498dc5c6772fac2eb7307dc7963122ffe243b5e806e0be4fb51974ff759d726'
+'SKIP'
+'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8' # Jim Jagielski
+  'B9E8213AEFB861AF35A41F2C995E35221AD84DFF') # Daniel Ruggeri 
+
+prepare() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+
+  # https://github.com/openssl/openssl/issues/2865
+  patch -Np1 -i ../openssl-malloc-init.patch
+}
+
+build() {
+  cd httpd-${pkgver}
+
+  ./configure --sbindir=/usr/bin \
+  --enable-layout=Arch \
+  --enable-mpms-shared=all \
+  --enable-modules=all \
+  --enable-mods-shared=all \
+  --enable-so \
+  --enable-suexec \
+  --with-suexec-caller=http \
+  --with-suexec-docroot=/srv/http \
+  --with-suexec-logfile=/var/log/httpd/suexec.log \
+  --with-suexec-bin=/usr/bin/suexec \
+  --with-suexec-uidmin=99 --with-suexec-gidmin=99 \
+  --enable-ldap --enable-authnz-ldap --enable-authnz-fcgi \
+  --enable-cache --enable-disk-cache --enable-mem-cache 
--enable-file-cache \
+  --enable-ssl --with-ssl \
+  

[arch-commits] Commit in apache/repos (10 files)

2018-09-21 Thread Anatol Pomozov via arch-commits
Date: Friday, September 21, 2018 @ 22:05:24
  Author: anatolik
Revision: 335208

archrelease: copy trunk to testing-x86_64

Added:
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 335207, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
(from rev 335207, apache/trunk/apache-2.2-optionsbleed-CVE-2017-9798.patch)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 335207, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 335207, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 335207, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 335207, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/nohttp2forprefork.patch
(from rev 335207, apache/trunk/nohttp2forprefork.patch)
  apache/repos/testing-x86_64/openssl-malloc-init.patch
(from rev 335207, apache/trunk/openssl-malloc-init.patch)
  apache/repos/testing-x86_64/script_name.patch
(from rev 335207, apache/trunk/script_name.patch)

-+
 PKGBUILD|  131 ++
 apache-2.2-optionsbleed-CVE-2017-9798.patch |   21 +
 apache.tmpfiles.conf|1 
 arch.layout |   22 +
 httpd.logrotate |7 
 httpd.service   |   15 
 nohttp2forprefork.patch |  506 ++
 openssl-malloc-init.patch   |   20 +
 script_name.patch   |   84 
 9 files changed, 807 insertions(+)

Copied: apache/repos/testing-x86_64/PKGBUILD (from rev 335207, 
apache/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-09-21 22:05:24 UTC (rev 335208)
@@ -0,0 +1,131 @@
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.35
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('x86_64')
+url='http://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+provides=('mod_proxy_uwsgi')
+conflicts=('mod_proxy_uwsgi')
+replaces=('mod_proxy_uwsgi')
+depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl')
+makedepends=('libxml2' 'lua' 'curl' 'brotli' 'jansson')
+optdepends=(
+'lua: for mod_lua module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'curl: for mod_md module'
+'jansson: for mod_md module'
+'brotli: for mod_brotli module'
+'uwsgi: for mod_proxy_uwsgi module'
+'lynx: apachectl status'
+)
+source=(
+https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+openssl-malloc-init.patch
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('2607c6fdd4d12ac3f583127629291e9432b247b782396a563bec5678aae69b56'
+'SKIP'
+'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8' # Jim Jagielski
+  'B9E8213AEFB861AF35A41F2C995E35221AD84DFF') # Daniel Ruggeri 
+
+prepare() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+
+  # https://github.com/openssl/openssl/issues/2865
+  patch -Np1 -i ../openssl-malloc-init.patch
+}
+
+build() {
+  cd httpd-${pkgver}
+
+  ./configure --sbindir=/usr/bin \
+  --enable-layout=Arch \
+  --enable-mpms-shared=all \
+  --enable-modules=all \
+  --enable-mods-shared=all \
+  --enable-so \
+  --enable-suexec \
+  --with-suexec-caller=http \
+  --with-suexec-docroot=/srv/http \
+  --with-suexec-logfile=/var/log/httpd/suexec.log \
+  --with-suexec-bin=/usr/bin/suexec \
+  --with-suexec-uidmin=99 --with-suexec-gidmin=99 \
+  --enable-ldap --enable-authnz-ldap --enable-authnz-fcgi \
+  --enable-cache --enable-disk-cache --enable-mem-cache 
--enable-file-cache \
+  --enable-ssl --with-ssl \
+  

[arch-commits] Commit in apache/repos (10 files)

2018-07-16 Thread Anatol Pomozov via arch-commits
Date: Monday, July 16, 2018 @ 17:51:35
  Author: anatolik
Revision: 328809

archrelease: copy trunk to testing-x86_64

Added:
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 328808, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
(from rev 328808, apache/trunk/apache-2.2-optionsbleed-CVE-2017-9798.patch)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 328808, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 328808, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 328808, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 328808, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/nohttp2forprefork.patch
(from rev 328808, apache/trunk/nohttp2forprefork.patch)
  apache/repos/testing-x86_64/openssl-malloc-init.patch
(from rev 328808, apache/trunk/openssl-malloc-init.patch)
  apache/repos/testing-x86_64/script_name.patch
(from rev 328808, apache/trunk/script_name.patch)

-+
 PKGBUILD|  132 ++
 apache-2.2-optionsbleed-CVE-2017-9798.patch |   21 +
 apache.tmpfiles.conf|1 
 arch.layout |   22 +
 httpd.logrotate |7 
 httpd.service   |   15 
 nohttp2forprefork.patch |  506 ++
 openssl-malloc-init.patch   |   20 +
 script_name.patch   |   84 
 9 files changed, 808 insertions(+)

Copied: apache/repos/testing-x86_64/PKGBUILD (from rev 328808, 
apache/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-07-16 17:51:35 UTC (rev 328809)
@@ -0,0 +1,132 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.34
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('x86_64')
+url='http://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+provides=('mod_proxy_uwsgi')
+conflicts=('mod_proxy_uwsgi')
+replaces=('mod_proxy_uwsgi')
+depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl')
+makedepends=('libxml2' 'lua' 'curl' 'brotli' 'jansson')
+optdepends=(
+'lua: for mod_lua module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'curl: for mod_md module'
+'jansson: for mod_md module'
+'brotli: for mod_brotli module'
+'uwsgi: for mod_proxy_uwsgi module'
+'lynx: apachectl status'
+)
+source=(
+https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+openssl-malloc-init.patch
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('fa53c95631febb08a9de41fd2864cfff815cf62d9306723ab0d4b8d7aa1638f0'
+'SKIP'
+'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8' # Jim Jagielski
+  'B9E8213AEFB861AF35A41F2C995E35221AD84DFF') # Daniel Ruggeri 
+
+prepare() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+
+  # https://github.com/openssl/openssl/issues/2865
+  patch -Np1 -i ../openssl-malloc-init.patch
+}
+
+build() {
+  cd httpd-${pkgver}
+
+  ./configure --sbindir=/usr/bin \
+  --enable-layout=Arch \
+  --enable-mpms-shared=all \
+  --enable-modules=all \
+  --enable-mods-shared=all \
+  --enable-so \
+  --enable-suexec \
+  --with-suexec-caller=http \
+  --with-suexec-docroot=/srv/http \
+  --with-suexec-logfile=/var/log/httpd/suexec.log \
+  --with-suexec-bin=/usr/bin/suexec \
+  --with-suexec-uidmin=99 --with-suexec-gidmin=99 \
+  --enable-ldap --enable-authnz-ldap --enable-authnz-fcgi \
+  --enable-cache --enable-disk-cache --enable-mem-cache 
--enable-file-cache \
+  --enable-ssl --with-ssl \
+  

[arch-commits] Commit in apache/repos (10 files)

2018-04-01 Thread Anatol Pomozov via arch-commits
Date: Sunday, April 1, 2018 @ 22:32:13
  Author: anatolik
Revision: 320839

archrelease: copy trunk to testing-x86_64

Added:
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 320838, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
(from rev 320838, apache/trunk/apache-2.2-optionsbleed-CVE-2017-9798.patch)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 320838, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 320838, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 320838, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 320838, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/nohttp2forprefork.patch
(from rev 320838, apache/trunk/nohttp2forprefork.patch)
  apache/repos/testing-x86_64/openssl-malloc-init.patch
(from rev 320838, apache/trunk/openssl-malloc-init.patch)
  apache/repos/testing-x86_64/script_name.patch
(from rev 320838, apache/trunk/script_name.patch)

-+
 PKGBUILD|  129 ++
 apache-2.2-optionsbleed-CVE-2017-9798.patch |   21 +
 apache.tmpfiles.conf|1 
 arch.layout |   22 +
 httpd.logrotate |7 
 httpd.service   |   15 
 nohttp2forprefork.patch |  506 ++
 openssl-malloc-init.patch   |   20 +
 script_name.patch   |   84 
 9 files changed, 805 insertions(+)

Copied: apache/repos/testing-x86_64/PKGBUILD (from rev 320838, 
apache/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-04-01 22:32:13 UTC (rev 320839)
@@ -0,0 +1,129 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.33
+pkgrel=2
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('x86_64')
+url='http://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+provides=('mod_proxy_uwsgi')
+depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl')
+makedepends=('libxml2' 'lua' 'curl' 'brotli' 'jansson')
+optdepends=(
+'lua: for mod_lua module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'curl: for mod_md module'
+'jansson: for mod_md module'
+'brotli: for mod_brotli module'
+'lynx: apachectl status'
+)
+source=(
+https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+openssl-malloc-init.patch
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('de02511859b00d17845b9abdd1f975d5ccb5d0b280c567da5bf2ad4b70846f05'
+'SKIP'
+'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8' # Jim Jagielski
+  'B9E8213AEFB861AF35A41F2C995E35221AD84DFF') # Daniel Ruggeri 
+
+prepare() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+
+  # https://github.com/openssl/openssl/issues/2865
+  patch -Np1 -i ../openssl-malloc-init.patch
+}
+
+build() {
+  cd httpd-${pkgver}
+
+  ./configure --sbindir=/usr/bin \
+  --enable-layout=Arch \
+  --enable-mpms-shared=all \
+  --enable-modules=all \
+  --enable-mods-shared=all \
+  --enable-so \
+  --enable-suexec \
+  --with-suexec-caller=http \
+  --with-suexec-docroot=/srv/http \
+  --with-suexec-logfile=/var/log/httpd/suexec.log \
+  --with-suexec-bin=/usr/bin/suexec \
+  --with-suexec-uidmin=99 --with-suexec-gidmin=99 \
+  --enable-ldap --enable-authnz-ldap --enable-authnz-fcgi \
+  --enable-cache --enable-disk-cache --enable-mem-cache 
--enable-file-cache \
+  --enable-ssl --with-ssl \
+  --enable-deflate --enable-cgi --enable-cgid \
+ 

[arch-commits] Commit in apache/repos (10 files)

2018-03-24 Thread Anatol Pomozov via arch-commits
Date: Sunday, March 25, 2018 @ 01:54:09
  Author: anatolik
Revision: 320291

archrelease: copy trunk to testing-x86_64

Added:
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 320290, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
(from rev 320290, apache/trunk/apache-2.2-optionsbleed-CVE-2017-9798.patch)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 320290, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 320290, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 320290, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 320290, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/nohttp2forprefork.patch
(from rev 320290, apache/trunk/nohttp2forprefork.patch)
  apache/repos/testing-x86_64/openssl-malloc-init.patch
(from rev 320290, apache/trunk/openssl-malloc-init.patch)
  apache/repos/testing-x86_64/script_name.patch
(from rev 320290, apache/trunk/script_name.patch)

-+
 PKGBUILD|  124 ++
 apache-2.2-optionsbleed-CVE-2017-9798.patch |   21 +
 apache.tmpfiles.conf|1 
 arch.layout |   22 +
 httpd.logrotate |7 
 httpd.service   |   15 
 nohttp2forprefork.patch |  506 ++
 openssl-malloc-init.patch   |   20 +
 script_name.patch   |   84 
 9 files changed, 800 insertions(+)

Copied: apache/repos/testing-x86_64/PKGBUILD (from rev 320290, 
apache/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-03-25 01:54:09 UTC (rev 320291)
@@ -0,0 +1,124 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.33
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('x86_64')
+url='http://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl')
+makedepends=('libxml2' 'lua')
+optdepends=(
+'lua: for mod_lua module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'lynx: apachectl status'
+)
+source=(
+https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+openssl-malloc-init.patch
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('de02511859b00d17845b9abdd1f975d5ccb5d0b280c567da5bf2ad4b70846f05'
+'SKIP'
+'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8' # Jim Jagielski
+  'B9E8213AEFB861AF35A41F2C995E35221AD84DFF') # Daniel Ruggeri 
+
+prepare() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+
+  # https://github.com/openssl/openssl/issues/2865
+  patch -Np1 -i ../openssl-malloc-init.patch
+}
+
+build() {
+  cd httpd-${pkgver}
+
+  ./configure --sbindir=/usr/bin \
+  --enable-layout=Arch \
+  --enable-mpms-shared=all \
+  --enable-modules=all \
+  --enable-mods-shared=all \
+  --enable-so \
+  --enable-suexec \
+  --with-suexec-caller=http \
+  --with-suexec-docroot=/srv/http \
+  --with-suexec-logfile=/var/log/httpd/suexec.log \
+  --with-suexec-bin=/usr/bin/suexec \
+  --with-suexec-uidmin=99 --with-suexec-gidmin=99 \
+  --enable-ldap --enable-authnz-ldap --enable-authnz-fcgi \
+  --enable-cache --enable-disk-cache --enable-mem-cache 
--enable-file-cache \
+  --enable-ssl --with-ssl \
+  --enable-deflate --enable-cgi --enable-cgid \
+  --enable-proxy --enable-proxy-connect \
+  --enable-proxy-http --enable-proxy-ftp \
+  --enable-dbd --enable-imagemap --enable-ident