haproxy: update to v3.2.15
authorChristian Lachner <redacted>
Sat, 21 Mar 2026 14:37:57 +0000 (15:37 +0100)
committerHannu Nyman <redacted>
Sat, 21 Mar 2026 20:26:55 +0000 (22:26 +0200)
- Fixes multiple security critical bugs with H3 handling. CVE submission is
  pending.
- Updated haproxy PKG_VERSION and PKG_HASH
- Removed get-latest-patches.sh as it is not used anymore.
- See changes: http://git.haproxy.org/?p=haproxy-3.2.git;a=shortlog

Signed-off-by: Christian Lachner <redacted>
net/haproxy/Makefile
net/haproxy/get-latest-patches.sh [deleted file]

index d8656f0fa18bf44c4674536dc00c09b61501dcc7..8817391bf4bde4b857c322331a3da7b9d85295f6 100644 (file)
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=haproxy
-PKG_VERSION:=3.2.12
+PKG_VERSION:=3.2.15
 PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=https://www.haproxy.org/download/3.2/src
-PKG_HASH:=310b424e60db2f3990206ca7c81293586842cb628e7dfad572c7146ae9e95a91
+PKG_HASH:=117e408aff544c9ad758c2fb3fd8cf791a72609d3ae319b2cf9f2a0b035393c2
 
 PKG_MAINTAINER:=Thomas Heil <heil@terminal-consulting.de>, \
                Christian Lachner <gladiac@gmail.com>
diff --git a/net/haproxy/get-latest-patches.sh b/net/haproxy/get-latest-patches.sh
deleted file mode 100755 (executable)
index 018007f..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-CLONEURL=https://git.haproxy.org/git/haproxy-3.2.git
-BASE_TAG=v3.2.12
-TMP_REPODIR=tmprepo
-PATCHESDIR=patches
-
-if test -d "${TMP_REPODIR}"; then rm -rf "${TMP_REPODIR}"; fi
-
-git clone "${CLONEURL}" "${TMP_REPODIR}"
-
-printf "Cleaning patches\n"
-find ${PATCHESDIR} -type f -name "*.patch" -exec rm -f "{}" \;
-
-i=0
-for cid in $(git -C "${TMP_REPODIR}" rev-list ${BASE_TAG}..HEAD | tac); do
-       filename="$(printf "%03d" $i)-$(git -C "${TMP_REPODIR}" log --format=%s -n 1 "$cid" | sed -e"s/[()']//g" -e's/[^_a-zA-Z0-9+-]\+/-/g' -e's/-$//').patch"
-       printf "Creating %s\n" "${filename}"
-       git -C "${TMP_REPODIR}" show "$cid" > "${PATCHESDIR}/$filename"
-       git add "${PATCHESDIR}/$filename"
-       i=$((i+1))
-done
-
-rm -rf "${TMP_REPODIR}"
-
-printf "finished\n"
-
git clone https://git.99rst.org/PROJECT