[arch-commits] Commit in haproxy/repos (8 files)

2017-06-18 Thread Johannes Löthberg
Date: Monday, June 19, 2017 @ 00:48:38
  Author: demize
Revision: 238114

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

Added:
  haproxy/repos/community-testing-i686/
  haproxy/repos/community-testing-i686/PKGBUILD
(from rev 238113, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-i686/haproxy.cfg
(from rev 238113, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-i686/haproxy.install
(from rev 238113, haproxy/trunk/haproxy.install)
  haproxy/repos/community-testing-x86_64/
  haproxy/repos/community-testing-x86_64/PKGBUILD
(from rev 238113, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-x86_64/haproxy.cfg
(from rev 238113, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-x86_64/haproxy.install
(from rev 238113, haproxy/trunk/haproxy.install)

--+
 community-testing-i686/PKGBUILD  |   70 +
 community-testing-i686/haproxy.cfg   |   49 
 community-testing-i686/haproxy.install   |   12 
 community-testing-x86_64/PKGBUILD|   70 +
 community-testing-x86_64/haproxy.cfg |   49 
 community-testing-x86_64/haproxy.install |   12 
 6 files changed, 262 insertions(+)

Copied: haproxy/repos/community-testing-i686/PKGBUILD (from rev 238113, 
haproxy/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-06-19 00:48:38 UTC (rev 238114)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=haproxy
+pkgver=1.7.6
+pkgrel=1
+
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+url='http://haproxy.org/'
+arch=('i686' 'x86_64')
+license=('GPL')
+
+depends=('openssl' 'pcre' 'zlib' 'lua')
+
+backup=('etc/haproxy/haproxy.cfg')
+
+install=haproxy.install
+
+source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg)
+
+md5sums=('8f4328cf66137f0dbf6901e065f603cc'
+ '27941f31d25d5629f4bdef6bc4b2555a')
+
+prepare() {
+  cd haproxy-$pkgver
+  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
+}
+
+build() {
+  cd haproxy-$pkgver
+
+  make CPU=generic TARGET=linux2628 \
+USE_GETADDRINFO=1 \
+USE_OPENSSL=1 \
+USE_PCRE=1 USE_PCRE_JIT=1 \
+USE_ZLIB=1 \
+USE_LUA=1
+
+  for contrib in halog iprange systemd; do
+make -C contrib/$contrib SBINDIR=/usr/bin
+  done
+}
+
+package() {
+  cd haproxy-$pkgver
+  make \
+EXTRA=haproxy-systemd-wrapper \
+PREFIX="$pkgdir"/usr \
+SBINDIR="$pkgdir"/usr/bin \
+DOCDIR="$pkgdir"/usr/share/$pkgname \
+install
+
+  for contrib in halog iprange; do
+install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
+  done
+
+  install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
+  install -Dm644 contrib/systemd/haproxy.service \
+"$pkgdir"/usr/lib/systemd/system/haproxy.service
+
+  install -d "$pkgdir"/usr/share/haproxy/examples/errorfiles
+  install -m644 examples/*.cfg "$pkgdir"/usr/share/haproxy/examples/
+  install -m644 examples/errorfiles/*.http \
+"$pkgdir"/usr/share/haproxy/examples/errorfiles/
+
+  install -Dm644 examples/haproxy.vim \
+"$pkgdir"/usr/share/vim/vimfiles/syntax/haproxy.vim
+}

Copied: haproxy/repos/community-testing-i686/haproxy.cfg (from rev 238113, 
haproxy/trunk/haproxy.cfg)
===
--- community-testing-i686/haproxy.cfg  (rev 0)
+++ community-testing-i686/haproxy.cfg  2017-06-19 00:48:38 UTC (rev 238114)
@@ -0,0 +1,49 @@
+#-
+# Example configuration.  See the full configuration manual online.
+#
+#   http://www.haproxy.org/download/1.7/doc/configuration.txt
+#
+#-
+
+global
+maxconn 2
+log 127.0.0.1 local0
+userhaproxy
+chroot  /usr/share/haproxy
+pidfile /run/haproxy.pid
+daemon
+
+frontend  main
+bind :5000
+mode http
+log  global
+option   httplog
+option   dontlognull
+option   http_proxy
+option forwardforexcept 127.0.0.0/8
+maxconn  8000
+timeout  client  30s
+
+acl url_static   path_beg   -i /static /images /javascript 
/stylesheets
+acl url_static   path_end   -i .jpg .gif .png .css .js
+
+use_backend static  if url_static
+default_backend app
+
+backend static
+modehttp
+balance roundrobin
+timeout connect 5s
+timeout server  5s
+server  static 127.0.0.1:4331 check

[arch-commits] Commit in haproxy/repos (8 files)

2017-02-27 Thread Johannes Löthberg
Date: Monday, February 27, 2017 @ 08:25:31
  Author: demize
Revision: 213998

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

Added:
  haproxy/repos/community-staging-i686/
  haproxy/repos/community-staging-i686/PKGBUILD
(from rev 213997, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-staging-i686/haproxy.cfg
(from rev 213997, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-staging-i686/haproxy.install
(from rev 213997, haproxy/trunk/haproxy.install)
  haproxy/repos/community-staging-x86_64/
  haproxy/repos/community-staging-x86_64/PKGBUILD
(from rev 213997, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-staging-x86_64/haproxy.cfg
(from rev 213997, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-staging-x86_64/haproxy.install
(from rev 213997, haproxy/trunk/haproxy.install)

--+
 community-staging-i686/PKGBUILD  |   70 +
 community-staging-i686/haproxy.cfg   |   49 
 community-staging-i686/haproxy.install   |   12 
 community-staging-x86_64/PKGBUILD|   70 +
 community-staging-x86_64/haproxy.cfg |   49 
 community-staging-x86_64/haproxy.install |   12 
 6 files changed, 262 insertions(+)

Copied: haproxy/repos/community-staging-i686/PKGBUILD (from rev 213997, 
haproxy/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-02-27 08:25:31 UTC (rev 213998)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=haproxy
+pkgver=1.7.2
+pkgrel=2
+
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+url='http://haproxy.org/'
+arch=('i686' 'x86_64')
+license=('GPL')
+
+depends=('openssl' 'pcre' 'zlib' 'lua')
+
+backup=('etc/haproxy/haproxy.cfg')
+
+install=haproxy.install
+
+source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg)
+
+md5sums=('7330b36f3764ebe409e9305803dc30e2'
+ '27941f31d25d5629f4bdef6bc4b2555a')
+
+prepare() {
+  cd haproxy-$pkgver
+  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
+}
+
+build() {
+  cd haproxy-$pkgver
+
+  make CPU=generic TARGET=linux2628 \
+USE_GETADDRINFO=1 \
+USE_OPENSSL=1 \
+USE_PCRE=1 USE_PCRE_JIT=1 \
+USE_ZLIB=1 \
+USE_LUA=1
+
+  for contrib in halog iprange systemd; do
+make -C contrib/$contrib SBINDIR=/usr/bin
+  done
+}
+
+package() {
+  cd haproxy-$pkgver
+  make \
+EXTRA=haproxy-systemd-wrapper \
+PREFIX="$pkgdir"/usr \
+SBINDIR="$pkgdir"/usr/bin \
+DOCDIR="$pkgdir"/usr/share/$pkgname \
+install
+
+  for contrib in halog iprange; do
+install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
+  done
+
+  install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
+  install -Dm644 contrib/systemd/haproxy.service \
+"$pkgdir"/usr/lib/systemd/system/haproxy.service
+
+  install -d "$pkgdir"/usr/share/haproxy/examples/errorfiles
+  install -m644 examples/*.cfg "$pkgdir"/usr/share/haproxy/examples/
+  install -m644 examples/errorfiles/*.http \
+"$pkgdir"/usr/share/haproxy/examples/errorfiles/
+
+  install -Dm644 examples/haproxy.vim \
+"$pkgdir"/usr/share/vim/vimfiles/syntax/haproxy.vim
+}

Copied: haproxy/repos/community-staging-i686/haproxy.cfg (from rev 213997, 
haproxy/trunk/haproxy.cfg)
===
--- community-staging-i686/haproxy.cfg  (rev 0)
+++ community-staging-i686/haproxy.cfg  2017-02-27 08:25:31 UTC (rev 213998)
@@ -0,0 +1,49 @@
+#-
+# Example configuration.  See the full configuration manual online.
+#
+#   http://www.haproxy.org/download/1.7/doc/configuration.txt
+#
+#-
+
+global
+maxconn 2
+log 127.0.0.1 local0
+userhaproxy
+chroot  /usr/share/haproxy
+pidfile /run/haproxy.pid
+daemon
+
+frontend  main
+bind :5000
+mode http
+log  global
+option   httplog
+option   dontlognull
+option   http_proxy
+option forwardforexcept 127.0.0.0/8
+maxconn  8000
+timeout  client  30s
+
+acl url_static   path_beg   -i /static /images /javascript 
/stylesheets
+acl url_static   path_end   -i .jpg .gif .png .css .js
+
+use_backend static  if url_static
+default_backend app
+
+backend static
+modehttp
+balance roundrobin
+timeout connect 5s
+timeout server  5s
+server  static 127.0.0.1:4331 c

[arch-commits] Commit in haproxy/repos (8 files)

2017-02-27 Thread Johannes Löthberg
Date: Monday, February 27, 2017 @ 08:15:46
  Author: demize
Revision: 213987

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

Added:
  haproxy/repos/staging-i686/
  haproxy/repos/staging-i686/PKGBUILD
(from rev 213986, haproxy/trunk/PKGBUILD)
  haproxy/repos/staging-i686/haproxy.cfg
(from rev 213986, haproxy/trunk/haproxy.cfg)
  haproxy/repos/staging-i686/haproxy.install
(from rev 213986, haproxy/trunk/haproxy.install)
  haproxy/repos/staging-x86_64/
  haproxy/repos/staging-x86_64/PKGBUILD
(from rev 213986, haproxy/trunk/PKGBUILD)
  haproxy/repos/staging-x86_64/haproxy.cfg
(from rev 213986, haproxy/trunk/haproxy.cfg)
  haproxy/repos/staging-x86_64/haproxy.install
(from rev 213986, haproxy/trunk/haproxy.install)

+
 staging-i686/PKGBUILD  |   70 +++
 staging-i686/haproxy.cfg   |   49 +++
 staging-i686/haproxy.install   |   12 ++
 staging-x86_64/PKGBUILD|   70 +++
 staging-x86_64/haproxy.cfg |   49 +++
 staging-x86_64/haproxy.install |   12 ++
 6 files changed, 262 insertions(+)

Copied: haproxy/repos/staging-i686/PKGBUILD (from rev 213986, 
haproxy/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-02-27 08:15:46 UTC (rev 213987)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=haproxy
+pkgver=1.7.2
+pkgrel=2
+
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+url='http://haproxy.org/'
+arch=('i686' 'x86_64')
+license=('GPL')
+
+depends=('openssl' 'pcre' 'zlib' 'lua')
+
+backup=('etc/haproxy/haproxy.cfg')
+
+install=haproxy.install
+
+source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg)
+
+md5sums=('7330b36f3764ebe409e9305803dc30e2'
+ '27941f31d25d5629f4bdef6bc4b2555a')
+
+prepare() {
+  cd haproxy-$pkgver
+  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
+}
+
+build() {
+  cd haproxy-$pkgver
+
+  make CPU=generic TARGET=linux2628 \
+USE_GETADDRINFO=1 \
+USE_OPENSSL=1 \
+USE_PCRE=1 USE_PCRE_JIT=1 \
+USE_ZLIB=1 \
+USE_LUA=1
+
+  for contrib in halog iprange systemd; do
+make -C contrib/$contrib SBINDIR=/usr/bin
+  done
+}
+
+package() {
+  cd haproxy-$pkgver
+  make \
+EXTRA=haproxy-systemd-wrapper \
+PREFIX="$pkgdir"/usr \
+SBINDIR="$pkgdir"/usr/bin \
+DOCDIR="$pkgdir"/usr/share/$pkgname \
+install
+
+  for contrib in halog iprange; do
+install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
+  done
+
+  install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
+  install -Dm644 contrib/systemd/haproxy.service \
+"$pkgdir"/usr/lib/systemd/system/haproxy.service
+
+  install -d "$pkgdir"/usr/share/haproxy/examples/errorfiles
+  install -m644 examples/*.cfg "$pkgdir"/usr/share/haproxy/examples/
+  install -m644 examples/errorfiles/*.http \
+"$pkgdir"/usr/share/haproxy/examples/errorfiles/
+
+  install -Dm644 examples/haproxy.vim \
+"$pkgdir"/usr/share/vim/vimfiles/syntax/haproxy.vim
+}

Copied: haproxy/repos/staging-i686/haproxy.cfg (from rev 213986, 
haproxy/trunk/haproxy.cfg)
===
--- staging-i686/haproxy.cfg(rev 0)
+++ staging-i686/haproxy.cfg2017-02-27 08:15:46 UTC (rev 213987)
@@ -0,0 +1,49 @@
+#-
+# Example configuration.  See the full configuration manual online.
+#
+#   http://www.haproxy.org/download/1.7/doc/configuration.txt
+#
+#-
+
+global
+maxconn 2
+log 127.0.0.1 local0
+userhaproxy
+chroot  /usr/share/haproxy
+pidfile /run/haproxy.pid
+daemon
+
+frontend  main
+bind :5000
+mode http
+log  global
+option   httplog
+option   dontlognull
+option   http_proxy
+option forwardforexcept 127.0.0.0/8
+maxconn  8000
+timeout  client  30s
+
+acl url_static   path_beg   -i /static /images /javascript 
/stylesheets
+acl url_static   path_end   -i .jpg .gif .png .css .js
+
+use_backend static  if url_static
+default_backend app
+
+backend static
+modehttp
+balance roundrobin
+timeout connect 5s
+timeout server  5s
+server  static 127.0.0.1:4331 check
+
+backend app
+modehttp
+balance roundrobin
+timeout connect 5s
+timeout server  30s
+timeout queue   30s
+server  app1 127.0.0.1:

[arch-commits] Commit in haproxy/repos (8 files)

2016-12-28 Thread Johannes Löthberg
Date: Wednesday, December 28, 2016 @ 11:57:49
  Author: demize
Revision: 203200

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

Added:
  haproxy/repos/community-testing-i686/
  haproxy/repos/community-testing-i686/PKGBUILD
(from rev 203199, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-i686/haproxy.cfg
(from rev 203199, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-i686/haproxy.install
(from rev 203199, haproxy/trunk/haproxy.install)
  haproxy/repos/community-testing-x86_64/
  haproxy/repos/community-testing-x86_64/PKGBUILD
(from rev 203199, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-x86_64/haproxy.cfg
(from rev 203199, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-x86_64/haproxy.install
(from rev 203199, haproxy/trunk/haproxy.install)

--+
 community-testing-i686/PKGBUILD  |   70 +
 community-testing-i686/haproxy.cfg   |   49 
 community-testing-i686/haproxy.install   |   12 
 community-testing-x86_64/PKGBUILD|   70 +
 community-testing-x86_64/haproxy.cfg |   49 
 community-testing-x86_64/haproxy.install |   12 
 6 files changed, 262 insertions(+)

Copied: haproxy/repos/community-testing-i686/PKGBUILD (from rev 203199, 
haproxy/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-12-28 11:57:49 UTC (rev 203200)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=haproxy
+pkgver=1.7.1
+pkgrel=1
+
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+url='http://haproxy.org/'
+arch=('i686' 'x86_64')
+license=('GPL')
+
+depends=('openssl' 'pcre' 'zlib' 'lua')
+
+backup=('etc/haproxy/haproxy.cfg')
+
+install=haproxy.install
+
+source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg)
+
+md5sums=('d0acaae02e444039e11892ea31dde478'
+ '27941f31d25d5629f4bdef6bc4b2555a')
+
+prepare() {
+  cd haproxy-$pkgver
+  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
+}
+
+build() {
+  cd haproxy-$pkgver
+
+  make CPU=generic TARGET=linux2628 \
+USE_GETADDRINFO=1 \
+USE_OPENSSL=1 \
+USE_PCRE=1 USE_PCRE_JIT=1 \
+USE_ZLIB=1 \
+USE_LUA=1
+
+  for contrib in halog iprange systemd; do
+make -C contrib/$contrib SBINDIR=/usr/bin
+  done
+}
+
+package() {
+  cd haproxy-$pkgver
+  make \
+EXTRA=haproxy-systemd-wrapper \
+PREFIX="$pkgdir"/usr \
+SBINDIR="$pkgdir"/usr/bin \
+DOCDIR="$pkgdir"/usr/share/$pkgname \
+install
+
+  for contrib in halog iprange; do
+install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
+  done
+
+  install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
+  install -Dm644 contrib/systemd/haproxy.service \
+"$pkgdir"/usr/lib/systemd/system/haproxy.service
+
+  install -d "$pkgdir"/usr/share/haproxy/examples/errorfiles
+  install -m644 examples/*.cfg "$pkgdir"/usr/share/haproxy/examples/
+  install -m644 examples/errorfiles/*.http \
+"$pkgdir"/usr/share/haproxy/examples/errorfiles/
+
+  install -Dm644 examples/haproxy.vim \
+"$pkgdir"/usr/share/vim/vimfiles/syntax/haproxy.vim
+}

Copied: haproxy/repos/community-testing-i686/haproxy.cfg (from rev 203199, 
haproxy/trunk/haproxy.cfg)
===
--- community-testing-i686/haproxy.cfg  (rev 0)
+++ community-testing-i686/haproxy.cfg  2016-12-28 11:57:49 UTC (rev 203200)
@@ -0,0 +1,49 @@
+#-
+# Example configuration.  See the full configuration manual online.
+#
+#   http://www.haproxy.org/download/1.7/doc/configuration.txt
+#
+#-
+
+global
+maxconn 2
+log 127.0.0.1 local0
+userhaproxy
+chroot  /usr/share/haproxy
+pidfile /run/haproxy.pid
+daemon
+
+frontend  main
+bind :5000
+mode http
+log  global
+option   httplog
+option   dontlognull
+option   http_proxy
+option forwardforexcept 127.0.0.0/8
+maxconn  8000
+timeout  client  30s
+
+acl url_static   path_beg   -i /static /images /javascript 
/stylesheets
+acl url_static   path_end   -i .jpg .gif .png .css .js
+
+use_backend static  if url_static
+default_backend app
+
+backend static
+modehttp
+balance roundrobin
+timeout connect 5s
+timeout server  5s
+server  static 127.0.0.1:433

[arch-commits] Commit in haproxy/repos (8 files)

2016-11-22 Thread Johannes Löthberg
Date: Tuesday, November 22, 2016 @ 11:24:02
  Author: demize
Revision: 196520

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

Added:
  haproxy/repos/community-testing-i686/
  haproxy/repos/community-testing-i686/PKGBUILD
(from rev 196519, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-i686/haproxy.cfg
(from rev 196519, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-i686/haproxy.install
(from rev 196519, haproxy/trunk/haproxy.install)
  haproxy/repos/community-testing-x86_64/
  haproxy/repos/community-testing-x86_64/PKGBUILD
(from rev 196519, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-x86_64/haproxy.cfg
(from rev 196519, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-x86_64/haproxy.install
(from rev 196519, haproxy/trunk/haproxy.install)

--+
 community-testing-i686/PKGBUILD  |   70 +
 community-testing-i686/haproxy.cfg   |   49 
 community-testing-i686/haproxy.install   |   12 
 community-testing-x86_64/PKGBUILD|   70 +
 community-testing-x86_64/haproxy.cfg |   49 
 community-testing-x86_64/haproxy.install |   12 
 6 files changed, 262 insertions(+)

Copied: haproxy/repos/community-testing-i686/PKGBUILD (from rev 196519, 
haproxy/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-11-22 11:24:02 UTC (rev 196520)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=haproxy
+pkgver=1.6.10
+pkgrel=1
+
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+url='http://haproxy.org/'
+arch=('i686' 'x86_64')
+license=('GPL')
+
+depends=('openssl' 'pcre' 'zlib' 'lua')
+
+backup=('etc/haproxy/haproxy.cfg')
+
+install=haproxy.install
+
+source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg)
+
+md5sums=('6d47461c008b823a0088d19ec30dbe4e'
+ '02241a8ca257d12f7eb131e2d7da3f3b')
+
+prepare() {
+  cd haproxy-$pkgver
+  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
+}
+
+build() {
+  cd haproxy-$pkgver
+
+  make CPU=generic TARGET=linux2628 \
+USE_GETADDRINFO=1 \
+USE_OPENSSL=1 \
+USE_PCRE=1 USE_PCRE_JIT=1 \
+USE_ZLIB=1 \
+USE_LUA=1
+
+  for contrib in halog iprange systemd; do
+make -C contrib/$contrib SBINDIR=/usr/bin
+  done
+}
+
+package() {
+  cd haproxy-$pkgver
+  make \
+EXTRA=haproxy-systemd-wrapper \
+PREFIX="$pkgdir"/usr \
+SBINDIR="$pkgdir"/usr/bin \
+DOCDIR="$pkgdir"/usr/share/$pkgname \
+install
+
+  for contrib in halog iprange; do
+install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
+  done
+
+  install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
+  install -Dm644 contrib/systemd/haproxy.service \
+"$pkgdir"/usr/lib/systemd/system/haproxy.service
+
+  install -d "$pkgdir"/usr/share/haproxy/examples/errorfiles
+  install -m644 examples/*.cfg "$pkgdir"/usr/share/haproxy/examples/
+  install -m644 examples/errorfiles/*.http \
+"$pkgdir"/usr/share/haproxy/examples/errorfiles/
+
+  install -Dm644 examples/haproxy.vim \
+"$pkgdir"/usr/share/vim/vimfiles/syntax/haproxy.vim
+}

Copied: haproxy/repos/community-testing-i686/haproxy.cfg (from rev 196519, 
haproxy/trunk/haproxy.cfg)
===
--- community-testing-i686/haproxy.cfg  (rev 0)
+++ community-testing-i686/haproxy.cfg  2016-11-22 11:24:02 UTC (rev 196520)
@@ -0,0 +1,49 @@
+#-
+# Example configuration.  See the full configuration manual online.
+#
+#   http://www.haproxy.org/download/1.6/doc/configuration.txt
+#
+#-
+
+global
+maxconn 2
+log 127.0.0.1 local0
+userhaproxy
+chroot  /usr/share/haproxy
+pidfile /run/haproxy.pid
+daemon
+
+frontend  main
+bind :5000
+mode http
+log  global
+option   httplog
+option   dontlognull
+option   http_proxy
+option forwardforexcept 127.0.0.0/8
+maxconn  8000
+timeout  client  30s
+
+acl url_static   path_beg   -i /static /images /javascript 
/stylesheets
+acl url_static   path_end   -i .jpg .gif .png .css .js
+
+use_backend static  if url_static
+default_backend app
+
+backend static
+modehttp
+balance roundrobin
+timeout connect 5s
+timeout server  5s
+server  static 127.0.0.1:4331

[arch-commits] Commit in haproxy/repos (8 files)

2016-07-15 Thread Johannes Löthberg
Date: Friday, July 15, 2016 @ 17:01:47
  Author: demize
Revision: 182943

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

Added:
  haproxy/repos/community-testing-i686/
  haproxy/repos/community-testing-i686/PKGBUILD
(from rev 182942, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-i686/haproxy.cfg
(from rev 182942, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-i686/haproxy.install
(from rev 182942, haproxy/trunk/haproxy.install)
  haproxy/repos/community-testing-x86_64/
  haproxy/repos/community-testing-x86_64/PKGBUILD
(from rev 182942, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-x86_64/haproxy.cfg
(from rev 182942, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-x86_64/haproxy.install
(from rev 182942, haproxy/trunk/haproxy.install)

--+
 community-testing-i686/PKGBUILD  |   70 +
 community-testing-i686/haproxy.cfg   |   49 
 community-testing-i686/haproxy.install   |4 +
 community-testing-x86_64/PKGBUILD|   70 +
 community-testing-x86_64/haproxy.cfg |   49 
 community-testing-x86_64/haproxy.install |4 +
 6 files changed, 246 insertions(+)

Copied: haproxy/repos/community-testing-i686/PKGBUILD (from rev 182942, 
haproxy/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-07-15 17:01:47 UTC (rev 182943)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=haproxy
+pkgver=1.6.7
+pkgrel=1
+
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+url='http://haproxy.org/'
+arch=('i686' 'x86_64')
+license=('GPL')
+
+depends=('openssl' 'pcre' 'zlib' 'lua')
+
+backup=('etc/haproxy/haproxy.cfg')
+
+install=haproxy.install
+
+source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg)
+
+md5sums=('a046ed63b00347bd367b983529dd541f'
+ '02241a8ca257d12f7eb131e2d7da3f3b')
+
+prepare() {
+  cd haproxy-$pkgver
+  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
+}
+
+build() {
+  cd haproxy-$pkgver
+
+  make CPU=generic TARGET=linux2628 \
+USE_GETADDRINFO=1 \
+USE_OPENSSL=1 \
+USE_PCRE=1 USE_PCRE_JIT=1 \
+USE_ZLIB=1 \
+USE_LUA=1
+
+  for contrib in halog iprange systemd; do
+make -C contrib/$contrib SBINDIR=/usr/bin
+  done
+}
+
+package() {
+  cd haproxy-$pkgver
+  make \
+EXTRA=haproxy-systemd-wrapper \
+PREFIX="$pkgdir"/usr \
+SBINDIR="$pkgdir"/usr/bin \
+DOCDIR="$pkgdir"/usr/share/$pkgname \
+install
+
+  for contrib in halog iprange; do
+install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
+  done
+
+  install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
+  install -Dm644 contrib/systemd/haproxy.service \
+"$pkgdir"/usr/lib/systemd/system/haproxy.service
+
+  install -d "$pkgdir"/usr/share/haproxy/examples/errorfiles
+  install -m644 examples/*.cfg "$pkgdir"/usr/share/haproxy/examples/
+  install -m644 examples/errorfiles/*.http \
+"$pkgdir"/usr/share/haproxy/examples/errorfiles/
+
+  install -Dm644 examples/haproxy.vim \
+"$pkgdir"/usr/share/vim/vimfiles/syntax/haproxy.vim
+}

Copied: haproxy/repos/community-testing-i686/haproxy.cfg (from rev 182942, 
haproxy/trunk/haproxy.cfg)
===
--- community-testing-i686/haproxy.cfg  (rev 0)
+++ community-testing-i686/haproxy.cfg  2016-07-15 17:01:47 UTC (rev 182943)
@@ -0,0 +1,49 @@
+#-
+# Example configuration.  See the full configuration manual online.
+#
+#   http://www.haproxy.org/download/1.6/doc/configuration.txt
+#
+#-
+
+global
+maxconn 2
+log 127.0.0.1 local0
+userhaproxy
+chroot  /usr/share/haproxy
+pidfile /run/haproxy.pid
+daemon
+
+frontend  main
+bind :5000
+mode http
+log  global
+option   httplog
+option   dontlognull
+option   http_proxy
+option forwardforexcept 127.0.0.0/8
+maxconn  8000
+timeout  client  30s
+
+acl url_static   path_beg   -i /static /images /javascript 
/stylesheets
+acl url_static   path_end   -i .jpg .gif .png .css .js
+
+use_backend static  if url_static
+default_backend app
+
+backend static
+modehttp
+balance roundrobin
+timeout connect 5s
+timeout server  5s
+server  static 127.0.0.1:4331 check
+
+ba

[arch-commits] Commit in haproxy/repos (8 files)

2016-05-14 Thread Johannes Löthberg
Date: Saturday, May 14, 2016 @ 20:18:51
  Author: demize
Revision: 175395

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

Added:
  haproxy/repos/community-testing-i686/
  haproxy/repos/community-testing-i686/PKGBUILD
(from rev 175394, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-i686/haproxy.cfg
(from rev 175394, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-i686/haproxy.install
(from rev 175394, haproxy/trunk/haproxy.install)
  haproxy/repos/community-testing-x86_64/
  haproxy/repos/community-testing-x86_64/PKGBUILD
(from rev 175394, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-x86_64/haproxy.cfg
(from rev 175394, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-x86_64/haproxy.install
(from rev 175394, haproxy/trunk/haproxy.install)

--+
 community-testing-i686/PKGBUILD  |   71 +
 community-testing-i686/haproxy.cfg   |   49 
 community-testing-i686/haproxy.install   |4 +
 community-testing-x86_64/PKGBUILD|   71 +
 community-testing-x86_64/haproxy.cfg |   49 
 community-testing-x86_64/haproxy.install |4 +
 6 files changed, 248 insertions(+)

Copied: haproxy/repos/community-testing-i686/PKGBUILD (from rev 175394, 
haproxy/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-05-14 18:18:51 UTC (rev 175395)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor:  Bartłomiej Piotrowski 
+
+pkgname=haproxy
+pkgver=1.6.5
+pkgrel=2
+
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+url='http://haproxy.org/'
+arch=('i686' 'x86_64')
+license=('GPL')
+
+depends=('openssl' 'pcre' 'zlib' 'lua')
+
+backup=('etc/haproxy/haproxy.cfg')
+
+install=haproxy.install
+
+source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg)
+
+md5sums=('5290f278c04e682e42ab71fed26fc082'
+ '02241a8ca257d12f7eb131e2d7da3f3b')
+
+prepare() {
+  cd haproxy-$pkgver
+  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
+}
+
+build() {
+  cd haproxy-$pkgver
+
+  make CPU=generic TARGET=linux2628 \
+SPEC_CFLAGS="-fno-strict-aliasing -Wdeclaration-after-statement 
-fno-tree-sra" \
+USE_GETADDRINFO=1 \
+USE_OPENSSL=1 \
+USE_PCRE=1 USE_PCRE_JIT=1 \
+USE_ZLIB=1 \
+USE_LUA=1
+
+  for contrib in halog iprange systemd; do
+make -C contrib/$contrib SBINDIR=/usr/bin
+  done
+}
+
+package() {
+  cd haproxy-$pkgver
+  make \
+EXTRA=haproxy-systemd-wrapper \
+PREFIX="$pkgdir"/usr \
+SBINDIR="$pkgdir"/usr/bin \
+DOCDIR="$pkgdir"/usr/share/$pkgname \
+install
+
+  for contrib in halog iprange; do
+install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
+  done
+
+  install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
+  install -Dm644 contrib/systemd/haproxy.service \
+"$pkgdir"/usr/lib/systemd/system/haproxy.service
+
+  install -d "$pkgdir"/usr/share/haproxy/examples/errorfiles
+  install -m644 examples/*.cfg "$pkgdir"/usr/share/haproxy/examples/
+  install -m644 examples/errorfiles/*.http \
+"$pkgdir"/usr/share/haproxy/examples/errorfiles/
+
+  install -Dm644 examples/haproxy.vim \
+"$pkgdir"/usr/share/vim/vimfiles/syntax/haproxy.vim
+}

Copied: haproxy/repos/community-testing-i686/haproxy.cfg (from rev 175394, 
haproxy/trunk/haproxy.cfg)
===
--- community-testing-i686/haproxy.cfg  (rev 0)
+++ community-testing-i686/haproxy.cfg  2016-05-14 18:18:51 UTC (rev 175395)
@@ -0,0 +1,49 @@
+#-
+# Example configuration.  See the full configuration manual online.
+#
+#   http://www.haproxy.org/download/1.6/doc/configuration.txt
+#
+#-
+
+global
+maxconn 2
+log 127.0.0.1 local0
+userhaproxy
+chroot  /usr/share/haproxy
+pidfile /run/haproxy.pid
+daemon
+
+frontend  main
+bind :5000
+mode http
+log  global
+option   httplog
+option   dontlognull
+option   http_proxy
+option forwardforexcept 127.0.0.0/8
+maxconn  8000
+timeout  client  30s
+
+acl url_static   path_beg   -i /static /images /javascript 
/stylesheets
+acl url_static   path_end   -i .jpg .gif .png .css .js
+
+use_backend static  if url_static
+default_backend app
+
+backend static
+modehttp
+balance roundrobin
+timeout 

[arch-commits] Commit in haproxy/repos (8 files)

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:21:31
  Author: foutrelis
Revision: 164193

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

Added:
  haproxy/repos/community-staging-i686/
  haproxy/repos/community-staging-i686/PKGBUILD
(from rev 164192, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-staging-i686/haproxy.cfg
(from rev 164192, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-staging-i686/haproxy.install
(from rev 164192, haproxy/trunk/haproxy.install)
  haproxy/repos/community-staging-x86_64/
  haproxy/repos/community-staging-x86_64/PKGBUILD
(from rev 164192, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-staging-x86_64/haproxy.cfg
(from rev 164192, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-staging-x86_64/haproxy.install
(from rev 164192, haproxy/trunk/haproxy.install)

--+
 community-staging-i686/PKGBUILD  |   62 +
 community-staging-i686/haproxy.cfg   |   52 
 community-staging-i686/haproxy.install   |4 +
 community-staging-x86_64/PKGBUILD|   62 +
 community-staging-x86_64/haproxy.cfg |   52 
 community-staging-x86_64/haproxy.install |4 +
 6 files changed, 236 insertions(+)

Copied: haproxy/repos/community-staging-i686/PKGBUILD (from rev 164192, 
haproxy/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 18:21:31 UTC (rev 164193)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+
+pkgname=haproxy
+pkgver=1.6.3
+pkgrel=2
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+arch=('i686' 'x86_64')
+url='http://haproxy.org/'
+license=('GPL')
+depends=('openssl' 'pcre' 'zlib' 'lua')
+backup=('etc/haproxy/haproxy.cfg')
+install=haproxy.install
+source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg)
+md5sums=('3362d1e268c78155c2474cb73e7f03f9'
+ '7e41518332eeae70fa30dc30861c17c8')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make CPU=generic TARGET=linux2628 \
+USE_GETADDRINFO=1 \
+USE_OPENSSL=1 \
+USE_PCRE=1 USE_PCRE_JIT=1 \
+USE_ZLIB=1 \
+USE_LUA=1
+
+  for contrib in halog iprange systemd; do
+make -C contrib/$contrib SBINDIR=/usr/bin
+  done
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make \
+EXTRA=haproxy-systemd-wrapper \
+PREFIX="$pkgdir"/usr \
+SBINDIR="$pkgdir"/usr/bin \
+DOCDIR="$pkgdir"/usr/share/$pkgname \
+install
+
+  for contrib in halog iprange; do
+install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
+  done
+
+  install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
+  install -Dm644 contrib/systemd/haproxy.service \
+"$pkgdir"/usr/lib/systemd/system/haproxy.service
+
+  install -d "$pkgdir"/usr/share/haproxy/examples/errorfiles
+  install -m644 examples/*.cfg "$pkgdir"/usr/share/haproxy/examples/
+  install -m644 examples/errorfiles/*.http \
+"$pkgdir"/usr/share/haproxy/examples/errorfiles/
+
+  install -Dm644 examples/haproxy.vim \
+"$pkgdir"/usr/share/vim/vimfiles/syntax/haproxy.vim
+}

Copied: haproxy/repos/community-staging-i686/haproxy.cfg (from rev 164192, 
haproxy/trunk/haproxy.cfg)
===
--- community-staging-i686/haproxy.cfg  (rev 0)
+++ community-staging-i686/haproxy.cfg  2016-03-02 18:21:31 UTC (rev 164193)
@@ -0,0 +1,52 @@
+#-
+# Example configuration for a possible web application.  See the
+# full configuration options online.
+#
+#   http://haproxy.1wt.eu/download/1.4/doc/configuration.txt
+#
+#-
+
+global
+log 127.0.0.1 local2
+
+chroot  /usr/share/haproxy
+pidfile /run/haproxy.pid
+maxconn 4000
+userhaproxy
+daemon
+
+defaults
+modehttp
+log global
+option  httplog
+option  dontlognull
+option http-server-close
+option forwardfor   except 127.0.0.0/8
+option  redispatch
+retries 3
+timeout http-request10s
+timeout queue   1m
+timeout connect 10s
+timeout client  1m
+timeout server  1m
+timeout http-keep-alive 10s
+timeout check   10s
+maxconn 3000
+
+frontend  main *:5000
+acl url_static   path_beg   -i /static /images /javascript 
/stylesheets
+acl url_static   path_end   -i .jpg .g

[arch-commits] Commit in haproxy/repos (8 files)

2015-01-04 Thread Bartłomiej Piotrowski
Date: Sunday, January 4, 2015 @ 21:04:52
  Author: bpiotrowski
Revision: 125350

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

Added:
  haproxy/repos/community-testing-i686/
  haproxy/repos/community-testing-i686/PKGBUILD
(from rev 125349, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-i686/haproxy.cfg
(from rev 125349, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-i686/haproxy.install
(from rev 125349, haproxy/trunk/haproxy.install)
  haproxy/repos/community-testing-x86_64/
  haproxy/repos/community-testing-x86_64/PKGBUILD
(from rev 125349, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-x86_64/haproxy.cfg
(from rev 125349, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-x86_64/haproxy.install
(from rev 125349, haproxy/trunk/haproxy.install)

--+
 community-testing-i686/PKGBUILD  |   59 +
 community-testing-i686/haproxy.cfg   |   52 +
 community-testing-i686/haproxy.install   |8 +++
 community-testing-x86_64/PKGBUILD|   59 +
 community-testing-x86_64/haproxy.cfg |   52 +
 community-testing-x86_64/haproxy.install |8 +++
 6 files changed, 238 insertions(+)

Copied: haproxy/repos/community-testing-i686/PKGBUILD (from rev 125349, 
haproxy/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-01-04 20:04:52 UTC (rev 125350)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+
+pkgname=haproxy
+pkgver=1.5.10
+pkgrel=1
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+arch=('i686' 'x86_64')
+url='http://haproxy.org/'
+license=('GPL')
+depends=('openssl' 'pcre' 'zlib')
+backup=('etc/haproxy/haproxy.cfg')
+install=haproxy.install
+source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg)
+md5sums=('5631457ea1f84b3c0d8e5bc8015ed329'
+ '7e41518332eeae70fa30dc30861c17c8')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make CPU=generic TARGET=linux2628 \
+USE_GETADDRINFO=1 \
+USE_OPENSSL=1 \
+USE_PCRE=1 USE_PCRE_JIT=1 \
+USE_ZLIB=1
+
+  for contrib in halog iprange systemd; do
+make -C contrib/$contrib SBINDIR=/usr/bin
+  done
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make PREFIX="$pkgdir"/usr \
+SBINDIR="$pkgdir"/usr/bin \
+DOCDIR="$pkgdir"/usr/share/$pkgname \
+install
+
+  for contrib in halog iprange; do
+install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
+  done
+
+  install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
+  install -Dm644 contrib/systemd/haproxy.service \
+"$pkgdir"/usr/lib/systemd/system/haproxy.service
+
+  install -d "$pkgdir"/usr/share/doc/haproxy/examples/errorfiles
+  install -m644 examples/*.cfg "$pkgdir"/usr/share/doc/haproxy/examples/
+  install -m644 examples/errorfiles/*.http \
+"$pkgdir"/usr/share/doc/haproxy/examples/errorfiles/
+
+  install -Dm644 examples/haproxy.vim \
+"$pkgdir"/usr/share/vim/vimfiles/syntax/haproxy.vim
+}

Copied: haproxy/repos/community-testing-i686/haproxy.cfg (from rev 125349, 
haproxy/trunk/haproxy.cfg)
===
--- community-testing-i686/haproxy.cfg  (rev 0)
+++ community-testing-i686/haproxy.cfg  2015-01-04 20:04:52 UTC (rev 125350)
@@ -0,0 +1,52 @@
+#-
+# Example configuration for a possible web application.  See the
+# full configuration options online.
+#
+#   http://haproxy.1wt.eu/download/1.4/doc/configuration.txt
+#
+#-
+
+global
+log 127.0.0.1 local2
+
+chroot  /usr/share/haproxy
+pidfile /run/haproxy.pid
+maxconn 4000
+userhaproxy
+daemon
+
+defaults
+modehttp
+log global
+option  httplog
+option  dontlognull
+option http-server-close
+option forwardfor   except 127.0.0.0/8
+option  redispatch
+retries 3
+timeout http-request10s
+timeout queue   1m
+timeout connect 10s
+timeout client  1m
+timeout server  1m
+timeout http-keep-alive 10s
+timeout check   10s
+maxconn 3000
+
+frontend  main *:5000
+acl url_static   path_beg   -i /static /images /javascript 
/stylesheets
+acl url_static   path_end   -i .jpg .gif .png .css .js
+
+use_backend static