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

Johannes Löthberg demize at archlinux.org
Wed Dec 25 01:01:38 UTC 2019


    Date: Wednesday, December 25, 2019 @ 01:01:38
  Author: demize
Revision: 540598

db-move: moved haproxy from [community-testing] to [community] (x86_64)

Added:
  haproxy/repos/community-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
    (from rev 540597, haproxy/repos/community-testing-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch)
  haproxy/repos/community-x86_64/PKGBUILD
    (from rev 540597, haproxy/repos/community-testing-x86_64/PKGBUILD)
  haproxy/repos/community-x86_64/haproxy.cfg
    (from rev 540597, haproxy/repos/community-testing-x86_64/haproxy.cfg)
  haproxy/repos/community-x86_64/haproxy.install
    (from rev 540597, haproxy/repos/community-testing-x86_64/haproxy.install)
  haproxy/repos/community-x86_64/haproxy.sysusers
    (from rev 540597, haproxy/repos/community-testing-x86_64/haproxy.sysusers)
Deleted:
  haproxy/repos/community-testing-x86_64/
  haproxy/repos/community-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
  haproxy/repos/community-x86_64/PKGBUILD
  haproxy/repos/community-x86_64/haproxy.cfg
  haproxy/repos/community-x86_64/haproxy.install
  haproxy/repos/community-x86_64/haproxy.sysusers

--------------------------------------------------------------------------+
 /0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch                 |   57 ++++++++
 /PKGBUILD                                                                |   71 ++++++++++
 /haproxy.cfg                                                             |   49 ++++++
 /haproxy.install                                                         |    8 +
 /haproxy.sysusers                                                        |    1 
 community-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch |   57 --------
 community-x86_64/PKGBUILD                                                |   71 ----------
 community-x86_64/haproxy.cfg                                             |   49 ------
 community-x86_64/haproxy.install                                         |    8 -
 community-x86_64/haproxy.sysusers                                        |    1 
 10 files changed, 186 insertions(+), 186 deletions(-)

