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

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Fri Jul 3 19:09:17 UTC 2015


    Date: Friday, July 3, 2015 @ 21:09:17
  Author: bpiotrowski
Revision: 136349

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

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

----------------------------------+
 /PKGBUILD                        |  118 +++++++++++++++++++++++++++++++++++++
 /haproxy.cfg                     |  104 ++++++++++++++++++++++++++++++++
 /haproxy.install                 |    8 ++
 community-i686/PKGBUILD          |   59 ------------------
 community-i686/haproxy.cfg       |   52 ----------------
 community-i686/haproxy.install   |    4 -
 community-x86_64/PKGBUILD        |   59 ------------------
 community-x86_64/haproxy.cfg     |   52 ----------------
 community-x86_64/haproxy.install |    4 -
 9 files changed, 230 insertions(+), 230 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2015-07-03 19:08:50 UTC (rev 136348)
+++ community-i686/PKGBUILD	2015-07-03 19:09:17 UTC (rev 136349)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
-
-pkgname=haproxy
-pkgver=1.5.12
-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=('4b94b257f16d88c315716b062b22e48a'
-         '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/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-i686/PKGBUILD (from rev 136348, haproxy/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2015-07-03 19:09:17 UTC (rev 136349)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+
+pkgname=haproxy
+pkgver=1.5.14
+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=('ad9d7262b96ba85a0f8c6acc6cb9edde'
+         '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/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
+}

Deleted: community-i686/haproxy.cfg
===================================================================
--- community-i686/haproxy.cfg	2015-07-03 19:08:50 UTC (rev 136348)
+++ community-i686/haproxy.cfg	2015-07-03 19:09:17 UTC (rev 136349)
@@ -1,52 +0,0 @@
-#---------------------------------------------------------------------
-# 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
-    user        haproxy
-    daemon
-
-defaults
-    mode                    http
-    log                     global
-    option                  httplog
-    option                  dontlognull
-    option http-server-close
-    option forwardfor       except 127.0.0.0/8
-    option                  redispatch
-    retries                 3
-    timeout http-request    10s
-    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          if url_static
-    default_backend             app
-
-backend static
-    balance     roundrobin
-    server      static 127.0.0.1:4331 check
-
-backend app
-    balance     roundrobin
-    server  app1 127.0.0.1:5001 check
-    server  app2 127.0.0.1:5002 check
-    server  app3 127.0.0.1:5003 check
-    server  app4 127.0.0.1:5004 check

Copied: haproxy/repos/community-i686/haproxy.cfg (from rev 136348, haproxy/trunk/haproxy.cfg)
===================================================================
--- community-i686/haproxy.cfg	                        (rev 0)
+++ community-i686/haproxy.cfg	2015-07-03 19:09:17 UTC (rev 136349)
@@ -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
+    user        haproxy
+    daemon
+
+defaults
+    mode                    http
+    log                     global
+    option                  httplog
+    option                  dontlognull
+    option http-server-close
+    option forwardfor       except 127.0.0.0/8
+    option                  redispatch
+    retries                 3
+    timeout http-request    10s
+    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          if url_static
+    default_backend             app
+
+backend static
+    balance     roundrobin
+    server      static 127.0.0.1:4331 check
+
+backend app
+    balance     roundrobin
+    server  app1 127.0.0.1:5001 check
+    server  app2 127.0.0.1:5002 check
+    server  app3 127.0.0.1:5003 check
+    server  app4 127.0.0.1:5004 check

Deleted: community-i686/haproxy.install
===================================================================
--- community-i686/haproxy.install	2015-07-03 19:08:50 UTC (rev 136348)
+++ community-i686/haproxy.install	2015-07-03 19:09:17 UTC (rev 136349)
@@ -1,4 +0,0 @@
-post_install() {
-  getent passwd haproxy >/dev/null || useradd -r -M -d / \
-    -s /usr/bin/nologin haproxy >/dev/null
-}

Copied: haproxy/repos/community-i686/haproxy.install (from rev 136348, haproxy/trunk/haproxy.install)
===================================================================
--- community-i686/haproxy.install	                        (rev 0)
+++ community-i686/haproxy.install	2015-07-03 19:09:17 UTC (rev 136349)
@@ -0,0 +1,4 @@
+post_install() {
+  getent passwd haproxy >/dev/null || useradd -r -M -d / \
+    -s /usr/bin/nologin haproxy >/dev/null
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2015-07-03 19:08:50 UTC (rev 136348)
+++ community-x86_64/PKGBUILD	2015-07-03 19:09:17 UTC (rev 136349)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
-
-pkgname=haproxy
-pkgver=1.5.12
-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=('4b94b257f16d88c315716b062b22e48a'
-         '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/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-x86_64/PKGBUILD (from rev 136348, haproxy/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2015-07-03 19:09:17 UTC (rev 136349)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+
+pkgname=haproxy
+pkgver=1.5.14
+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=('ad9d7262b96ba85a0f8c6acc6cb9edde'
+         '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/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
+}

Deleted: community-x86_64/haproxy.cfg
===================================================================
--- community-x86_64/haproxy.cfg	2015-07-03 19:08:50 UTC (rev 136348)
+++ community-x86_64/haproxy.cfg	2015-07-03 19:09:17 UTC (rev 136349)
@@ -1,52 +0,0 @@
-#---------------------------------------------------------------------
-# 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
-    user        haproxy
-    daemon
-
-defaults
-    mode                    http
-    log                     global
-    option                  httplog
-    option                  dontlognull
-    option http-server-close
-    option forwardfor       except 127.0.0.0/8
-    option                  redispatch
-    retries                 3
-    timeout http-request    10s
-    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          if url_static
-    default_backend             app
-
-backend static
-    balance     roundrobin
-    server      static 127.0.0.1:4331 check
-
-backend app
-    balance     roundrobin
-    server  app1 127.0.0.1:5001 check
-    server  app2 127.0.0.1:5002 check
-    server  app3 127.0.0.1:5003 check
-    server  app4 127.0.0.1:5004 check

Copied: haproxy/repos/community-x86_64/haproxy.cfg (from rev 136348, haproxy/trunk/haproxy.cfg)
===================================================================
--- community-x86_64/haproxy.cfg	                        (rev 0)
+++ community-x86_64/haproxy.cfg	2015-07-03 19:09:17 UTC (rev 136349)
@@ -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
+    user        haproxy
+    daemon
+
+defaults
+    mode                    http
+    log                     global
+    option                  httplog
+    option                  dontlognull
+    option http-server-close
+    option forwardfor       except 127.0.0.0/8
+    option                  redispatch
+    retries                 3
+    timeout http-request    10s
+    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          if url_static
+    default_backend             app
+
+backend static
+    balance     roundrobin
+    server      static 127.0.0.1:4331 check
+
+backend app
+    balance     roundrobin
+    server  app1 127.0.0.1:5001 check
+    server  app2 127.0.0.1:5002 check
+    server  app3 127.0.0.1:5003 check
+    server  app4 127.0.0.1:5004 check

Deleted: community-x86_64/haproxy.install
===================================================================
--- community-x86_64/haproxy.install	2015-07-03 19:08:50 UTC (rev 136348)
+++ community-x86_64/haproxy.install	2015-07-03 19:09:17 UTC (rev 136349)
@@ -1,4 +0,0 @@
-post_install() {
-  getent passwd haproxy >/dev/null || useradd -r -M -d / \
-    -s /usr/bin/nologin haproxy >/dev/null
-}

Copied: haproxy/repos/community-x86_64/haproxy.install (from rev 136348, haproxy/trunk/haproxy.install)
===================================================================
--- community-x86_64/haproxy.install	                        (rev 0)
+++ community-x86_64/haproxy.install	2015-07-03 19:09:17 UTC (rev 136349)
@@ -0,0 +1,4 @@
+post_install() {
+  getent passwd haproxy >/dev/null || useradd -r -M -d / \
+    -s /usr/bin/nologin haproxy >/dev/null
+}



More information about the arch-commits mailing list