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

2017-06-20 Thread Anatol Pomozov
Date: Tuesday, June 20, 2017 @ 19:54:43
  Author: anatolik
Revision: 299080

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  apache/repos/testing-i686/
  apache/repos/testing-i686/PKGBUILD
(from rev 299079, apache/trunk/PKGBUILD)
  apache/repos/testing-i686/apache.tmpfiles.conf
(from rev 299079, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-i686/arch.layout
(from rev 299079, apache/trunk/arch.layout)
  apache/repos/testing-i686/httpd.logrotate
(from rev 299079, apache/trunk/httpd.logrotate)
  apache/repos/testing-i686/httpd.service
(from rev 299079, apache/trunk/httpd.service)
  apache/repos/testing-i686/openssl-malloc-init.patch
(from rev 299079, apache/trunk/openssl-malloc-init.patch)
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 299079, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 299079, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 299079, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 299079, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 299079, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/openssl-malloc-init.patch
(from rev 299079, apache/trunk/openssl-malloc-init.patch)

--+
 testing-i686/PKGBUILD|  123 +
 testing-i686/apache.tmpfiles.conf|1 
 testing-i686/arch.layout |   22 +
 testing-i686/httpd.logrotate |7 +
 testing-i686/httpd.service   |   15 +++
 testing-i686/openssl-malloc-init.patch   |   20 
 testing-x86_64/PKGBUILD  |  123 +
 testing-x86_64/apache.tmpfiles.conf  |1 
 testing-x86_64/arch.layout   |   22 +
 testing-x86_64/httpd.logrotate   |7 +
 testing-x86_64/httpd.service |   15 +++
 testing-x86_64/openssl-malloc-init.patch |   20 
 12 files changed, 376 insertions(+)

Copied: apache/repos/testing-i686/PKGBUILD (from rev 299079, 
apache/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-06-20 19:54:43 UTC (rev 299080)
@@ -0,0 +1,123 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.26
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' '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=('a07eb52fafc879e0149d31882f7da63173e72df4478db4dc69f7a775b663d387'
+'SKIP'
+'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8') # Jim Jagielski
+
+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 

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

2016-12-20 Thread Anatol Pomozov
Date: Tuesday, December 20, 2016 @ 21:17:35
  Author: anatolik
Revision: 284358

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  apache/repos/testing-i686/
  apache/repos/testing-i686/PKGBUILD
(from rev 284357, apache/trunk/PKGBUILD)
  apache/repos/testing-i686/apache.install
(from rev 284357, apache/trunk/apache.install)
  apache/repos/testing-i686/apache.tmpfiles.conf
(from rev 284357, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-i686/arch.layout
(from rev 284357, apache/trunk/arch.layout)
  apache/repos/testing-i686/httpd.logrotate
(from rev 284357, apache/trunk/httpd.logrotate)
  apache/repos/testing-i686/httpd.service
(from rev 284357, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 284357, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache.install
(from rev 284357, apache/trunk/apache.install)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 284357, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 284357, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 284357, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 284357, apache/trunk/httpd.service)

-+
 testing-i686/PKGBUILD   |  121 ++
 testing-i686/apache.install |   16 
 testing-i686/apache.tmpfiles.conf   |1 
 testing-i686/arch.layout|   22 ++
 testing-i686/httpd.logrotate|7 +
 testing-i686/httpd.service  |   15 
 testing-x86_64/PKGBUILD |  121 ++
 testing-x86_64/apache.install   |   16 
 testing-x86_64/apache.tmpfiles.conf |1 
 testing-x86_64/arch.layout  |   22 ++
 testing-x86_64/httpd.logrotate  |7 +
 testing-x86_64/httpd.service|   15 
 12 files changed, 364 insertions(+)

Copied: apache/repos/testing-i686/PKGBUILD (from rev 284357, 
apache/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-12-20 21:17:35 UTC (rev 284358)
@@ -0,0 +1,121 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.25
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' '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')
+makedepends=('libxml2' 'lua' 'openssl' 'nghttp2')
+optdepends=(
+'lua: for mod_lua module'
+'openssl: for mod_ssl module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'nghttp2: for mod_http2 module'
+'lynx: apachectl status'
+)
+install=apache.install
+source=(
+https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('f87ec2df1c9fee3e6bfde3c8b855a3ddb7ca1ab20ca877bd0e2b6bf3f05c80b2'
+'SKIP'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8') # Jim Jagielski
+
+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
+}
+
+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 (14 files)

2016-07-05 Thread Anatol Pomozov
Date: Tuesday, July 5, 2016 @ 14:46:34
  Author: anatolik
Revision: 271040

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  apache/repos/testing-i686/
  apache/repos/testing-i686/PKGBUILD
(from rev 271039, apache/trunk/PKGBUILD)
  apache/repos/testing-i686/apache.install
(from rev 271039, apache/trunk/apache.install)
  apache/repos/testing-i686/apache.tmpfiles.conf
(from rev 271039, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-i686/arch.layout
(from rev 271039, apache/trunk/arch.layout)
  apache/repos/testing-i686/httpd.logrotate
(from rev 271039, apache/trunk/httpd.logrotate)
  apache/repos/testing-i686/httpd.service
(from rev 271039, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 271039, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache.install
(from rev 271039, apache/trunk/apache.install)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 271039, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 271039, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 271039, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 271039, apache/trunk/httpd.service)

-+
 testing-i686/PKGBUILD   |  121 ++
 testing-i686/apache.install |   16 
 testing-i686/apache.tmpfiles.conf   |1 
 testing-i686/arch.layout|   22 ++
 testing-i686/httpd.logrotate|7 +
 testing-i686/httpd.service  |   15 
 testing-x86_64/PKGBUILD |  121 ++
 testing-x86_64/apache.install   |   16 
 testing-x86_64/apache.tmpfiles.conf |1 
 testing-x86_64/arch.layout  |   22 ++
 testing-x86_64/httpd.logrotate  |7 +
 testing-x86_64/httpd.service|   15 
 12 files changed, 364 insertions(+)

Copied: apache/repos/testing-i686/PKGBUILD (from rev 271039, 
apache/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-07-05 14:46:34 UTC (rev 271040)
@@ -0,0 +1,121 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.23
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' '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')
+makedepends=('libxml2' 'lua' 'openssl' 'nghttp2')
+optdepends=(
+'lua: for mod_lua module'
+'openssl: for mod_ssl module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'nghttp2: for mod_http2 module'
+'lynx: apachectl status'
+)
+install=apache.install
+source=(
+http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('0c1694b2aad7765896faf92843452ee2555b9591ae10d4f19b245f2adfe85e58'
+'SKIP'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8') # Jim Jagielski
+
+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
+}
+
+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 

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

2016-04-11 Thread Anatol Pomozov
Date: Monday, April 11, 2016 @ 19:08:17
  Author: anatolik
Revision: 264674

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  apache/repos/testing-i686/
  apache/repos/testing-i686/PKGBUILD
(from rev 264673, apache/trunk/PKGBUILD)
  apache/repos/testing-i686/apache.install
(from rev 264673, apache/trunk/apache.install)
  apache/repos/testing-i686/apache.tmpfiles.conf
(from rev 264673, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-i686/arch.layout
(from rev 264673, apache/trunk/arch.layout)
  apache/repos/testing-i686/httpd.logrotate
(from rev 264673, apache/trunk/httpd.logrotate)
  apache/repos/testing-i686/httpd.service
(from rev 264673, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 264673, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache.install
(from rev 264673, apache/trunk/apache.install)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 264673, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 264673, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 264673, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 264673, apache/trunk/httpd.service)

-+
 testing-i686/PKGBUILD   |  121 ++
 testing-i686/apache.install |   16 
 testing-i686/apache.tmpfiles.conf   |1 
 testing-i686/arch.layout|   22 ++
 testing-i686/httpd.logrotate|7 +
 testing-i686/httpd.service  |   15 
 testing-x86_64/PKGBUILD |  121 ++
 testing-x86_64/apache.install   |   16 
 testing-x86_64/apache.tmpfiles.conf |1 
 testing-x86_64/arch.layout  |   22 ++
 testing-x86_64/httpd.logrotate  |7 +
 testing-x86_64/httpd.service|   15 
 12 files changed, 364 insertions(+)

Copied: apache/repos/testing-i686/PKGBUILD (from rev 264673, 
apache/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-04-11 17:08:17 UTC (rev 264674)
@@ -0,0 +1,121 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.20
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' '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')
+makedepends=('libxml2' 'lua' 'openssl' 'nghttp2')
+optdepends=(
+'lua: for mod_lua module'
+'openssl: for mod_ssl module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'nghttp2: for mod_http2 module'
+'lynx: apachectl status'
+)
+install=apache.install
+source=(
+http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('0e76a375ed3dbac636f50ac39de966ece443751fe4d62392f9a360a19d94d0da'
+'SKIP'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8') # Jim Jagielski
+
+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
+}
+
+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 

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

2016-03-04 Thread Felix Yan
Date: Friday, March 4, 2016 @ 22:25:50
  Author: fyan
Revision: 260835

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  apache/repos/staging-i686/
  apache/repos/staging-i686/PKGBUILD
(from rev 260834, apache/trunk/PKGBUILD)
  apache/repos/staging-i686/apache.install
(from rev 260834, apache/trunk/apache.install)
  apache/repos/staging-i686/apache.tmpfiles.conf
(from rev 260834, apache/trunk/apache.tmpfiles.conf)
  apache/repos/staging-i686/arch.layout
(from rev 260834, apache/trunk/arch.layout)
  apache/repos/staging-i686/httpd.logrotate
(from rev 260834, apache/trunk/httpd.logrotate)
  apache/repos/staging-i686/httpd.service
(from rev 260834, apache/trunk/httpd.service)
  apache/repos/staging-x86_64/
  apache/repos/staging-x86_64/PKGBUILD
(from rev 260834, apache/trunk/PKGBUILD)
  apache/repos/staging-x86_64/apache.install
(from rev 260834, apache/trunk/apache.install)
  apache/repos/staging-x86_64/apache.tmpfiles.conf
(from rev 260834, apache/trunk/apache.tmpfiles.conf)
  apache/repos/staging-x86_64/arch.layout
(from rev 260834, apache/trunk/arch.layout)
  apache/repos/staging-x86_64/httpd.logrotate
(from rev 260834, apache/trunk/httpd.logrotate)
  apache/repos/staging-x86_64/httpd.service
(from rev 260834, apache/trunk/httpd.service)

-+
 staging-i686/PKGBUILD   |  121 ++
 staging-i686/apache.install |   16 
 staging-i686/apache.tmpfiles.conf   |1 
 staging-i686/arch.layout|   22 ++
 staging-i686/httpd.logrotate|7 +
 staging-i686/httpd.service  |   15 
 staging-x86_64/PKGBUILD |  121 ++
 staging-x86_64/apache.install   |   16 
 staging-x86_64/apache.tmpfiles.conf |1 
 staging-x86_64/arch.layout  |   22 ++
 staging-x86_64/httpd.logrotate  |7 +
 staging-x86_64/httpd.service|   15 
 12 files changed, 364 insertions(+)

Copied: apache/repos/staging-i686/PKGBUILD (from rev 260834, 
apache/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-04 21:25:50 UTC (rev 260835)
@@ -0,0 +1,121 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.18
+pkgrel=2
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' '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')
+makedepends=('libxml2' 'lua' 'openssl' 'nghttp2')
+optdepends=(
+'lua: for mod_lua module'
+'openssl: for mod_ssl module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'nghttp2: for mod_http2 module'
+'lynx: apachectl status'
+)
+install=apache.install
+source=(
+http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('0644b050de41f5c9f67c825285049b144690421acb709b06fe53eddfa8a9fd4c'
+'SKIP'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8') # Jim Jagielski
+
+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
+}
+
+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 

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

2015-12-14 Thread Anatol Pomozov
Date: Monday, December 14, 2015 @ 17:50:31
  Author: anatolik
Revision: 256059

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  apache/repos/testing-i686/
  apache/repos/testing-i686/PKGBUILD
(from rev 256058, apache/trunk/PKGBUILD)
  apache/repos/testing-i686/apache.install
(from rev 256058, apache/trunk/apache.install)
  apache/repos/testing-i686/apache.tmpfiles.conf
(from rev 256058, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-i686/arch.layout
(from rev 256058, apache/trunk/arch.layout)
  apache/repos/testing-i686/httpd.logrotate
(from rev 256058, apache/trunk/httpd.logrotate)
  apache/repos/testing-i686/httpd.service
(from rev 256058, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 256058, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache.install
(from rev 256058, apache/trunk/apache.install)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 256058, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 256058, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 256058, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 256058, apache/trunk/httpd.service)

-+
 testing-i686/PKGBUILD   |  121 ++
 testing-i686/apache.install |   16 
 testing-i686/apache.tmpfiles.conf   |1 
 testing-i686/arch.layout|   22 ++
 testing-i686/httpd.logrotate|6 +
 testing-i686/httpd.service  |   15 
 testing-x86_64/PKGBUILD |  121 ++
 testing-x86_64/apache.install   |   16 
 testing-x86_64/apache.tmpfiles.conf |1 
 testing-x86_64/arch.layout  |   22 ++
 testing-x86_64/httpd.logrotate  |6 +
 testing-x86_64/httpd.service|   15 
 12 files changed, 362 insertions(+)

Copied: apache/repos/testing-i686/PKGBUILD (from rev 256058, 
apache/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-12-14 16:50:31 UTC (rev 256059)
@@ -0,0 +1,121 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.18
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' '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')
+makedepends=('libxml2' 'lua' 'openssl' 'nghttp2')
+optdepends=(
+'lua: for mod_lua module'
+'openssl: for mod_ssl module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'nghttp2: for mod_http2 module'
+'lynx: apachectl status'
+)
+install=apache.install
+source=(
+http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('0644b050de41f5c9f67c825285049b144690421acb709b06fe53eddfa8a9fd4c'
+'SKIP'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'09165b754414347592a60e3cab3904cc441cfe2100eb66c7c76e6b0f18280ec8'
+'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8') # Jim Jagielski
+
+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
+}
+
+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 

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

2015-01-30 Thread Anatol Pomozov
Date: Friday, January 30, 2015 @ 23:26:29
  Author: anatolik
Revision: 230303

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  apache/repos/testing-i686/
  apache/repos/testing-i686/PKGBUILD
(from rev 230302, apache/trunk/PKGBUILD)
  apache/repos/testing-i686/apache.install
(from rev 230302, apache/trunk/apache.install)
  apache/repos/testing-i686/apache.tmpfiles.conf
(from rev 230302, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-i686/arch.layout
(from rev 230302, apache/trunk/arch.layout)
  apache/repos/testing-i686/httpd.logrotate
(from rev 230302, apache/trunk/httpd.logrotate)
  apache/repos/testing-i686/httpd.service
(from rev 230302, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 230302, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache.install
(from rev 230302, apache/trunk/apache.install)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 230302, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 230302, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 230302, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 230302, apache/trunk/httpd.service)

-+
 testing-i686/PKGBUILD   |  118 ++
 testing-i686/apache.install |   16 
 testing-i686/apache.tmpfiles.conf   |1 
 testing-i686/arch.layout|   22 ++
 testing-i686/httpd.logrotate|6 +
 testing-i686/httpd.service  |   15 
 testing-x86_64/PKGBUILD |  118 ++
 testing-x86_64/apache.install   |   16 
 testing-x86_64/apache.tmpfiles.conf |1 
 testing-x86_64/arch.layout  |   22 ++
 testing-x86_64/httpd.logrotate  |6 +
 testing-x86_64/httpd.service|   15 
 12 files changed, 356 insertions(+)

Copied: apache/repos/testing-i686/PKGBUILD (from rev 230302, 
apache/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-01-30 22:26:29 UTC (rev 230303)
@@ -0,0 +1,118 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=apache
+pkgver=2.4.12
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' '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')
+makedepends=('libxml2' 'lua' 'openssl')
+optdepends=(
+'lua: for mod_lua module'
+'openssl: for mod_ssl module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules' 
+'lynx: apachectl status'
+)
+install=apache.install
+source=(
+http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('ad6d39edfe4621d8cc9a2791f6f8d6876943a9da41ac8533d77407a2e630eae4'
+'SKIP'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'875903831634edf35d8d57e9a51bacb818255ecb3bfff29627f03e43d1ab65c3'
+'14d0a775eea7f8c66ba55399a9ad1e4fd29e0302f479a15b28bbfc754c5aa347'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8') # Jim Jagielski
+
+build() {
+  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
+   
+  ./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-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 

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

2014-07-19 Thread Anatol Pomozov
Date: Saturday, July 19, 2014 @ 20:02:08
  Author: anatolik
Revision: 217483

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  apache/repos/testing-i686/
  apache/repos/testing-i686/PKGBUILD
(from rev 217482, apache/trunk/PKGBUILD)
  apache/repos/testing-i686/apache.install
(from rev 217482, apache/trunk/apache.install)
  apache/repos/testing-i686/apache.tmpfiles.conf
(from rev 217482, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-i686/arch.layout
(from rev 217482, apache/trunk/arch.layout)
  apache/repos/testing-i686/httpd.logrotate
(from rev 217482, apache/trunk/httpd.logrotate)
  apache/repos/testing-i686/httpd.service
(from rev 217482, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 217482, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache.install
(from rev 217482, apache/trunk/apache.install)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 217482, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 217482, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 217482, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 217482, apache/trunk/httpd.service)

-+
 testing-i686/PKGBUILD   |  117 ++
 testing-i686/apache.install |   16 
 testing-i686/apache.tmpfiles.conf   |1 
 testing-i686/arch.layout|   22 ++
 testing-i686/httpd.logrotate|6 +
 testing-i686/httpd.service  |   15 
 testing-x86_64/PKGBUILD |  117 ++
 testing-x86_64/apache.install   |   16 
 testing-x86_64/apache.tmpfiles.conf |1 
 testing-x86_64/arch.layout  |   22 ++
 testing-x86_64/httpd.logrotate  |6 +
 testing-x86_64/httpd.service|   15 
 12 files changed, 354 insertions(+)

Copied: apache/repos/testing-i686/PKGBUILD (from rev 217482, 
apache/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-07-19 18:02:08 UTC (rev 217483)
@@ -0,0 +1,117 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=apache
+pkgver=2.4.10
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' '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')
+makedepends=('libxml2' 'lua' 'openssl')
+optdepends=(
+'lua: for mod_lua module'
+'openssl: for mod_ssl module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules' 
+'lynx: apachectl status'
+)
+install=apache.install
+source=(
+http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('176c4dac1a745f07b7b91e7f4fd48f9c48049fa6f088efe758d61d9738669c6a'
+'SKIP'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'875903831634edf35d8d57e9a51bacb818255ecb3bfff29627f03e43d1ab65c3'
+'14d0a775eea7f8c66ba55399a9ad1e4fd29e0302f479a15b28bbfc754c5aa347'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+
+build() {
+  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
+   
+  ./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-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 --enable-cern-meta \
+  --enable-lua --enable-xml2enc \

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

2014-03-16 Thread Anatol Pomozov
Date: Sunday, March 16, 2014 @ 20:57:22
  Author: anatolik
Revision: 207991

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  apache/repos/testing-i686/
  apache/repos/testing-i686/PKGBUILD
(from rev 207990, apache/trunk/PKGBUILD)
  apache/repos/testing-i686/apache.install
(from rev 207990, apache/trunk/apache.install)
  apache/repos/testing-i686/apache.tmpfiles.conf
(from rev 207990, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-i686/arch.layout
(from rev 207990, apache/trunk/arch.layout)
  apache/repos/testing-i686/httpd.logrotate
(from rev 207990, apache/trunk/httpd.logrotate)
  apache/repos/testing-i686/httpd.service
(from rev 207990, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 207990, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache.install
(from rev 207990, apache/trunk/apache.install)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 207990, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 207990, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 207990, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 207990, apache/trunk/httpd.service)

-+
 testing-i686/PKGBUILD   |  117 ++
 testing-i686/apache.install |   16 
 testing-i686/apache.tmpfiles.conf   |1 
 testing-i686/arch.layout|   22 ++
 testing-i686/httpd.logrotate|6 +
 testing-i686/httpd.service  |   15 
 testing-x86_64/PKGBUILD |  117 ++
 testing-x86_64/apache.install   |   16 
 testing-x86_64/apache.tmpfiles.conf |1 
 testing-x86_64/arch.layout  |   22 ++
 testing-x86_64/httpd.logrotate  |6 +
 testing-x86_64/httpd.service|   15 
 12 files changed, 354 insertions(+)

Copied: apache/repos/testing-i686/PKGBUILD (from rev 207990, 
apache/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-03-16 19:57:22 UTC (rev 207991)
@@ -0,0 +1,117 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=apache
+pkgver=2.4.9
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' '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')
+makedepends=('libxml2' 'lua' 'openssl')
+optdepends=(
+'lua: for mod_lua module'
+'openssl: for mod_ssl module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules' 
+'lynx: apachectl status'
+)
+install=apache.install
+source=(
+http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('f78cc90dfa47caf3d83ad18fd6b4e85f23c1733fc9088594b70ce2847603'
+'SKIP'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'875903831634edf35d8d57e9a51bacb818255ecb3bfff29627f03e43d1ab65c3'
+'14d0a775eea7f8c66ba55399a9ad1e4fd29e0302f479a15b28bbfc754c5aa347'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+
+build() {
+  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
+   
+  ./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-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 --enable-cern-meta \
+  --enable-lua --enable-xml2enc \
+  

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

2014-03-08 Thread Anatol Pomozov
Date: Sunday, March 9, 2014 @ 01:19:31
  Author: anatolik
Revision: 207426

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  apache/repos/testing-i686/
  apache/repos/testing-i686/PKGBUILD
(from rev 207425, apache/trunk/PKGBUILD)
  apache/repos/testing-i686/apache.install
(from rev 207425, apache/trunk/apache.install)
  apache/repos/testing-i686/apache.tmpfiles.conf
(from rev 207425, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-i686/arch.layout
(from rev 207425, apache/trunk/arch.layout)
  apache/repos/testing-i686/httpd.logrotate
(from rev 207425, apache/trunk/httpd.logrotate)
  apache/repos/testing-i686/httpd.service
(from rev 207425, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 207425, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache.install
(from rev 207425, apache/trunk/apache.install)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 207425, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 207425, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 207425, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 207425, apache/trunk/httpd.service)

-+
 testing-i686/PKGBUILD   |  117 ++
 testing-i686/apache.install |   12 +++
 testing-i686/apache.tmpfiles.conf   |1 
 testing-i686/arch.layout|   22 ++
 testing-i686/httpd.logrotate|6 +
 testing-i686/httpd.service  |   15 
 testing-x86_64/PKGBUILD |  117 ++
 testing-x86_64/apache.install   |   12 +++
 testing-x86_64/apache.tmpfiles.conf |1 
 testing-x86_64/arch.layout  |   22 ++
 testing-x86_64/httpd.logrotate  |6 +
 testing-x86_64/httpd.service|   15 
 12 files changed, 346 insertions(+)

Copied: apache/repos/testing-i686/PKGBUILD (from rev 207425, 
apache/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-03-09 00:19:31 UTC (rev 207426)
@@ -0,0 +1,117 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=apache
+pkgver=2.4.7
+pkgrel=2
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' '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')
+makedepends=('libxml2' 'lua' 'openssl')
+optdepends=(
+'lua: for mod_lua support'
+'openssl: for mod_ssl support'
+'libxml2: for mod_xml2enc support' 
+'lynx: apachectl status'
+)
+install=apache.install
+source=(
+http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('64368d8301836815ae237f2b62d909711c896c1bd34573771e0ee5ad808ce71b'
+'SKIP'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'875903831634edf35d8d57e9a51bacb818255ecb3bfff29627f03e43d1ab65c3'
+'14d0a775eea7f8c66ba55399a9ad1e4fd29e0302f479a15b28bbfc754c5aa347'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+
+build() {
+  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
+   
+  ./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-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 --enable-cern-meta \
+  --enable-lua --enable-xml2enc \
+  

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

2014-02-26 Thread Anatol Pomozov
Date: Thursday, February 27, 2014 @ 06:43:56
  Author: anatolik
Revision: 206462

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  apache/repos/staging-i686/
  apache/repos/staging-i686/PKGBUILD
(from rev 206461, apache/trunk/PKGBUILD)
  apache/repos/staging-i686/apache.install
(from rev 206461, apache/trunk/apache.install)
  apache/repos/staging-i686/apache.tmpfiles.conf
(from rev 206461, apache/trunk/apache.tmpfiles.conf)
  apache/repos/staging-i686/arch.layout
(from rev 206461, apache/trunk/arch.layout)
  apache/repos/staging-i686/httpd.logrotate
(from rev 206461, apache/trunk/httpd.logrotate)
  apache/repos/staging-i686/httpd.service
(from rev 206461, apache/trunk/httpd.service)
  apache/repos/staging-x86_64/
  apache/repos/staging-x86_64/PKGBUILD
(from rev 206461, apache/trunk/PKGBUILD)
  apache/repos/staging-x86_64/apache.install
(from rev 206461, apache/trunk/apache.install)
  apache/repos/staging-x86_64/apache.tmpfiles.conf
(from rev 206461, apache/trunk/apache.tmpfiles.conf)
  apache/repos/staging-x86_64/arch.layout
(from rev 206461, apache/trunk/arch.layout)
  apache/repos/staging-x86_64/httpd.logrotate
(from rev 206461, apache/trunk/httpd.logrotate)
  apache/repos/staging-x86_64/httpd.service
(from rev 206461, apache/trunk/httpd.service)

-+
 staging-i686/PKGBUILD   |  108 ++
 staging-i686/apache.install |   12 +++
 staging-i686/apache.tmpfiles.conf   |1 
 staging-i686/arch.layout|   22 ++
 staging-i686/httpd.logrotate|6 +
 staging-i686/httpd.service  |   15 
 staging-x86_64/PKGBUILD |  108 ++
 staging-x86_64/apache.install   |   12 +++
 staging-x86_64/apache.tmpfiles.conf |1 
 staging-x86_64/arch.layout  |   22 ++
 staging-x86_64/httpd.logrotate  |6 +
 staging-x86_64/httpd.service|   15 
 12 files changed, 328 insertions(+)

Copied: apache/repos/staging-i686/PKGBUILD (from rev 206461, 
apache/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-02-27 05:43:56 UTC (rev 206462)
@@ -0,0 +1,108 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=apache
+pkgver=2.4.7
+pkgrel=1
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' '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=('openssl' 'zlib' 'apr-util' 'pcre' 'systemd')
+optdepends=('lynx: apachectl status')
+install=apache.install
+source=(http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout)
+sha256sums=('64368d8301836815ae237f2b62d909711c896c1bd34573771e0ee5ad808ce71b'
+'SKIP'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'875903831634edf35d8d57e9a51bacb818255ecb3bfff29627f03e43d1ab65c3'
+'14d0a775eea7f8c66ba55399a9ad1e4fd29e0302f479a15b28bbfc754c5aa347'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+
+build() {
+  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
+   
+  ./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-cache --enable-disk-cache --enable-mem-cache 
--enable-file-cache \
+  --enable-ssl --with-ssl \
+  --enable-deflate --enable-cgid \
+  --enable-proxy --enable-proxy-connect \
+  --enable-proxy-http --enable-proxy-ftp \
+  --enable-dbd \
+  --with-apr=/usr/bin/apr-1-config \
+  --with-apr-util=/usr/bin/apu-1-config \
+  --with-pcre=/usr
+
+  make
+}
+
+package() {
+  cd httpd-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+   
+  install -D -m755 httpd 

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

2013-05-31 Thread Pierre Schmitz
Date: Friday, May 31, 2013 @ 09:20:48
  Author: pierre
Revision: 186782

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  apache/repos/staging-i686/
  apache/repos/staging-i686/PKGBUILD
(from rev 186781, apache/trunk/PKGBUILD)
  apache/repos/staging-i686/apache.install
(from rev 186781, apache/trunk/apache.install)
  apache/repos/staging-i686/apache.tmpfiles.conf
(from rev 186781, apache/trunk/apache.tmpfiles.conf)
  apache/repos/staging-i686/arch.layout
(from rev 186781, apache/trunk/arch.layout)
  apache/repos/staging-i686/httpd.logrotate
(from rev 186781, apache/trunk/httpd.logrotate)
  apache/repos/staging-i686/httpd.service
(from rev 186781, apache/trunk/httpd.service)
  apache/repos/staging-x86_64/
  apache/repos/staging-x86_64/PKGBUILD
(from rev 186781, apache/trunk/PKGBUILD)
  apache/repos/staging-x86_64/apache.install
(from rev 186781, apache/trunk/apache.install)
  apache/repos/staging-x86_64/apache.tmpfiles.conf
(from rev 186781, apache/trunk/apache.tmpfiles.conf)
  apache/repos/staging-x86_64/arch.layout
(from rev 186781, apache/trunk/arch.layout)
  apache/repos/staging-x86_64/httpd.logrotate
(from rev 186781, apache/trunk/httpd.logrotate)
  apache/repos/staging-x86_64/httpd.service
(from rev 186781, apache/trunk/httpd.service)

-+
 staging-i686/PKGBUILD   |  161 ++
 staging-i686/apache.install |7 +
 staging-i686/apache.tmpfiles.conf   |1 
 staging-i686/arch.layout|   22 
 staging-i686/httpd.logrotate|6 +
 staging-i686/httpd.service  |   15 +++
 staging-x86_64/PKGBUILD |  161 ++
 staging-x86_64/apache.install   |7 +
 staging-x86_64/apache.tmpfiles.conf |1 
 staging-x86_64/arch.layout  |   22 
 staging-x86_64/httpd.logrotate  |6 +
 staging-x86_64/httpd.service|   15 +++
 12 files changed, 424 insertions(+)

Copied: apache/repos/staging-i686/PKGBUILD (from rev 186781, 
apache/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-05-31 07:20:48 UTC (rev 186782)
@@ -0,0 +1,161 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=apache
+pkgver=2.2.24
+pkgrel=2
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' 'x86_64')
+options=('!libtool')
+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/logrotate.d/httpd)
+depends=('openssl' 'zlib' 'apr-util' 'pcre' 'systemd')
+optdepends=('lynx: apachectl status')
+install=apache.install
+_itkurl=http://mpm-itk.sesse.net/apache2.2-mpm-itk-2.2.17-01
+source=(http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2
+http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2.asc
+${_itkurl}/02-rename-prefork-to-itk.patch
+${_itkurl}/03-add-mpm-to-build-system.patch
+${_itkurl}/04-correct-output-makefile-location.patch
+${_itkurl}/05-add-copyright.patch
+${_itkurl}/06-hook-just-after-merging-perdir-config.patch
+${_itkurl}/07-base-functionality.patch
+${_itkurl}/08-max-clients-per-vhost.patch
+${_itkurl}/09-capabilities.patch
+${_itkurl}/10-nice.patch
+${_itkurl}/11-fix-htaccess-reads-for-persistent-connections.patch
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout)
+md5sums=('91bd1484aca13a7095d6432be37fc7ae'
+ 'SKIP'
+ 'f1d9d41360908ceb2374da55ae99197a'
+ 'cdfa04985a0efa850976aef01c2a0c40'
+ '0930d2d0612eb0a53a0d00aea7e8687f'
+ '3a0c29bb91442c33ea73ebbe072af922'
+ '0ef4729a6f1ffc848ad0e9b440a66f66'
+ '940944caa948340b11ddae56adaef89b'
+ 'ce09a987523884de8838f73dc8ec0d19'
+ 'e75b7dd8d8afcd299ba4ab2ab81c11e4'
+ 'ce1ccc21f3ad8625169c8f62913450ac'
+ '1e5b222edcfbf99a3edc56fcb2074fbe'
+ '82068753dab92fe86312b1010a2904d7'
+ '13dbaaf949c5bc36cfcf5718b95cb020'
+ 'a823bb355c136fd0e2b3fb820e2d903c'
+ '6b7122245a67597230a3b3f317eaf34e')
+
+build() {
+   cd ${srcdir}/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
+
+   cd ..
+   cp -r httpd-${pkgver} httpd-itk-${pkgver}
+
+   cd httpd-itk-${pkgver}
+   
+   # Fix