From 1023741fb17863b645cbc92b643dd5bba361c9a5 Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Wed, 19 Nov 2025 21:21:20 +0100 Subject: [PATCH] package/pcre2: bump version to 10.47 Release notes: https://github.com/PCRE2Project/pcre2/releases/tag/pcre2-10.47 Updated license hash due to upstream commits: https://github.com/PCRE2Project/pcre2/commit/4f5a2ada2ec070896f96a2652ae05df41c4be14c https://github.com/PCRE2Project/pcre2/commit/1fffb0d44e7a62ad290cf24586c78bc04b689144 https://github.com/PCRE2Project/pcre2/commit/d8a9f2fe55b47934cc6095df6e113e7986805064 Added license file for sljit: https://github.com/PCRE2Project/pcre2/commit/d8a9f2fe55b47934cc6095df6e113e7986805064 Signed-off-by: Bernd Kuhls Signed-off-by: Julien Olivain --- package/pcre2/pcre2.hash | 7 ++++--- package/pcre2/pcre2.mk | 4 +++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/package/pcre2/pcre2.hash b/package/pcre2/pcre2.hash index bd2422d991..17f15c0fdc 100644 --- a/package/pcre2/pcre2.hash +++ b/package/pcre2/pcre2.hash @@ -1,5 +1,6 @@ # Locally calculated after checking pgp signature: -# https://github.com/PhilipHazel/pcre2/releases/download/pcre2-10.46/pcre2-10.46.tar.bz2.sig -sha256 15fbc5aba6beee0b17aecb04602ae39432393aba1ebd8e39b7cabf7db883299f pcre2-10.46.tar.bz2 +# https://github.com/PhilipHazel/pcre2/releases/download/pcre2-10.47/pcre2-10.47.tar.bz2.sig +sha256 47fe8c99461250d42f89e6e8fdaeba9da057855d06eb7fc08d9ca03fd08d7bc7 pcre2-10.47.tar.bz2 # Locally computed -sha256 9cf7ac6976099a1d856826d3ef1b093bd6b84489dc6100628ac79e740cf9885a LICENCE.md +sha256 197d8a73ffee0d6b09adba2f9c677b5f5aede24edf89258a68e48248d010d811 LICENCE.md +sha256 5f216505c0f6ea3273caec89e766eef93cdeb7bbb0c429f9360116d7c938feeb deps/sljit/LICENSE diff --git a/package/pcre2/pcre2.mk b/package/pcre2/pcre2.mk index 1d0a3b845f..f2b5608150 100644 --- a/package/pcre2/pcre2.mk +++ b/package/pcre2/pcre2.mk @@ -4,7 +4,7 @@ # ################################################################################ -PCRE2_VERSION = 10.46 +PCRE2_VERSION = 10.47 PCRE2_SITE = https://github.com/PCRE2Project/pcre2/releases/download/pcre2-$(PCRE2_VERSION) PCRE2_SOURCE = pcre2-$(PCRE2_VERSION).tar.bz2 PCRE2_LICENSE = BSD-3-Clause @@ -22,6 +22,8 @@ PCRE2_CONF_OPTS += $(if $(BR2_PACKAGE_PCRE2_32),--enable-pcre2-32,--disable-pcre ifeq ($(BR2_PACKAGE_PCRE2_JIT),y) PCRE2_CONF_OPTS += --enable-jit +PCRE2_LICENSE += BSD-2-Clause +PCRE2_LICENSE_FILES += deps/sljit/LICENSE else PCRE2_CONF_OPTS += --disable-jit endif