lighttpd: update to lighttpd 1.4.71 release hash
authorGlenn Strauss <gstrauss@gluelogic.com>
Sat, 27 May 2023 22:03:56 +0000 (18:03 -0400)
committerRosen Penev <rosenp@gmail.com>
Sun, 28 May 2023 12:43:14 +0000 (15:43 +0300)
remove patches included upstream

Signed-off-by: Glenn Strauss <gstrauss@gluelogic.com>
(cherry picked from commit 19291ee1951a79776c1b67c10fd67af5d346abc5)

net/lighttpd/Makefile
net/lighttpd/patches/020-meson-mod_webdav_min.patch
net/lighttpd/patches/030-mod_h2-HTTP-2-separate-mod.patch [deleted file]
net/lighttpd/patches/030-restore-removed-modules.patch

index d85d65e5414efdcfa21d6893051fa5892591e62a..47b00011bed7764a880f851038b89221c7f5b18b 100644 (file)
@@ -8,14 +8,14 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=lighttpd
-PKG_VERSION:=1.4.70
+PKG_VERSION:=1.4.71
 PKG_RELEASE:=1
 # release candidate ~rcX testing; remove for release
 #PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 PKG_SOURCE_URL:=https://download.lighttpd.net/lighttpd/releases-1.4.x
-PKG_HASH:=921ebe1cf4b6b9897e03779ab7a23a31f4ba40a1abe2067525c33cd3ce61fe85
+PKG_HASH:=b8b6915da20396fdc354df3324d5e440169b2e5ea7859e3a775213841325afac
 
 PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
 PKG_LICENSE:=BSD-3-Clause
index bef6f2e566b0ea8560fd1fe022dc5bd063cfc826..774eb60e4c86532297a3253e02f0f805dc37b161 100644 (file)
@@ -9,7 +9,7 @@ Subject: [PATCH] [meson] mod_webdav_min w/o deps: xml2 sqlite3 uuid
 
 --- a/src/meson.build
 +++ b/src/meson.build
-@@ -879,6 +879,16 @@ if libsasl.found()
+@@ -876,6 +876,16 @@ if libsasl.found()
        ]
  endif
  
diff --git a/net/lighttpd/patches/030-mod_h2-HTTP-2-separate-mod.patch b/net/lighttpd/patches/030-mod_h2-HTTP-2-separate-mod.patch
deleted file mode 100644 (file)
index 652b214..0000000
+++ /dev/null
@@ -1,87 +0,0 @@
-From 2892a7bf3f8ce92f41134fab25fbc2057f4a36bf Mon Sep 17 00:00:00 2001
-From: Glenn Strauss <gstrauss@gluelogic.com>
-Date: Wed, 10 May 2023 19:06:42 -0400
-Subject: [PATCH] [mod_h2] HTTP/2 separate module; no longer builtin
-
----
- src/CMakeLists.txt | 3 ---
- src/Makefile.am    | 9 +++------
- src/SConscript     | 4 +---
- src/meson.build    | 3 ---
- 4 files changed, 4 insertions(+), 15 deletions(-)
-
---- a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -922,10 +922,7 @@ set(SERVER_SRC
-       response.c
-       connections.c
-       h1.c
--      h2.c
-       sock_addr_cache.c
--      ls-hpack/lshpack.c
--      algo_xxhash.c
-       fdevent_impl.c
-       http_range.c
-       network.c
---- a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -70,12 +70,10 @@ common_src=base64.c buffer.c burl.c log.
- common_src += fdevent_win32.c fs_win32.c
--src = server.c response.c connections.c h1.c h2.c \
-+src = server.c response.c connections.c h1.c \
-       sock_addr_cache.c \
-       network.c \
-       network_write.c \
--      ls-hpack/lshpack.c \
--      algo_xxhash.c \
-       fdevent_impl.c \
-       http_range.c \
-       data_config.c \
-@@ -428,6 +426,8 @@ lighttpd_LDADD = \
-   $(FAM_LIBS) $(LIBEV_LIBS) $(LIBUNWIND_LIBS)
- lighttpd_LDFLAGS = -export-dynamic
-+lighttpd_SOURCES += h2.c ls-hpack/lshpack.c algo_xxhash.c
-+lighttpd_LDADD += $(XXHASH_LIBS)
- if BUILD_WITH_MAXMINDDB
- lighttpd_SOURCES += mod_maxminddb.c
- lighttpd_LDADD += $(MAXMINDDB_LIB)
-@@ -489,9 +489,6 @@ lighttpd_SOURCES += mod_wolfssl.c
- lighttpd_CPPFLAGS += $(WOLFSSL_CFLAGS)
- lighttpd_LDADD += $(WOLFSSL_LIBS)
- endif
--#(until switch to mod_h2)
--#lighttpd_SOURCES += h2.c ls-hpack/lshpack.c algo_xxhash.c
--#lighttpd_LDADD += $(XXHASH_LIBS)
- else
---- a/src/SConscript
-+++ b/src/SConscript
-@@ -75,10 +75,8 @@ common_src = Split("base64.c buffer.c bu
-       ck.c \
- ")
--src = Split("server.c response.c connections.c h1.c h2.c \
-+src = Split("server.c response.c connections.c h1.c \
-       sock_addr_cache.c \
--      ls-hpack/lshpack.c \
--      algo_xxhash.c \
-       fdevent_impl.c \
-       http_range.c \
-       network.c \
---- a/src/meson.build
-+++ b/src/meson.build
-@@ -560,10 +560,7 @@ main_src = files(
-       'connections.c',
-       'data_config.c',
-       'h1.c',
--      'h2.c',
-       'sock_addr_cache.c',
--      'ls-hpack/lshpack.c',
--      'algo_xxhash.c',
-       'fdevent_impl.c',
-       'http_range.c',
-       'network_write.c',
index c1e3b01a0ae90369579cf4f148dd1e153cb99cab..1eca7aba3839e264056568177d999f946d2d9347 100644 (file)
@@ -145,7 +145,7 @@ This reverts commit fcf0dc3e336a5d62c58036cdb8fc9f4c099b178e.
    mod_vhostdb.c \
    mod_vhostdb_api.c \
    mod_webdav.c
-@@ -521,6 +545,7 @@ t_test_configfile_LDADD = $(PCRE_LIB) $(
+@@ -520,6 +544,7 @@ t_test_configfile_LDADD = $(PCRE_LIB) $(
  t_test_mod_SOURCES = $(common_src) t/test_mod.c \
                       t/test_mod_access.c \
                       t/test_mod_alias.c \