Deleted: community-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
===================================================================
--- community-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch	2019-12-25 01:01:24 UTC (rev 540597)
+++ community-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch	2019-12-25 01:01:38 UTC (rev 540598)
@@ -1,57 +0,0 @@
-From 53fd8dbb4ecd3f8bcf4c1f3c0bc7fe39c7be6bd7 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= <johannes at kyriasis.com>
-Date: Wed, 9 Jan 2019 23:37:02 +0100
-Subject: [PATCH] Use CFLAGS and LDFLAGS when building contrib
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Johannes Löthberg <johannes at kyriasis.com>
----
- contrib/halog/Makefile    | 2 +-
- contrib/ip6range/Makefile | 2 +-
- contrib/iprange/Makefile  | 2 +-
- 3 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/contrib/halog/Makefile b/contrib/halog/Makefile
-index 5e687c09..2474409a 100644
---- a/contrib/halog/Makefile
-+++ b/contrib/halog/Makefile
-@@ -16,7 +16,7 @@ DEFINE   =
- OBJS     = halog
- 
- halog: halog.c fgets2.c
--	$(CC) $(OPTIMIZE) $(DEFINE) -o $@ $(INCLUDE) $(EBTREE_DIR)/ebtree.c $(EBTREE_DIR)/eb32tree.c $(EBTREE_DIR)/eb64tree.c $(EBTREE_DIR)/ebmbtree.c $(EBTREE_DIR)/ebsttree.c $(EBTREE_DIR)/ebistree.c $(EBTREE_DIR)/ebimtree.c $^
-+	$(CC) $(OPTIMIZE) $(CFLAGS) $(LDFLAGS) $(DEFINE) -o $@ $(INCLUDE) $(EBTREE_DIR)/ebtree.c $(EBTREE_DIR)/eb32tree.c $(EBTREE_DIR)/eb64tree.c $(EBTREE_DIR)/ebmbtree.c $(EBTREE_DIR)/ebsttree.c $(EBTREE_DIR)/ebistree.c $(EBTREE_DIR)/ebimtree.c $^
- 
- clean:
- 	rm -f $(OBJS) *.[oas]
-diff --git a/contrib/ip6range/Makefile b/contrib/ip6range/Makefile
-index 55849b6d..1276b97d 100644
---- a/contrib/ip6range/Makefile
-+++ b/contrib/ip6range/Makefile
-@@ -7,7 +7,7 @@ OBJS     = ip6range
- all: $(OBJS)
- 
- %: %.c
--	$(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
-+	$(CC) $(CFLAGS) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
- 
- clean:
- 	rm -f $(OBJS) *.o *.a *~
-diff --git a/contrib/iprange/Makefile b/contrib/iprange/Makefile
-index b3c72eda..e92baf3d 100644
---- a/contrib/iprange/Makefile
-+++ b/contrib/iprange/Makefile
-@@ -7,7 +7,7 @@ OBJS     = iprange
- all: $(OBJS)
- 
- %: %.c
--	$(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
-+	$(CC) $(CFLAGS) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
- 
- clean:
- 	rm -f $(OBJS) *.o *.a *~
--- 
-2.20.1
-

Copied: haproxy/repos/community-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch (from rev 540597, haproxy/repos/community-testing-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch)
===================================================================
--- community-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch	                        (rev 0)
+++ community-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch	2019-12-25 01:01:38 UTC (rev 540598)
@@ -0,0 +1,57 @@
+From 53fd8dbb4ecd3f8bcf4c1f3c0bc7fe39c7be6bd7 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= <johannes at kyriasis.com>
+Date: Wed, 9 Jan 2019 23:37:02 +0100
+Subject: [PATCH] Use CFLAGS and LDFLAGS when building contrib
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Johannes Löthberg <johannes at kyriasis.com>
+---
+ contrib/halog/Makefile    | 2 +-
+ contrib/ip6range/Makefile | 2 +-
+ contrib/iprange/Makefile  | 2 +-
+ 3 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/contrib/halog/Makefile b/contrib/halog/Makefile
+index 5e687c09..2474409a 100644
+--- a/contrib/halog/Makefile
++++ b/contrib/halog/Makefile
+@@ -16,7 +16,7 @@ DEFINE   =
+ OBJS     = halog
+ 
+ halog: halog.c fgets2.c
+-	$(CC) $(OPTIMIZE) $(DEFINE) -o $@ $(INCLUDE) $(EBTREE_DIR)/ebtree.c $(EBTREE_DIR)/eb32tree.c $(EBTREE_DIR)/eb64tree.c $(EBTREE_DIR)/ebmbtree.c $(EBTREE_DIR)/ebsttree.c $(EBTREE_DIR)/ebistree.c $(EBTREE_DIR)/ebimtree.c $^
++	$(CC) $(OPTIMIZE) $(CFLAGS) $(LDFLAGS) $(DEFINE) -o $@ $(INCLUDE) $(EBTREE_DIR)/ebtree.c $(EBTREE_DIR)/eb32tree.c $(EBTREE_DIR)/eb64tree.c $(EBTREE_DIR)/ebmbtree.c $(EBTREE_DIR)/ebsttree.c $(EBTREE_DIR)/ebistree.c $(EBTREE_DIR)/ebimtree.c $^
+ 
+ clean:
+ 	rm -f $(OBJS) *.[oas]
+diff --git a/contrib/ip6range/Makefile b/contrib/ip6range/Makefile
+index 55849b6d..1276b97d 100644
+--- a/contrib/ip6range/Makefile
++++ b/contrib/ip6range/Makefile
+@@ -7,7 +7,7 @@ OBJS     = ip6range
+ all: $(OBJS)
+ 
+ %: %.c
+-	$(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
++	$(CC) $(CFLAGS) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
+ 
+ clean:
+ 	rm -f $(OBJS) *.o *.a *~
+diff --git a/contrib/iprange/Makefile b/contrib/iprange/Makefile
+index b3c72eda..e92baf3d 100644
+--- a/contrib/iprange/Makefile
++++ b/contrib/iprange/Makefile
+@@ -7,7 +7,7 @@ OBJS     = iprange
+ all: $(OBJS)
+ 
+ %: %.c
+-	$(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
++	$(CC) $(CFLAGS) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
+ 
+ clean:
+ 	rm -f $(OBJS) *.o *.a *~
+-- 
+2.20.1
+

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2019-12-25 01:01:24 UTC (rev 540597)
+++ community-x86_64/PKGBUILD	2019-12-25 01:01:38 UTC (rev 540598)
@@ -1,71 +0,0 @@
-# Maintainer: Johannes Löthberg <johannes at kyriasis.com>
-# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
-
-pkgname=haproxy
-pkgver=2.1.1
-pkgrel=2
-
-pkgdesc='Reliable, high performance TCP/HTTP load balancer'
-url='https://haproxy.org/'
-arch=('x86_64')
-license=('GPL')
-
-depends=('openssl' 'pcre' 'zlib' 'lua' 'systemd-libs')
-
-backup=('etc/haproxy/haproxy.cfg')
-
-install=haproxy.install
-
-source=(https://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
-        haproxy.cfg
-        haproxy.sysusers
-        0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch)
-
-sha256sums=('57e75c1a380fc6f6aa7033f71384370899443c7f4e8a4ba289b5d4350bc76d1a'
-            'e88edeb2fe23508565e46ff485c93cfb7c2e9c64f231538452ec7ecd7ec37a42'
-            'b02b4088205039f0979aef0ef3e22957f493dd54eabefaee7011f2d795303b3e'
-            'ba489cec86ea7dae643128825d69fd560a53dd9dc85d0bf4e81f2614aade164e')
-
-prepare() {
-  cd haproxy-$pkgver
-
-  patch -p1 <"$srcdir"/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
-}
-
-build() {
-  cd haproxy-$pkgver
-
-  make CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-    CPU=generic \
-    TARGET=linux-glibc \
-    USE_GETADDRINFO=1 \
-    USE_OPENSSL=1 \
-    USE_PCRE=1 USE_PCRE_JIT=1 \
-    USE_ZLIB=1 \
-    USE_LUA=1 \
-    USE_SYSTEMD=1 \
-    EXTRA_OBJS="contrib/prometheus-exporter/service-prometheus.o"
-
-  for contrib in halog iprange ip6range systemd; do
-    make -C contrib/$contrib SBINDIR=/usr/bin OPTIMIZE= CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS"
-  done
-}
-
-package() {
-  cd haproxy-$pkgver
-  make \
-    PREFIX="$pkgdir"/usr \
-    SBINDIR="$pkgdir"/usr/bin \
-    DOCDIR="$pkgdir"/usr/share/$pkgname \
-    install
-
-  for contrib in halog iprange ip6range; do
-    install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
-  done
-
-  install -Dm644 ../haproxy.sysusers "$pkgdir"/usr/lib/sysusers.d/haproxy.conf
-  install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
-  install -Dm644 contrib/systemd/haproxy.service \
-    "$pkgdir"/usr/lib/systemd/system/haproxy.service
-  cp -r examples "$pkgdir"/usr/share/haproxy/examples
-}

Copied: haproxy/repos/community-x86_64/PKGBUILD (from rev 540597, haproxy/repos/community-testing-x86_64/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2019-12-25 01:01:38 UTC (rev 540598)
@@ -0,0 +1,71 @@
+# Maintainer: Johannes Löthberg <johannes at kyriasis.com>
+# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+
+pkgname=haproxy
+pkgver=2.1.2
+pkgrel=1
+
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+url='https://haproxy.org/'
+arch=('x86_64')
+license=('GPL')
+
+depends=('openssl' 'pcre' 'zlib' 'lua' 'systemd-libs')
+
+backup=('etc/haproxy/haproxy.cfg')
+
+install=haproxy.install
+
+source=(https://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+        haproxy.cfg
+        haproxy.sysusers
+        0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch)
+
+sha256sums=('6079b08a8905ade5a9a2835ead8963ee10a855d8508a85efb7181eea2d310b77'
+            'e88edeb2fe23508565e46ff485c93cfb7c2e9c64f231538452ec7ecd7ec37a42'
+            'b02b4088205039f0979aef0ef3e22957f493dd54eabefaee7011f2d795303b3e'
+            'ba489cec86ea7dae643128825d69fd560a53dd9dc85d0bf4e81f2614aade164e')
+
+prepare() {
+  cd haproxy-$pkgver
+
+  patch -p1 <"$srcdir"/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
+}
+
+build() {
+  cd haproxy-$pkgver
+
+  make CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
+    CPU=generic \
+    TARGET=linux-glibc \
+    USE_GETADDRINFO=1 \
+    USE_OPENSSL=1 \
+    USE_PCRE=1 USE_PCRE_JIT=1 \
+    USE_ZLIB=1 \
+    USE_LUA=1 \
+    USE_SYSTEMD=1 \
+    EXTRA_OBJS="contrib/prometheus-exporter/service-prometheus.o"
+
+  for contrib in halog iprange ip6range systemd; do
+    make -C contrib/$contrib SBINDIR=/usr/bin OPTIMIZE= CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS"
+  done
+}
+
+package() {
+  cd haproxy-$pkgver
+  make \
+    PREFIX="$pkgdir"/usr \
+    SBINDIR="$pkgdir"/usr/bin \
+    DOCDIR="$pkgdir"/usr/share/$pkgname \
+    install
+
+  for contrib in halog iprange ip6range; do
+    install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
+  done
+
+  install -Dm644 ../haproxy.sysusers "$pkgdir"/usr/lib/sysusers.d/haproxy.conf
+  install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
+  install -Dm644 contrib/systemd/haproxy.service \
+    "$pkgdir"/usr/lib/systemd/system/haproxy.service
+  cp -r examples "$pkgdir"/usr/share/haproxy/examples
+}

Deleted: community-x86_64/haproxy.cfg
===================================================================
--- community-x86_64/haproxy.cfg	2019-12-25 01:01:24 UTC (rev 540597)
+++ community-x86_64/haproxy.cfg	2019-12-25 01:01:38 UTC (rev 540598)
@@ -1,49 +0,0 @@
-#---------------------------------------------------------------------
-# Example configuration.  See the full configuration manual online.
-#
-#   http://www.haproxy.org/download/1.7/doc/configuration.txt
-#
-#---------------------------------------------------------------------
-
-global
-    maxconn     20000
-    log         127.0.0.1 local0
-    user        haproxy
-    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 forwardfor    except 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
-    mode        http
-    balance     roundrobin
-    timeout     connect 5s
-    timeout     server  5s
-    server      static 127.0.0.1:4331 check
-
-backend app
-    mode        http
-    balance     roundrobin
-    timeout     connect 5s
-    timeout     server  30s
-    timeout     queue   30s
-    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 540597, haproxy/repos/community-testing-x86_64/haproxy.cfg)
===================================================================
--- community-x86_64/haproxy.cfg	                        (rev 0)
+++ community-x86_64/haproxy.cfg	2019-12-25 01:01:38 UTC (rev 540598)
@@ -0,0 +1,49 @@
+#---------------------------------------------------------------------
+# Example configuration.  See the full configuration manual online.
+#
+#   http://www.haproxy.org/download/1.7/doc/configuration.txt
+#
+#---------------------------------------------------------------------
+
+global
+    maxconn     20000
+    log         127.0.0.1 local0
+    user        haproxy
+    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 forwardfor    except 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
+    mode        http
+    balance     roundrobin
+    timeout     connect 5s
+    timeout     server  5s
+    server      static 127.0.0.1:4331 check
+
+backend app
+    mode        http
+    balance     roundrobin
+    timeout     connect 5s
+    timeout     server  30s
+    timeout     queue   30s
+    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	2019-12-25 01:01:24 UTC (rev 540597)
+++ community-x86_64/haproxy.install	2019-12-25 01:01:38 UTC (rev 540598)
@@ -1,8 +0,0 @@
-post_install() {
-  printf '==> %s\n' "The example config chroots HAProxy, meaning that logging to journald won't work."
-  printf '    %s\n' "Either disable chrooting, use rsyslog, or bind /run/systemd/journal/dev-log into the chroot."
-}
-
-post_upgrade() {
-  post_install $1
-}

Copied: haproxy/repos/community-x86_64/haproxy.install (from rev 540597, haproxy/repos/community-testing-x86_64/haproxy.install)
===================================================================
--- community-x86_64/haproxy.install	                        (rev 0)
+++ community-x86_64/haproxy.install	2019-12-25 01:01:38 UTC (rev 540598)
@@ -0,0 +1,8 @@
+post_install() {
+  printf '==> %s\n' "The example config chroots HAProxy, meaning that logging to journald won't work."
+  printf '    %s\n' "Either disable chrooting, use rsyslog, or bind /run/systemd/journal/dev-log into the chroot."
+}
+
+post_upgrade() {
+  post_install $1
+}

Deleted: community-x86_64/haproxy.sysusers
===================================================================
--- community-x86_64/haproxy.sysusers	2019-12-25 01:01:24 UTC (rev 540597)
+++ community-x86_64/haproxy.sysusers	2019-12-25 01:01:38 UTC (rev 540598)
@@ -1 +0,0 @@
-u haproxy - - -

Copied: haproxy/repos/community-x86_64/haproxy.sysusers (from rev 540597, haproxy/repos/community-testing-x86_64/haproxy.sysusers)
===================================================================
--- community-x86_64/haproxy.sysusers	                        (rev 0)
+++ community-x86_64/haproxy.sysusers	2019-12-25 01:01:38 UTC (rev 540598)
@@ -0,0 +1 @@
+u haproxy - - -



More information about the arch-commits mailing list