* [PATCH] expat: Update to version 2.5.0
@ 2022-11-07 21:13 Adolf Belka
2022-11-08 11:07 ` Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Adolf Belka @ 2022-11-07 21:13 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3575 bytes --]
- Update from version 2.4.9 to 2.5.0
- Update of rootfile.
- Changelog
Release 2.5.0 Tue October 25 2022
Security fixes:
#616 #649 #650 CVE-2022-43680 -- Fix heap use-after-free after overeager
destruction of a shared DTD in function
XML_ExternalEntityParserCreate in out-of-memory situations.
Expected impact is denial of service or potentially
arbitrary code execution.
Bug fixes:
#612 #645 Fix curruption from undefined entities
#613 #654 Fix case when parsing was suspended while processing nested
entities
#616 #652 #653 Stop leaking opening tag bindings after a closing tag
mismatch error where a parser is reset through
XML_ParserReset and then reused to parse
#656 CMake: Fix generation of pkg-config file
#658 MinGW|CMake: Fix static library name
Other changes:
#663 Protect header expat_config.h from multiple inclusion
#666 examples: Make use of XML_GetBuffer and be more
consistent across examples
#648 Address compiler warnings
#667 #668 Version info bumped from 9:9:8 to 9:10:8;
see https://verbump.de/ for what these numbers do
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/expat | 20 ++++++++++----------
lfs/expat | 4 ++--
2 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/config/rootfiles/common/expat b/config/rootfiles/common/expat
index 8feb895b3..5b25d63b8 100644
--- a/config/rootfiles/common/expat
+++ b/config/rootfiles/common/expat
@@ -2,20 +2,20 @@
#usr/include/expat.h
#usr/include/expat_config.h
#usr/include/expat_external.h
-#usr/lib/cmake/expat-2.4.9
-#usr/lib/cmake/expat-2.4.9/expat-config-version.cmake
-#usr/lib/cmake/expat-2.4.9/expat-config.cmake
-#usr/lib/cmake/expat-2.4.9/expat-noconfig.cmake
-#usr/lib/cmake/expat-2.4.9/expat.cmake
+#usr/lib/cmake/expat-2.5.0
+#usr/lib/cmake/expat-2.5.0/expat-config-version.cmake
+#usr/lib/cmake/expat-2.5.0/expat-config.cmake
+#usr/lib/cmake/expat-2.5.0/expat-noconfig.cmake
+#usr/lib/cmake/expat-2.5.0/expat.cmake
#usr/lib/libexpat.la
#usr/lib/libexpat.so
usr/lib/libexpat.so.1
-usr/lib/libexpat.so.1.8.9
+usr/lib/libexpat.so.1.8.10
#usr/lib/pkgconfig/expat.pc
#usr/share/doc/expat
-#usr/share/doc/expat-2.4.9
-#usr/share/doc/expat-2.4.9/ok.min.css
-#usr/share/doc/expat-2.4.9/reference.html
-#usr/share/doc/expat-2.4.9/style.css
+#usr/share/doc/expat-2.5.0
+#usr/share/doc/expat-2.5.0/ok.min.css
+#usr/share/doc/expat-2.5.0/reference.html
+#usr/share/doc/expat-2.5.0/style.css
#usr/share/doc/expat/AUTHORS
#usr/share/doc/expat/changelog
diff --git a/lfs/expat b/lfs/expat
index a1a1326d0..a89b6d114 100644
--- a/lfs/expat
+++ b/lfs/expat
@@ -24,7 +24,7 @@
include Config
-VER = 2.4.9
+VER = 2.5.0
THISAPP = expat-$(VER)
DL_FILE = $(THISAPP).tar.bz2
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = d60183f96f3359acc069af638cc8d16ba19f51fbd8a61eddd80c2babddde357dcf0561e87af901f53617bfd9452e146c9dd9f317729cd3648b65832a38388640
+$(DL_FILE)_BLAKE2 = 15a5dcd3af17995fb4299301710b38d609c1fe7a8d6a6284581fedd96e89e0c16526d0342fb55773ac9d678cd65dc5cdb1532c764eeb3a20ccdf1e168b96e337
install : $(TARGET)
--
2.38.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] expat: Update to version 2.5.0
2022-11-07 21:13 [PATCH] expat: Update to version 2.5.0 Adolf Belka
@ 2022-11-08 11:07 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2022-11-08 11:07 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3835 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 7 Nov 2022, at 21:13, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>
> - Update from version 2.4.9 to 2.5.0
> - Update of rootfile.
> - Changelog
> Release 2.5.0 Tue October 25 2022
> Security fixes:
> #616 #649 #650 CVE-2022-43680 -- Fix heap use-after-free after overeager
> destruction of a shared DTD in function
> XML_ExternalEntityParserCreate in out-of-memory situations.
> Expected impact is denial of service or potentially
> arbitrary code execution.
> Bug fixes:
> #612 #645 Fix curruption from undefined entities
> #613 #654 Fix case when parsing was suspended while processing nested
> entities
> #616 #652 #653 Stop leaking opening tag bindings after a closing tag
> mismatch error where a parser is reset through
> XML_ParserReset and then reused to parse
> #656 CMake: Fix generation of pkg-config file
> #658 MinGW|CMake: Fix static library name
> Other changes:
> #663 Protect header expat_config.h from multiple inclusion
> #666 examples: Make use of XML_GetBuffer and be more
> consistent across examples
> #648 Address compiler warnings
> #667 #668 Version info bumped from 9:9:8 to 9:10:8;
> see https://verbump.de/ for what these numbers do
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> config/rootfiles/common/expat | 20 ++++++++++----------
> lfs/expat | 4 ++--
> 2 files changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/config/rootfiles/common/expat b/config/rootfiles/common/expat
> index 8feb895b3..5b25d63b8 100644
> --- a/config/rootfiles/common/expat
> +++ b/config/rootfiles/common/expat
> @@ -2,20 +2,20 @@
> #usr/include/expat.h
> #usr/include/expat_config.h
> #usr/include/expat_external.h
> -#usr/lib/cmake/expat-2.4.9
> -#usr/lib/cmake/expat-2.4.9/expat-config-version.cmake
> -#usr/lib/cmake/expat-2.4.9/expat-config.cmake
> -#usr/lib/cmake/expat-2.4.9/expat-noconfig.cmake
> -#usr/lib/cmake/expat-2.4.9/expat.cmake
> +#usr/lib/cmake/expat-2.5.0
> +#usr/lib/cmake/expat-2.5.0/expat-config-version.cmake
> +#usr/lib/cmake/expat-2.5.0/expat-config.cmake
> +#usr/lib/cmake/expat-2.5.0/expat-noconfig.cmake
> +#usr/lib/cmake/expat-2.5.0/expat.cmake
> #usr/lib/libexpat.la
> #usr/lib/libexpat.so
> usr/lib/libexpat.so.1
> -usr/lib/libexpat.so.1.8.9
> +usr/lib/libexpat.so.1.8.10
> #usr/lib/pkgconfig/expat.pc
> #usr/share/doc/expat
> -#usr/share/doc/expat-2.4.9
> -#usr/share/doc/expat-2.4.9/ok.min.css
> -#usr/share/doc/expat-2.4.9/reference.html
> -#usr/share/doc/expat-2.4.9/style.css
> +#usr/share/doc/expat-2.5.0
> +#usr/share/doc/expat-2.5.0/ok.min.css
> +#usr/share/doc/expat-2.5.0/reference.html
> +#usr/share/doc/expat-2.5.0/style.css
> #usr/share/doc/expat/AUTHORS
> #usr/share/doc/expat/changelog
> diff --git a/lfs/expat b/lfs/expat
> index a1a1326d0..a89b6d114 100644
> --- a/lfs/expat
> +++ b/lfs/expat
> @@ -24,7 +24,7 @@
>
> include Config
>
> -VER = 2.4.9
> +VER = 2.5.0
>
> THISAPP = expat-$(VER)
> DL_FILE = $(THISAPP).tar.bz2
> @@ -40,7 +40,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_BLAKE2 = d60183f96f3359acc069af638cc8d16ba19f51fbd8a61eddd80c2babddde357dcf0561e87af901f53617bfd9452e146c9dd9f317729cd3648b65832a38388640
> +$(DL_FILE)_BLAKE2 = 15a5dcd3af17995fb4299301710b38d609c1fe7a8d6a6284581fedd96e89e0c16526d0342fb55773ac9d678cd65dc5cdb1532c764eeb3a20ccdf1e168b96e337
>
> install : $(TARGET)
>
> --
> 2.38.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-11-08 11:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-07 21:13 [PATCH] expat: Update to version 2.5.0 Adolf Belka
2022-11-08 11:07 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox