nghttp3: update to 1.11.0
authorAleksey Vasilenko <[email protected]>
Fri, 22 Aug 2025 10:12:55 +0000 (13:12 +0300)
committerTianling Shen <[email protected]>
Sun, 24 Aug 2025 14:27:19 +0000 (22:27 +0800)
- Update package description
- Use CP instead of INSTALL_DATA to copy symlinks properly

Signed-off-by: Aleksey Vasilenko <[email protected]>
libs/nghttp3/Makefile

index e57e8bafec1f6149ebb61fad1fb045de1f5c06cb..e271183e15f6ab547a9c6f1b5c71c0434a216eb4 100644 (file)
@@ -1,12 +1,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=nghttp3
-PKG_VERSION:=1.5.0
+PKG_VERSION:=1.11.0
 PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 PKG_SOURCE_URL:=https://github.com/ngtcp2/nghttp3/releases/download/v$(PKG_VERSION)/
-PKG_HASH:=8c00e3910ea2ad1218dafebcf8dd2ffdf030c992d9ceb65834d29e5e5278dd0d
+PKG_HASH:=27d084518f06d78279b050cc9cdff2418f80fb753da019427ce853cec920f33f
 
 PKG_LICENSE:=MIT
 PKG_LICENSE_FILES:=COPYING
@@ -25,7 +25,7 @@ define Package/libnghttp3
 endef
 
 define Package/libnghttp3/description
-nghttp3 is a thin HTTP/3 layer over an underlying QUIC stack.
+HTTP/3 library written in C.
 endef
 
 CMAKE_OPTIONS += -DENABLE_LIB_ONLY=ON
@@ -38,7 +38,7 @@ endef
 
 define Package/libnghttp3/install
        $(INSTALL_DIR) $(1)/usr/lib
-       $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libnghttp3.so* $(1)/usr/lib
+       $(CP) $(PKG_INSTALL_DIR)/usr/lib/libnghttp3.so* $(1)/usr/lib
 endef
 
 $(eval $(call BuildPackage,libnghttp3))