* [PATCH] xz: Update to version 5.4.4
@ 2023-09-19 12:06 Adolf Belka
2023-09-19 15:37 ` jon
0 siblings, 1 reply; 3+ messages in thread
From: Adolf Belka @ 2023-09-19 12:06 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 638 bytes --]
- IPFire-3.x
- Update from version 5.2.8 to 5.4.4
- Changelog is too large to include here. Details can be found at
https://github.com/tukaani-project/xz/releases
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
xz/xz.nm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xz/xz.nm b/xz/xz.nm
index 196fee902..b10590293 100644
--- a/xz/xz.nm
+++ b/xz/xz.nm
@@ -4,7 +4,7 @@
###############################################################################
name = xz
-version = 5.2.8
+version = 5.4.4
release = 1
groups = Applications/Compression
--
2.42.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] xz: Update to version 5.4.4
2023-09-19 12:06 [PATCH] xz: Update to version 5.4.4 Adolf Belka
@ 2023-09-19 15:37 ` jon
0 siblings, 0 replies; 3+ messages in thread
From: jon @ 2023-09-19 15:37 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 981 bytes --]
Adolf,
> - IPFire-3.x
I just want to say "Thank you!" For adding the IPFire 3.x to the start of your updates.
Hopefully this will catch on - It is a big help!
Jon Murphy
jon.murphy(a)ipfire.org
> On Sep 19, 2023, at 7:06 AM, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>
> - IPFire-3.x
> - Update from version 5.2.8 to 5.4.4
> - Changelog is too large to include here. Details can be found at
> https://github.com/tukaani-project/xz/releases
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> xz/xz.nm | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/xz/xz.nm b/xz/xz.nm
> index 196fee902..b10590293 100644
> --- a/xz/xz.nm
> +++ b/xz/xz.nm
> @@ -4,7 +4,7 @@
> ###############################################################################
>
> name = xz
> -version = 5.2.8
> +version = 5.4.4
> release = 1
>
> groups = Applications/Compression
> --
> 2.42.0
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] gmp: Update to version 6.3.0
@ 2023-08-07 16:45 Adolf Belka
2023-08-07 16:45 ` [PATCH] xz: Update to version 5.4.4 Adolf Belka
0 siblings, 1 reply; 3+ messages in thread
From: Adolf Belka @ 2023-08-07 16:45 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3449 bytes --]
- Update fromn version 6.2.1 to 6.3.0
- Update of rootfile
- Changelog
Changes between GMP version 6.2.* and 6.3.*.
BUGS FIXED
* A possible overflow of type int is avoided for mpz_cmp on huge operands.
* A possible error condition when a malformed file is read with
mpz_inp_raw is now correctly handled.
FEATURES
* New public function mpz_prevprime, companion of the existing
mpz_nextprime.
* New documented pointer types mpz_ptr, mpz_srcptr, and similar for
other GMP types. Refer to the manual for full list and suggested
usage. These types have been present in gmp.h at least since
GMP-4.0, but previously not advertised to users.
* Support for 64-bit Arm under Macos.
* Support for the loongarch64 CPU family.
* Support for building with LTO, link-time optimisations.
SPEEDUPS
* New special code for base = 2 in mpz_powm reduces the average time
for the functions that test primality.
* Speedup for the function mpz_nextprime on large operands.
* Speedup for multiplications (some sizes only) thanks to new
internal functions to compute small negacyclic products.
* Special assembly code for IBM z13 and later "mainframe" CPUs, resulting in
a huge speedup.
* Improved assembly for several 64-bit x86 CPUs, Risc-V, 64-bit Arm.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/gmp | 4 ++--
lfs/gmp | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/config/rootfiles/common/gmp b/config/rootfiles/common/gmp
index 64d39effb..41c31d1b4 100644
--- a/config/rootfiles/common/gmp
+++ b/config/rootfiles/common/gmp
@@ -4,12 +4,12 @@
#usr/lib/libgmp.la
#usr/lib/libgmp.so
usr/lib/libgmp.so.10
-usr/lib/libgmp.so.10.4.1
+usr/lib/libgmp.so.10.5.0
#usr/lib/libgmpxx.a
#usr/lib/libgmpxx.la
#usr/lib/libgmpxx.so
usr/lib/libgmpxx.so.4
-usr/lib/libgmpxx.so.4.6.1
+usr/lib/libgmpxx.so.4.7.0
#usr/lib/pkgconfig/gmp.pc
#usr/lib/pkgconfig/gmpxx.pc
#usr/share/info/gmp.info
diff --git a/lfs/gmp b/lfs/gmp
index 70a4d666c..555e9eeb5 100644
--- a/lfs/gmp
+++ b/lfs/gmp
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2020 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2023 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,7 +24,7 @@
include Config
-VER = 6.2.1
+VER = 6.3.0
THISAPP = gmp-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = c0d85f175392a50cfa01bc6b0a312b235946ad8b4f6f84f6dabd33d7a6f2cc75c9b0e1e33057be07750bfa0145b7c4cf3b6188a5be6ca9d7271ec2276c84ebcb
+$(DL_FILE)_BLAKE2 = a865129e2b3f634ec5bad7f97ed89532e43f5662ac47a7d8ab7f0df8c9f8d0886bd984651422e2573c2163bca69c0547c248147ec90880accbd53db97dc0ddee
install : $(TARGET)
--
2.41.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] xz: Update to version 5.4.4
2023-08-07 16:45 [PATCH] gmp: Update to version 6.3.0 Adolf Belka
@ 2023-08-07 16:45 ` Adolf Belka
0 siblings, 0 replies; 3+ messages in thread
From: Adolf Belka @ 2023-08-07 16:45 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 8719 bytes --]
- Update from version 5.4.1 to 5.4.4
- Update of rootfile
- Changelog
5.4.4 (2023-08-02)
* liblzma and xzdec can now build against WASI SDK when threading
support is disabled. xz and tests don't build yet.
* CMake:
- Fixed a bug preventing other projects from including liblzma
multiple times using find_package().
- Don't create broken symlinks in Cygwin and MSYS2 unless
supported by the environment. This prevented building for the
default MSYS2 environment. The problem was introduced in
xz 5.4.0.
* Documentation:
- Small improvements to man pages.
- Small improvements and typo fixes for liblzma API
documentation.
* Tests:
- Added a new section to INSTALL to describe basic test usage
and address recent questions about building the tests when
cross compiling.
- Small fixes and improvements to the tests.
* Translations:
- Fixed a mistake that caused one of the error messages to not
be translated. This only affected versions 5.4.2 and 5.4.3.
- Updated the Chinese (simplified), Croatian, Esperanto, German,
Korean, Polish, Romanian, Spanish, Swedish, Ukrainian, and
Vietnamese translations.
- Updated the German, Korean, Romanian, and Ukrainian man page
translations.
5.4.3 (2023-05-04)
* All fixes from 5.2.12
* Features in the CMake build can now be disabled as CMake cache
variables, similar to the Autotools build.
* Minor update to the Croatian translation.
5.4.2 (2023-03-18)
* All fixes from 5.2.11 that were not included in 5.4.1.
* If xz is built with support for the Capsicum sandbox but running
in an environment that doesn't support Capsicum, xz now runs
normally without sandboxing instead of exiting with an error.
* liblzma:
- Documentation was updated to improve the style, consistency,
and completeness of the liblzma API headers.
- The Doxygen-generated HTML documentation for the liblzma API
header files is now included in the source release and is
installed as part of "make install". All JavaScript is
removed to simplify license compliance and to reduce the
install size.
- Fixed a minor bug in lzma_str_from_filters() that produced
too many filters in the output string instead of reporting
an error if the input array had more than four filters. This
bug did not affect xz.
* Build systems:
- autogen.sh now invokes the doxygen tool via the new wrapper
script doxygen/update-doxygen, unless the command line option
--no-doxygen is used.
- Added microlzma_encoder.c and microlzma_decoder.c to the
VS project files for Windows and to the CMake build. These
should have been included in 5.3.2alpha.
* Tests:
- Added a test to the CMake build that was forgotten in the
previous release.
- Added and refactored a few tests.
* Translations:
- Updated the Brazilian Portuguese translation.
- Added Brazilian Portuguese man page translation.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/xz | 95 +++++++++++++++++++++++++++++++++++++-
lfs/xz | 4 +-
2 files changed, 96 insertions(+), 3 deletions(-)
diff --git a/config/rootfiles/common/xz b/config/rootfiles/common/xz
index 69d440435..ae40ff580 100644
--- a/config/rootfiles/common/xz
+++ b/config/rootfiles/common/xz
@@ -41,7 +41,7 @@ usr/bin/xzmore
#usr/lib/liblzma.la
#usr/lib/liblzma.so
usr/lib/liblzma.so.5
-usr/lib/liblzma.so.5.4.1
+usr/lib/liblzma.so.5.4.4
#usr/lib/pkgconfig/liblzma.pc
#usr/share/doc/xz
#usr/share/doc/xz/AUTHORS
@@ -51,6 +51,75 @@ usr/lib/liblzma.so.5.4.1
#usr/share/doc/xz/README
#usr/share/doc/xz/THANKS
#usr/share/doc/xz/TODO
+#usr/share/doc/xz/api
+#usr/share/doc/xz/api/annotated.html
+#usr/share/doc/xz/api/base_8h.html
+#usr/share/doc/xz/api/bc_s.png
+#usr/share/doc/xz/api/bc_sd.png
+#usr/share/doc/xz/api/bcj_8h.html
+#usr/share/doc/xz/api/block_8h.html
+#usr/share/doc/xz/api/check_8h.html
+#usr/share/doc/xz/api/classes.html
+#usr/share/doc/xz/api/closed.png
+#usr/share/doc/xz/api/container_8h.html
+#usr/share/doc/xz/api/delta_8h.html
+#usr/share/doc/xz/api/dir_b17a1d403082bd69a703ed987cf158fb.html
+#usr/share/doc/xz/api/doc.svg
+#usr/share/doc/xz/api/docd.svg
+#usr/share/doc/xz/api/doxygen.css
+#usr/share/doc/xz/api/doxygen.svg
+#usr/share/doc/xz/api/files.html
+#usr/share/doc/xz/api/filter_8h.html
+#usr/share/doc/xz/api/folderclosed.svg
+#usr/share/doc/xz/api/folderclosedd.svg
+#usr/share/doc/xz/api/folderopen.svg
+#usr/share/doc/xz/api/folderopend.svg
+#usr/share/doc/xz/api/functions.html
+#usr/share/doc/xz/api/functions_vars.html
+#usr/share/doc/xz/api/globals.html
+#usr/share/doc/xz/api/globals_defs.html
+#usr/share/doc/xz/api/globals_enum.html
+#usr/share/doc/xz/api/globals_eval.html
+#usr/share/doc/xz/api/globals_func.html
+#usr/share/doc/xz/api/globals_type.html
+#usr/share/doc/xz/api/hardware_8h.html
+#usr/share/doc/xz/api/index.html
+#usr/share/doc/xz/api/index_8h.html
+#usr/share/doc/xz/api/index__hash_8h.html
+#usr/share/doc/xz/api/lzma12_8h.html
+#usr/share/doc/xz/api/lzma_8h.html
+#usr/share/doc/xz/api/nav_f.png
+#usr/share/doc/xz/api/nav_fd.png
+#usr/share/doc/xz/api/nav_g.png
+#usr/share/doc/xz/api/nav_h.png
+#usr/share/doc/xz/api/nav_hd.png
+#usr/share/doc/xz/api/open.png
+#usr/share/doc/xz/api/splitbar.png
+#usr/share/doc/xz/api/splitbard.png
+#usr/share/doc/xz/api/stream__flags_8h.html
+#usr/share/doc/xz/api/structlzma__allocator.html
+#usr/share/doc/xz/api/structlzma__block.html
+#usr/share/doc/xz/api/structlzma__filter.html
+#usr/share/doc/xz/api/structlzma__index__iter.html
+#usr/share/doc/xz/api/structlzma__mt.html
+#usr/share/doc/xz/api/structlzma__options__bcj.html
+#usr/share/doc/xz/api/structlzma__options__delta.html
+#usr/share/doc/xz/api/structlzma__options__lzma.html
+#usr/share/doc/xz/api/structlzma__stream.html
+#usr/share/doc/xz/api/structlzma__stream__flags.html
+#usr/share/doc/xz/api/sync_off.png
+#usr/share/doc/xz/api/sync_on.png
+#usr/share/doc/xz/api/tab_a.png
+#usr/share/doc/xz/api/tab_ad.png
+#usr/share/doc/xz/api/tab_b.png
+#usr/share/doc/xz/api/tab_bd.png
+#usr/share/doc/xz/api/tab_h.png
+#usr/share/doc/xz/api/tab_hd.png
+#usr/share/doc/xz/api/tab_s.png
+#usr/share/doc/xz/api/tab_sd.png
+#usr/share/doc/xz/api/tabs.css
+#usr/share/doc/xz/api/version_8h.html
+#usr/share/doc/xz/api/vli_8h.html
#usr/share/doc/xz/examples
#usr/share/doc/xz/examples/00_README.txt
#usr/share/doc/xz/examples/01_compress_easy.c
@@ -177,6 +246,30 @@ usr/lib/liblzma.so.5.4.1
#usr/share/man/man1/xzgrep.1
#usr/share/man/man1/xzless.1
#usr/share/man/man1/xzmore.1
+#usr/share/man/pt_BR
+#usr/share/man/pt_BR/man1
+#usr/share/man/pt_BR/man1/lzcat.1
+#usr/share/man/pt_BR/man1/lzcmp.1
+#usr/share/man/pt_BR/man1/lzdiff.1
+#usr/share/man/pt_BR/man1/lzegrep.1
+#usr/share/man/pt_BR/man1/lzfgrep.1
+#usr/share/man/pt_BR/man1/lzgrep.1
+#usr/share/man/pt_BR/man1/lzless.1
+#usr/share/man/pt_BR/man1/lzma.1
+#usr/share/man/pt_BR/man1/lzmadec.1
+#usr/share/man/pt_BR/man1/lzmore.1
+#usr/share/man/pt_BR/man1/unlzma.1
+#usr/share/man/pt_BR/man1/unxz.1
+#usr/share/man/pt_BR/man1/xz.1
+#usr/share/man/pt_BR/man1/xzcat.1
+#usr/share/man/pt_BR/man1/xzcmp.1
+#usr/share/man/pt_BR/man1/xzdec.1
+#usr/share/man/pt_BR/man1/xzdiff.1
+#usr/share/man/pt_BR/man1/xzegrep.1
+#usr/share/man/pt_BR/man1/xzfgrep.1
+#usr/share/man/pt_BR/man1/xzgrep.1
+#usr/share/man/pt_BR/man1/xzless.1
+#usr/share/man/pt_BR/man1/xzmore.1
#usr/share/man/ro
#usr/share/man/ro/man1
#usr/share/man/ro/man1/lzcat.1
diff --git a/lfs/xz b/lfs/xz
index 3c9875a6e..8270048fc 100644
--- a/lfs/xz
+++ b/lfs/xz
@@ -24,7 +24,7 @@
include Config
-VER = 5.4.1
+VER = 5.4.4
THISAPP = xz-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -45,7 +45,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 64c555ccc163ea1135c7eda077ef31e5bd68975ed3b6e395d5d6e602caed13112349c72a7596c67797e007246782747f048dd4a518239d9005305932b0975d67
+$(DL_FILE)_BLAKE2 = 4b4c2bf33c964c16af15b2226ec7a922565026bd21192e193c0896a9d1a27a92bc08dbd842b9fa76ae9428b48a320ca65609b080caa41e0eaab7b6659b287968
install : $(TARGET)
--
2.41.0
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-09-19 15:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-19 12:06 [PATCH] xz: Update to version 5.4.4 Adolf Belka
2023-09-19 15:37 ` jon
-- strict thread matches above, loose matches on Subject: below --
2023-08-07 16:45 [PATCH] gmp: Update to version 6.3.0 Adolf Belka
2023-08-07 16:45 ` [PATCH] xz: Update to version 5.4.4 Adolf Belka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox