* [PATCH] acl: Update to version 2.3.2
@ 2024-01-30 22:13 Adolf Belka
2024-01-30 22:13 ` [PATCH] bash: Update to include patches 22 to 26 Adolf Belka
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Adolf Belka @ 2024-01-30 22:13 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3148 bytes --]
- Update from version 2.3.1 to 2.3.2
- Update of rootfile
- Changelog is only available from reviewing the git commits
https://git.savannah.nongnu.org/cgit/acl.git/log/
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/acl | 4 ++--
lfs/acl | 11 +++++++----
2 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/config/rootfiles/common/acl b/config/rootfiles/common/acl
index a3476d9a5..505fd563c 100644
--- a/config/rootfiles/common/acl
+++ b/config/rootfiles/common/acl
@@ -7,13 +7,12 @@ usr/bin/setfacl
#usr/lib/libacl.la
usr/lib/libacl.so
usr/lib/libacl.so.1
-usr/lib/libacl.so.1.1.2301
+usr/lib/libacl.so.1.1.2302
#usr/lib/pkgconfig/libacl.pc
#usr/share/doc/acl
#usr/share/doc/acl/CHANGES
#usr/share/doc/acl/COPYING
#usr/share/doc/acl/COPYING.LGPL
-#usr/share/doc/acl/PORTING
#usr/share/doc/acl/extensions.txt
#usr/share/doc/acl/libacl.txt
#usr/share/locale/de/LC_MESSAGES/acl.mo
@@ -22,6 +21,7 @@ usr/lib/libacl.so.1.1.2301
#usr/share/locale/es/LC_MESSAGES/acl.mo
#usr/share/locale/fr/LC_MESSAGES/acl.mo
#usr/share/locale/gl/LC_MESSAGES/acl.mo
+#usr/share/locale/ka/LC_MESSAGES/acl.mo
#usr/share/locale/pl/LC_MESSAGES/acl.mo
#usr/share/locale/sv/LC_MESSAGES/acl.mo
#usr/share/man/man1/chacl.1
diff --git a/lfs/acl b/lfs/acl
index 9c5c46952..b0008d4db 100644
--- a/lfs/acl
+++ b/lfs/acl
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2018 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2024 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 = 2.3.1
+VER = 2.3.2
THISAPP = acl-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 15e81e8159ddb21ef0c262bef3101c0b6fa546738a2ab74c01ccc21fd1c3dc8ab6aaf84a06dee6da22291f3ca4feeffa60c7d11bfac1ab770a6ec28e1f1655e0
+$(DL_FILE)_BLAKE2 = 9f2abfddcd403df2c716c05f02a1b52453613d10948dc58a65b9ef41b44e37db6de99fb22dcfc4f6f0fb5d0319c939da61bd4e0fba2cdb5643e8087ecd34eeac
install : $(TARGET)
@@ -70,7 +70,10 @@ $(subst %,%_BLAKE2,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
- cd $(DIR_APP) && ./configure --prefix=/usr --libexecdir=/usr/lib --disable-static
+ cd $(DIR_APP) && ./configure \
+ --prefix=/usr \
+ --libexecdir=/usr/lib \
+ --disable-static
cd $(DIR_APP) && make
cd $(DIR_APP) && make install
chmod -v 755 /usr/lib/libacl.so
--
2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] bash: Update to include patches 22 to 26
2024-01-30 22:13 [PATCH] acl: Update to version 2.3.2 Adolf Belka
@ 2024-01-30 22:13 ` Adolf Belka
2024-01-30 22:13 ` [PATCH] glib: Update to version 2.79.1 Adolf Belka
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Adolf Belka @ 2024-01-30 22:13 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 12563 bytes --]
- Update from version 5.2 with patches 1 to 21 to 5.2 with patches 1 to 26
- Update of rootfile not required
- Changelog
Patch 26
The custom color prefix that readline uses to color possible completions
must have a leading `.'.
Patch 25
Make sure a subshell checks for and handles any terminating signals before
exiting (which might have arrived after the command completed) so the parent
and any EXIT trap will see the correct value for $?.
Patch 24
Fix bug where associative array compound assignment would not expand tildes
in values.
Patch 23
Running `local -' multiple times in a shell function would overwrite the
original saved set of options.
Patch 22
It's possible for readline to try to zero out a line that's not null-
terminated, leading to a memory fault.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/bash | 4 +-
src/patches/bash/bash52-022 | 53 ++++++++++++++++++++++
src/patches/bash/bash52-023 | 64 +++++++++++++++++++++++++++
src/patches/bash/bash52-024 | 88 +++++++++++++++++++++++++++++++++++++
src/patches/bash/bash52-025 | 46 +++++++++++++++++++
src/patches/bash/bash52-026 | 48 ++++++++++++++++++++
6 files changed, 301 insertions(+), 2 deletions(-)
create mode 100644 src/patches/bash/bash52-022
create mode 100644 src/patches/bash/bash52-023
create mode 100644 src/patches/bash/bash52-024
create mode 100644 src/patches/bash/bash52-025
create mode 100644 src/patches/bash/bash52-026
diff --git a/lfs/bash b/lfs/bash
index 80d4f244b..c66f6a8e1 100644
--- a/lfs/bash
+++ b/lfs/bash
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2023 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2024 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 #
@@ -91,7 +91,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/bash/bash-4.0-profile-1.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/bash/bash-3.2-ssh_source_bash.patch
- for i in $$(seq 1 21); do \
+ for i in $$(seq 1 26); do \
cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/bash/bash52-$$(printf "%03d" "$${i}") || exit 1; \
done
diff --git a/src/patches/bash/bash52-022 b/src/patches/bash/bash52-022
new file mode 100644
index 000000000..557d38706
--- /dev/null
+++ b/src/patches/bash/bash52-022
@@ -0,0 +1,53 @@
+ BASH PATCH REPORT
+ =================
+
+Bash-Release: 5.2
+Patch-ID: bash52-022
+
+Bug-Reported-by: srobertson(a)peratonlabs.com
+Bug-Reference-ID:
+Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2022-09/msg00049.html
+
+Bug-Description:
+
+It's possible for readline to try to zero out a line that's not null-
+terminated, leading to a memory fault.
+
+Patch (apply with `patch -p0'):
+
+*** ../bash-5.2-patched/lib/readline/display.c 2022-04-05 10:47:31.000000000 -0400
+--- lib/readline/display.c 2022-12-13 13:11:22.000000000 -0500
+***************
+*** 2684,2692 ****
+
+ if (visible_line)
+! {
+! temp = visible_line;
+! while (*temp)
+! *temp++ = '\0';
+! }
+ rl_on_new_line ();
+ forced_display++;
+--- 2735,2740 ----
+
+ if (visible_line)
+! memset (visible_line, 0, line_size);
+!
+ rl_on_new_line ();
+ forced_display++;
+
+*** ../bash-5.2/patchlevel.h 2020-06-22 14:51:03.000000000 -0400
+--- patchlevel.h 2020-10-01 11:01:28.000000000 -0400
+***************
+*** 26,30 ****
+ looks for to find the patch level (for the sccs version string). */
+
+! #define PATCHLEVEL 21
+
+ #endif /* _PATCHLEVEL_H_ */
+--- 26,30 ----
+ looks for to find the patch level (for the sccs version string). */
+
+! #define PATCHLEVEL 22
+
+ #endif /* _PATCHLEVEL_H_ */
diff --git a/src/patches/bash/bash52-023 b/src/patches/bash/bash52-023
new file mode 100644
index 000000000..07ba4ae43
--- /dev/null
+++ b/src/patches/bash/bash52-023
@@ -0,0 +1,64 @@
+ BASH PATCH REPORT
+ =================
+
+Bash-Release: 5.2
+Patch-ID: bash52-023
+
+Bug-Reported-by: Emanuele Torre <torreemanuele6(a)gmail.com>
+Bug-Reference-ID: <20230206140824.1710288-1-torreemanuele6(a)gmail.com>
+Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2023-02/msg00045.html
+
+Bug-Description:
+
+Running `local -' multiple times in a shell function would overwrite the
+original saved set of options.
+
+Patch (apply with `patch -p0'):
+
+*** ../bash-5.2-patched/builtins/declare.def 2023-01-04 20:40:28.000000000 -0500
+--- builtins/declare.def 2023-02-08 15:36:49.000000000 -0500
+***************
+*** 421,429 ****
+ if (local_var && variable_context && STREQ (name, "-"))
+ {
+ var = make_local_variable ("-", 0);
+! FREE (value_cell (var)); /* just in case */
+! value = get_current_options ();
+! var_setvalue (var, value);
+! VSETATTR (var, att_invisible);
+ NEXT_VARIABLE ();
+ }
+--- 421,437 ----
+ if (local_var && variable_context && STREQ (name, "-"))
+ {
++ int o;
++
++ o = localvar_inherit;
++ localvar_inherit = 0;
+ var = make_local_variable ("-", 0);
+! localvar_inherit = o;
+!
+! if (value_cell (var) == NULL) /* no duplicate instances */
+! {
+! value = get_current_options ();
+! var_setvalue (var, value);
+! VSETATTR (var, att_invisible);
+! }
+ NEXT_VARIABLE ();
+ }
+
+*** ../bash-5.2/patchlevel.h 2020-06-22 14:51:03.000000000 -0400
+--- patchlevel.h 2020-10-01 11:01:28.000000000 -0400
+***************
+*** 26,30 ****
+ looks for to find the patch level (for the sccs version string). */
+
+! #define PATCHLEVEL 22
+
+ #endif /* _PATCHLEVEL_H_ */
+--- 26,30 ----
+ looks for to find the patch level (for the sccs version string). */
+
+! #define PATCHLEVEL 23
+
+ #endif /* _PATCHLEVEL_H_ */
diff --git a/src/patches/bash/bash52-024 b/src/patches/bash/bash52-024
new file mode 100644
index 000000000..8cc49e878
--- /dev/null
+++ b/src/patches/bash/bash52-024
@@ -0,0 +1,88 @@
+ BASH PATCH REPORT
+ =================
+
+Bash-Release: 5.2
+Patch-ID: bash52-024
+
+Bug-Reported-by: Marco <maroloccio(a)gmail.com>
+Bug-Reference-ID: <eaf9af76-c4ed-8b61-c517-22ed980529d3(a)gmail.com>
+Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2023-02/msg00044.html
+
+Bug-Description:
+
+Fix bug where associative array compound assignment would not expand tildes
+in values.
+
+Patch (apply with `patch -p0'):
+
+*** ../bash-20230105/arrayfunc.c Thu Jan 5 14:23:28 2023
+--- arrayfunc.c Wed Feb 8 16:27:48 2023
+***************
+*** 651,655 ****
+ }
+
+! aval = expand_subscript_string (v, 0);
+ if (aval == 0)
+ {
+--- 651,655 ----
+ }
+
+! aval = expand_assignment_string_to_string (v, 0);
+ if (aval == 0)
+ {
+***************
+*** 843,847 ****
+ if (assoc_p (var))
+ {
+! val = expand_subscript_string (val, 0);
+ if (val == 0)
+ {
+--- 843,847 ----
+ if (assoc_p (var))
+ {
+! val = expand_assignment_string_to_string (val, 0);
+ if (val == 0)
+ {
+***************
+*** 1031,1035 ****
+ nword[i++] = w[ind++];
+
+! t = expand_subscript_string (w+ind, 0);
+ s = (t && strchr (t, CTLESC)) ? quote_escapes (t) : t;
+ value = sh_single_quote (s ? s : "");
+--- 1031,1035 ----
+ nword[i++] = w[ind++];
+
+! t = expand_assignment_string_to_string (w+ind, 0);
+ s = (t && strchr (t, CTLESC)) ? quote_escapes (t) : t;
+ value = sh_single_quote (s ? s : "");
+*** ../bash-20230201/subst.c Mon Jan 30 16:19:46 2023
+--- subst.c Mon Feb 6 16:25:22 2023
+***************
+*** 10803,10807 ****
+--- 10803,10811 ----
+ ret = (char *)NULL;
+
++ #if 0
+ td.flags = W_NOPROCSUB|W_NOTILDE|W_NOSPLIT2; /* XXX - W_NOCOMSUB? */
++ #else
++ td.flags = W_NOPROCSUB|W_NOSPLIT2; /* XXX - W_NOCOMSUB? */
++ #endif
+ td.word = savestring (string); /* in case it's freed on error */
+
+
+*** ../bash-5.2/patchlevel.h 2020-06-22 14:51:03.000000000 -0400
+--- patchlevel.h 2020-10-01 11:01:28.000000000 -0400
+***************
+*** 26,30 ****
+ looks for to find the patch level (for the sccs version string). */
+
+! #define PATCHLEVEL 23
+
+ #endif /* _PATCHLEVEL_H_ */
+--- 26,30 ----
+ looks for to find the patch level (for the sccs version string). */
+
+! #define PATCHLEVEL 24
+
+ #endif /* _PATCHLEVEL_H_ */
diff --git a/src/patches/bash/bash52-025 b/src/patches/bash/bash52-025
new file mode 100644
index 000000000..4e293f9d3
--- /dev/null
+++ b/src/patches/bash/bash52-025
@@ -0,0 +1,46 @@
+ BASH PATCH REPORT
+ =================
+
+Bash-Release: 5.2
+Patch-ID: bash52-025
+
+Bug-Reported-by: Andrew Neff <andrew.neff(a)visionsystemsinc.com>
+Bug-Reference-ID: <SA1P110MB1357F68AFD51BB225019EFF48D2B9(a)SA1P110MB1357.NAMP110.PROD.OUTLOOK.COM>
+Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2022-10/msg00100.html
+
+Bug-Description:
+
+Make sure a subshell checks for and handles any terminating signals before
+exiting (which might have arrived after the command completed) so the parent
+and any EXIT trap will see the correct value for $?.
+
+Patch (apply with `patch -p0'):
+
+*** ../bash-5.2.9/execute_cmd.c 2022-11-02 10:36:54.000000000 -0400
+--- execute_cmd.c 2022-10-27 16:52:55.000000000 -0400
+***************
+*** 1726,1729 ****
+--- 1726,1732 ----
+ : EXECUTION_SUCCESS;
+
++ /* Check for terminating signals before we return to our caller, which we
++ expect to exit immediately anyway. */
++ CHECK_TERMSIG;
+
+ /* If we were explicitly placed in a subshell with (), we need
+
+*** ../bash-5.2/patchlevel.h 2020-06-22 14:51:03.000000000 -0400
+--- patchlevel.h 2020-10-01 11:01:28.000000000 -0400
+***************
+*** 26,30 ****
+ looks for to find the patch level (for the sccs version string). */
+
+! #define PATCHLEVEL 24
+
+ #endif /* _PATCHLEVEL_H_ */
+--- 26,30 ----
+ looks for to find the patch level (for the sccs version string). */
+
+! #define PATCHLEVEL 25
+
+ #endif /* _PATCHLEVEL_H_ */
diff --git a/src/patches/bash/bash52-026 b/src/patches/bash/bash52-026
new file mode 100644
index 000000000..bd0f5d0d2
--- /dev/null
+++ b/src/patches/bash/bash52-026
@@ -0,0 +1,48 @@
+ BASH PATCH REPORT
+ =================
+
+Bash-Release: 5.2
+Patch-ID: bash52-026
+
+Bug-Reported-by: Stefan Klinger <readline-gnu.org(a)stefan-klinger.de>
+Bug-Reference-ID:
+Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-readline/2023-08/msg00018.html
+
+Bug-Description:
+
+The custom color prefix that readline uses to color possible completions
+must have a leading `.'.
+
+Patch (apply with `patch -p0'):
+
+*** ../bash-5.2-patched/lib/readline/colors.c 2021-12-08 11:38:25.000000000 -0500
+--- lib/readline/colors.c 2023-08-28 16:40:04.000000000 -0400
+***************
+*** 74,78 ****
+ static void restore_default_color (void);
+
+! #define RL_COLOR_PREFIX_EXTENSION "readline-colored-completion-prefix"
+
+ COLOR_EXT_TYPE *_rl_color_ext_list = 0;
+--- 74,78 ----
+ static void restore_default_color (void);
+
+! #define RL_COLOR_PREFIX_EXTENSION ".readline-colored-completion-prefix"
+
+ COLOR_EXT_TYPE *_rl_color_ext_list = 0;
+
+*** ../bash-5.2/patchlevel.h 2020-06-22 14:51:03.000000000 -0400
+--- patchlevel.h 2020-10-01 11:01:28.000000000 -0400
+***************
+*** 26,30 ****
+ looks for to find the patch level (for the sccs version string). */
+
+! #define PATCHLEVEL 25
+
+ #endif /* _PATCHLEVEL_H_ */
+--- 26,30 ----
+ looks for to find the patch level (for the sccs version string). */
+
+! #define PATCHLEVEL 26
+
+ #endif /* _PATCHLEVEL_H_ */
--
2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] glib: Update to version 2.79.1
2024-01-30 22:13 [PATCH] acl: Update to version 2.3.2 Adolf Belka
2024-01-30 22:13 ` [PATCH] bash: Update to include patches 22 to 26 Adolf Belka
@ 2024-01-30 22:13 ` Adolf Belka
2024-01-30 22:13 ` [PATCH] libpng: Update to version 1.6.41 Adolf Belka
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Adolf Belka @ 2024-01-30 22:13 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 34394 bytes --]
- Update from version 2.77.0 to 2.79.1
- Update of rootfile
- glib now requires python3-packaging so it and it required dependencies have been moved
to be built before glib
- Changelog
2.79.1
Fix a race condition in g_object_unref() (#3064, work by Thomas Haller)
Various API and build changes to libgirepository as it is not yet API-stable
(#3216, !3780, !3805, !3823, !3833, !3840)
Build fixes on big-endian 64-bit systems and mips64el (#3225, #3226, work by
Simon McVittie)
Reduce contention on global locks within GObject (!3774, work by Thomas
Haller)
Allow building man pages without the reference documentation (!3817, work by
Simon McVittie)
Bugs fixed:
#1010 g_get_num_processor does not respect cpuset/affinity
#3064 Crash under g_object_unref()
#3093 GDBusMessage: should validate the type of all known headers (Philip
Withnall)
#3207 Add support for syslog to Structured Logging
#3216 Feedback on gobject-introspection: Casting to and from GIBaseInfo*
(Philip Withnall)
#3222 pthread_t usages lack type name (Emmanuele Bassi)
#3223 CLang, GMutexLocker: error: unused variable 'locker'
[-Werror,-Wunused-variable]
#3225 2.79 regression: gdatetime test failing on 64-bit big-endian since
#3119
#3226 resource test fails on Debian mips64el: test5.gresource is not linked
but the test assumes it should be (Simon McVittie)
!3774 [th/g-object-priv] add private data to GObject and use per-object
locking
!3780 girepository: Use standard types instead of glib specific
!3789 gdatetime: Fix title of documentation comment
!3792 build: Tell gi-docgen where to find the GIR files
!3793 Shorten the title for D-Bus interface docs
!3794 Add boxed GType for GRand
!3795 girepository: Skip GIRepository versions not matching
GIRepository-3.0
!3798 docs: Drop outdated .gitignore files
!3799 tests: Fix a minor leak in the new GParamSpecPool test
!3800 ci: Re-enable and fix FreeBSD CI
!3801 gmessages: Port all doc comments to gi-docgen
!3802 [th/g-pointer-bit-lock-ext] glib: add g_pointer_bit_unlock_and_set()
and g_pointer_bit_lock_mask_ptr()
!3803 ci: Fix tarballing the docs on dist
!3805 girepository: Various small API cleanups
!3806 gsignal.c: drop an optimization that is undefined behaviour
!3808 glib/deprecated: Skip all the deprecated gthread api
!3809 docs: Fix links to symbols outside the allowed namsepace
!3810 gstrfuncs: Improve and port g_set_str() docs to gi-docgen
!3811 gvariant-parser: Mention annotated types
!3812 brz.c: Use uintptr_t instead of a hardcoded list of 64-bit arches
!3813 gobject: define HAVE_OPTIONAL_FLAGS for sizeof(void*) > 8
!3814 Fix typo in GPOINTER_TO_SIZE documentation
!3817 docs: Allow building man pages without the reference documentation
!3818 docs: Clarify >=2.76 changes to g_module_open()
!3821 tests: Fix a minor leak in the socket test
!3823 girepository: Misc cleanups
!3826 genums: use g_once_init_enter_pointer for GType initializers
!3827 array-test: Don't assume sizeof(void*)==sizeof(gsize)
!3831 gvariant-core: Don’t call posix_memalign() with size==0
!3833 girepository: Change various alignments to use size_t
!3835 build: Ignore branches in g_clear_*() functions under lcov
!3837 tests: A couple of test isolation improvements
!3839 gvarianttype: Fix typos
!3840 girepository: Exclude private symbols from the ABI
!3841 docs: Fix member names of GLib.LogLevelFlags
!3842 gio, gmodule, gthread: compile windows resources only in shared build
Translation updates:
Georgian (Ekaterine Papava)
Russian (Artur S0)
2.79.0
Port to gi-docgen and drop gtk-doc support — dependencies have changed, and
Meson needs -Ddocumentation now rather than -Dgtk_doc (#3037, work by
multiple people)
Move libgirepository into glib.git from gobject-introspection.git — but tools
like g-ir-scanner are currently still in gobject-introspection.git. For the
moment, glib.git needs to be built twice, once with -Dintrospection=false,
then build gobject-introspection.git, then re-build glib.git with
-Dintrospection=true. This process will evolve throughout the GLib 2.80
cycle. The API and ABI of libgirepository has changed, and accordingly its
version number has been bumped from 1.0 to 2.0 (note: the version number of
GIRepository-*.gir has been bumped from 2.0 to 3.0; see !3786). The GIR and
typelib file formats have not been changed, and are still at version 1.0.
(#3155, work by multiple people)
Match behaviour for GAppInfo searches has changed (#3082, work by Nelson
Benítez León)
Rename GTK_USE_PORTAL environment variable to GIO_USE_PORTALS (#3107,
work by Philip Withnall)
Bump Meson dependency to 1.2.0 and depend on Python packaging module
(!3666, !3752)
Bugs fixed:
#596 GApplication in Garbage Collected environments would benefit from a
g_application_command_line_exit() to enable remote instances to exit.
(Aleksandr Mezin)
#791 Wish: Add a "nodelay" property to GSocket or GTcpConnection (Philip
Withnall)
#2810 thread-pool-slow intermittent assertion failure in
test_thread_sort_entry_func() (Philip Withnall)
#2824 G_REGEX_OPTIMIZE causes incorrect regex behaviour
#2991 Drop translatable pspec nick/blurbs from properties in GIO (Sophie
Herold)
#3082 Investigate prioritising prefix matches on GAppInfo keywords over
substring matches on names (Nelson Benítez León)
#3087 glib doesn't cleanly unload on Windows (Luca Bacci)
#3098 Make invalid escape sequences in GKeyFile fatal (Philip Withnall)
#3103 mkenums: Can't parse an enum value with value ',' (Lukáš Tyrychtr)
#3105 NetworkManager 1.44.0 crashes repeatedly with glib 2.78.0 (Philip
Withnall)
#3107 Rename GTK_USE_PORTAL to avoid portal services being run with portals
force-enabled (Philip Withnall)
#3111 gsubprocess-testprog.c: build error with cygwin (sys/ptrace.h: No
such file or directory) (Philip Withnall)
#3112 Update to Unicode 15.1 (Philip Withnall)
#3115 Support for additional strftime formatting capabilities
#3116 gio clears modification time in microseconds when setting with
set_modification_date_time (Lukáš Tyrychtr)
#3119 Add support for %Ey to g_date_time_format() (Philip Withnall)
#3120 Build of glib 2.78.0 ignores -Dlibelf=disabled (Philip Withnall)
#3128 glib-2.78.0 fails at gio/tests/gsubprocess.p/gsubprocess.c.o
#3130 Segfault when creating GIO GPropertyAction without properties
#3134 glib incompatible with Python 3.12 due to distutils usage
#3135 Add GNU/Hurd CI
#3140 Add a flag to not copy modification time when copying files (Khalid
Abu Shawarib)
#3144 g_file_set_contents_full() doesn't truncate the file (without
G_FILE_SET_CONTENTS_CONSISTENT) (Philip Withnall)
#3156 check for #ifdef PTRACE_O_EXITKILL will always fail since it isn't a
macro (Alessandro Bono)
#3157 gsubprocess build-time test intermittently timing out since 2.78.1
(Simon McVittie)
#3158 "CRITICAL" log when using --attributes option for "gio info" (Philip
Withnall)
#3159 glib regex test fails JIT compiler tests under musl libc
(Pablo Correa Gómez)
#3161 codegen installation is broken
#3168 gvfs-udisks2-volume-monitor SIGSEGV in
g_content_type_guess_for_tree() due to filename with bad encoding
(Ondrej Holy)
#3183 g_dbus_connection_signal_subscribe with flag
G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_PATH doesn't work with an arg0 that
is an object path (Philip Withnall)
#3185 g_utf8_collate_key() segfaults when passed an invalid length
#3186 [RFE] Increase gio sniff buffer for mime type magic detection to 16K
or so (Philip Withnall)
#3187 g_vasprintf crashes when passed invalid UTF-8 (Philip Withnall)
#3191 Crash in __gio_xdg_cache_mime_type_subclass (Philip Withnall)
#3203 Fdo notification fails without AppID (Michael Catanzaro)
!3143 gatomic: Use g(u)intptr where appropriate
!3316 gobject: Separate GWeakRef from GWeakNotify
!3394 gsocketclient: Document delays/timeouts better
!3457 glib-unix: Add convenience API for pipes
!3524 add muslc ci
!3552 gutils: Use international symbol for bits
!3566 Update annotations for GAsyncQueue and GDir
!3567 Update annotations for GHmac
!3568 Update GOptionContext annotations
!3569 Small fixes and cleanups for Vectored Exception Handlers
!3571 Update GStringChunk annotations
!3572 Update GRand annotations
!3573 Update GTimer annotations
!3576 guniprop.c: Avoid creating (temporarily) out-of-bounds pointers
!3577 gthread: introduce g_once_init_{enter,leave}_pointer
!3578 GType: Use guintptr as the underlying storage if larger than gsize
!3579 Fixes for integer cast warnings when targeting CHERI
!3580 Fix test_find_program on FreeBSD
!3581 gthread: Fix optional/nullable annotations for g_once_init_*()
!3582 Buffer needs to be aligned correctly to receive linux_dirent64.
!3589 gconstructor.h: Ensure [c|d]tor prototypes are present for MSVC
(Chun-wei Fan)
!3590 gtestutils.h: Fix warning with -Wsign-conversion caused by
g_assert_cmpint
!3591 Switch to using gi-docgen for docs (batch 1)
!3594 Fix gutils-user-database test on macOS
!3595 gobject: cache flags needed for g_type_create_instance()
!3596 Add value annotation to G_TYPE_FUNDAMENTAL_MAX
!3597 Expand security policy to cover previous stable branch
!3598 Document NULL pointer pitfall in toolchain requirements
!3601 meson: Fix Windows build with PCRE2 as sibling subproject
!3603 Add GBytes variants for GSocket receive methods
!3605 build: Post-release version bump
!3607 Make sure the GTask is freed on a graceful disconnect
!3610 gdesktopappinfo: Do not search Comment field
!3611 tests/constructor: Fix "unknown pragma ignored" warning on clang
!3612 Update GStrv annotations
!3613 tests: Fix gdatetime test on non-UTC systems
!3620 gmain: avoid a GList traversal when removing source
!3621 wakeup: do single read when using eventfd()
!3623 Windows: Compile with the UNICODE / _UNICODE macros
!3624 wakeup: Fix g_wakeup_acknowledge if signal comes in
!3627 Add Hurd code owners
!3628 glib-unix: Use full path to gstdio.h include
!3629 glib/tests/meson.build: remove identical build targets
!3630 glib-compile-resources: ensure alignment is at least sizeof(void *)
!3632 Stop using enums in bitfields
!3633 Use g_task_return in task threads
!3634 Switch to using gi-docgen for docs (batch 2)
!3635 Fix warnings with Clang on Windows and enable --Werror in CI
!3636 Generate introspection data
!3637 gstrvbuilder: Add g_strv_builder_take
!3638 Cleanup and add content to glib debugging using gdb scripts
!3640 GIO/tests: skip test_resources_binary on MIPS platforms
!3641 build: Simplify MIPS test check
!3645 Switch to using gi-docgen for docs (batch 3)
!3646 ci: Update from clang-format-11 to clang-format-14
!3647 Switch to using gi-docgen for docs (batch 4)
!3652 GApplicationCommandLine: add print[err]_literal()
!3654 gdatetime: Fix minor leaks from strup/strdown calls
!3655 gdatetime: Fix incorrect alt-digits being used after changing locale
!3656 gmodule-dl: Use RTLD_DEFAULT on FreeBSD too
!3660 Switch to using gi-docgen for docs (batch 5)
!3661 Switch to using gi-docgen for docs (batch 6)
!3662 Switch to using gi-docgen for docs (batch 7)
!3663 gdbusconnection: don't cache G_IO_ERROR_CANCELLED errors
!3664 gmain: optimize "context->sources" hash table to use as set
!3665 ci: Remove .build-linux from Hurd CI scheduled job
!3666 build: Bump Meson dependency to 1.2.0
!3667 Switch to using gi-docgen for docs (batch 8)
!3668 Socket & readiness fixes
!3671 gio/tests: Add test generated txt as the resources test dependency
!3672 glib-private: Check for LSAN support at runtime when controlling it
!3674 gtask: Add g_task_return_prefixed_error()
!3677 Make GQuark register intentional leaks
!3678 gsignalgroup: Avoid function call with side effect in g_return_*
macro
!3679 gmessages: fix dropping irrelevant log domains
!3682 tests: Fix dependency of test.gresource on test-generated.txt
!3683 glib: Disable dynamic asan loading on macOS
!3687 fix: about libproc.h and PROC_PIDLISTFD_SIZE
!3688 build: Fix the inclusion paths for GIR files in gi-docgen
!3689 meson: Add missing dependencies for utility files for gdbus-codegen
!3690 Switch to using gi-docgen for docs (batch 9)
!3695 gvalue: add "steal_string"
!3699 [th/prgname] use atomic pointers for g_prgname/g_application_name and
add g_set_prgname_once()
!3701 tests: Fix gio-tool.py test on macOS
!3702 glib.supp: Suppress the global_mime_dirs allocations
!3703 Port GIRepository to GTypeInstance and add introspection
!3704 girepository: Rename symbols to the GI namespace
!3707 girepository: Ignore set-but-not-used warnings with G_DISABLE_ASSERT
!3708 Fix various leaks in cmph-bdz-test and gutils
!3709 Switch to using gi-docgen for docs (batch 10)
!3710 gmessages: introduce g_log_writer_default_set_debug_domains()
!3711 ghmac: Add a boxed type for GHmac and fix introspection build
accordingly
!3712 Switch to using gi-docgen for docs (batch 11)
!3713 gfileutils: Fix g_file_get_contents() silent under-read of large
files when off_t is wider than size_t
!3714 xdgmime: Handle buggy type definitions with circular inheritance
!3715 goption: Fix a typo
!3716 tests: Improve build of cmph tests in girepository
!3717 tests: provide reason for disabling convert test under musl
!3721 gtestutils: Add g_test_trap_subprocess_with_envp() for testing envs
!3722 gdir, gstrvbuilder: Add refcounting support and a boxed type
!3723 gwin32: Un-hide symbols when building GIR
!3726 tests: Fix fileutils build on FreeBSD and macOS
!3731 tests: Fix string test failure on BSDs
!3732 gspawn: Stop spewing debug messages
!3733 ci: Make the Alpine CI name more consistent
!3734 gdatetime: Disable ERA support on platforms which don’t support this
!3735 ci: Fix printing info message at end of run-style-check-diff.sh
!3736 build: Rename -Dgtk_doc option to -Ddocumentation and fix some
g-ir-scanner warnings
!3739 Documentation only: Added clarification about GWeakNotify and removed
ambiguous text
!3741 hash: Explicitly annotate key in iter_next as nullable
!3743 ci: Install correct version of Meson on Alpine CI image
!3745 tests: Assert there no errors first in gdbus-test-codegen
!3751 Fix generated RST anchors for methods, signals and properties
!3752 build: Make packaging module required
!3753 gobject_gdb.py: Do not break bt on optimized build
!3755 tests: Use textwrap.dedent to indent expected strings pleasingly
!3757 ci: Re-add explicit Meson version to Alpine CI image
!3758 docs: Add a section on version checking macros
!3760 girepository: Various API cleanups
!3761 gerror: Fix an old allow-none annotation
!3762 [th/notify-queue] some optimization around
g_object_freeze_notify()/g_object_thaw_notify()
!3763 girepository: Drop libgio dependency from gdump.c
!3764 gsignal: fix reference to signals documentation page
!3765 gapplication: Fix minor typo in docs
!3767 girepository: Port documentation to gi-docgen and update
!3768 ci: Build docs artifacts for deployment to docs.gtk.org
!3770 GDateTime: Add usec precision API for unix time
!3771 gtask: Add g_task_return_new_error_literal()
!3772 gobject: Make GLib-2.0 gir build depend on GObject dependency
!3773 girepository: Return enumerated versions and search paths as a GStrv
!3776 glocalvfs: Remove unnecessary and buggy code
!3777 Fix detecting size_t size when -Wmissing-prototypes is in CFLAGS
!3779 gtypemodule: Add assertions in finalize()
!3782 docs: fix a typo
!3786 girepository: Re-number GIR file from 2.0 to 3.0
!3787 docs: Install the gi-docgen docs
Translation updates:
Catalan (Jordi Mas i Hernandez)
Chinese (China) (Boyuan Yang)
Czech (Daniel Rusek)
Esperanto (Kristjan SCHMIDT)
French (Alexandre Franke)
Italian (Milo Casagrande)
Latvian (Rūdolfs Mazurs)
Portuguese (Brazil) (Rafael Fontenelle)
Romanian (Florentina Mușat)
Russian (Artur S0)
Slovenian (Matej Urbančič)
Spanish (Daniel Mustieles)
Turkish (Sabri Ünal)
Ukrainian (Yuri Chornoivan)
2.78.4
Bugs fixed:
!3754 Backport !3751 “Fix generated RST anchors for methods, signals and
properties” to glib-2-78
!3756 docs/reference: depend on a native gtk-doc
!3759 Backport !3753 “gobject_gdb.py: Do not break bt on optimized build”
to glib-2-78
!3766 Backport !3750 “gregex: clean up usage of _GRegex.jit_status” to
glib-2-78
2.78.3
Fix a crash-causing regression in xdgmime (#3191, work by Philip Withnall)
Bugs fixed:
#3191 Crash in __gio_xdg_cache_mime_type_subclass (Philip Withnall)
!3747 Backport !3742 “xdgmime: Update to upstream commit c2c814d4051f232”
to glib-2-78
2.78.2
Bugs fixed:
#3156 check for #ifdef PTRACE_O_EXITKILL will always fail since it isn't a
macro (Alessandro Bono)
#3157 gsubprocess build-time test intermittently timing out since 2.78.1
(Simon McVittie)
!3673 Backport !3669 “meson: Improve PTRACE_O_EXITKILL presence check” to
glib-2-78
!3680 Backport !3677 “Make GQuark register intentional leaks” to glib-2-78
!3681 Backport 3678 “gsignalgroup: Avoid function call with side effect in
g_return_* macro” to glib-2-78
!3686 Backport !3685 “tests: Don't assume that sh optimizes simple commands
into exec” to glib-2-78
!3718 Backport !3714 “xdgmime: Handle buggy type definitions with circular
inheritance” to glib-2-78
!3727 Backport !3725 “collate: Don't segfault on bad input” to glib-2-78
Translation updates:
Ukrainian (Yuri Chornoivan)
2.78.1
Fix truncating files when g_file_set_contents_full() is called without
G_FILE_SET_CONTENTS_CONSISTENT (#3144, work by Philip Withnall)
Fix -Dlibelf=disabled on Linux (#3120, work by Philip Withnall)
Bugs fixed:
#3105 NetworkManager 1.44.0 crashes repeatedly with glib 2.78.0 (Philip
Withnall)
#3111 gsubprocess-testprog.c: build error with cygwin (sys/ptrace.h: No
such file or directory) (Philip Withnall)
#3116 gio clears modification time in microseconds when setting with
set_modification_date_time (Lukáš Tyrychtr)
#3120 Build of glib 2.78.0 ignores -Dlibelf=disabled (Philip Withnall)
#3128 glib-2.78.0 fails at gio/tests/gsubprocess.p/gsubprocess.c.o
#3130 Segfault when creating GIO GPropertyAction without properties
#3144 g_file_set_contents_full() doesn't truncate the file (without
G_FILE_SET_CONTENTS_CONSISTENT) (Philip Withnall)
!3576 guniprop.c: Avoid creating (temporarily) out-of-bounds pointers
!3579 Fixes for integer cast warnings when targeting CHERI
!3580 Fix test_find_program on FreeBSD
!3589 gconstructor.h: Ensure [c|d]tor prototypes are present for MSVC
(Chun-wei Fan)
!3594 Fix gutils-user-database test on macOS
!3596 Add value annotation to G_TYPE_FUNDAMENTAL_MAX
!3601 meson: Fix Windows build with PCRE2 as sibling subproject
!3604 Backport !3589 “gconstructor.h: Ensure [c|d]tor prototypes are
present for MSVC” to glib-2-78
!3608 Backport !3587 “glocalfileinfo: Preserve microseconds for
access/modify times” to glib-2-78
!3609 Backport !3607 “Make sure the GTask is freed on a graceful
disconnect” to glib-2-78 (Pavel Sobolev)
!3614 Backport !3582 “Buffer needs to be aligned correctly to receive
linux_dirent64.” to glib-2-78
!3616 Backport !3590 “gtestutils.h: Fix warning with -Wsign-conversion
caused by g_assert_cmpint” to glib-2-78
!3619 Backport !3617 “tests: Drop unnecessary include from gsubprocess-
testprog.c” to glib-2-78
!3622 Backport !3621 “wakeup: do single read when using eventfd()” to
glib-2-78
!3625 Backport !3624 “wakeup: Fix g_wakeup_acknowledge if signal comes in”
to glib-2-78
!3644 Backport !3633 “Use g_task_return in task threads” to glib-2-78
!3649 Backport !3648 “build: Fix -Dlibelf=disabled on Linux” to glib-2-78
!3659 Backport !3650 “gfileutils: Add a missing ftruncate() call when
writing files” to glib-2-78
Translation updates:
Catalan (Jordi Mas i Hernandez)
Chinese (China) (Boyuan Yang)
Czech (Daniel Rusek)
Esperanto (Kristjan SCHMIDT)
French (Alexandre Franke)
Georgian (Ekaterine Papava)
Italian (Milo Casagrande)
Latvian (Rūdolfs Mazurs)
Portuguese (Brazil) (Rafael Fontenelle)
Romanian (Daniel Șerbănescu)
Russian (Artur S0)
Slovenian (Matej Urbančič)
Spanish (Daniel Mustieles)
Turkish (Sabri Ünal)
2.78.0
Bugs fixed:
#3095 Error handling of invalid GKeyFile string escape sequences changed
in GLib 2.77.3 (Philip Withnall)
!3559 gdb: Workaround optimized out quark_seq_id
!3561 meson: fix gnetworking.h install tag
!3562 gthread: Annotate g_thread_exit() with G_NORETURN
!3564 Fix gutils-user-database unit test
Translation updates:
Basque (Asier Sarasua Garmendia)
Czech (Vojtěch Perník)
Danish (Alan Mortensen)
English (United Kingdom) (Bruce Cowan)
Galician (Fran Dieguez)
Georgian (Ekaterine Papava)
German (Philipp Kiemle, Jürgen Benvenuti)
Hebrew (Yosef Or Boczko)
Hungarian (Balázs Úr)
Indonesian (Andika Triwidada)
Korean (Changwoo Ryu)
Lithuanian (Aurimas Černius)
Persian (Danial Behzadi)
Polish (Piotr Drąg)
Swedish (Anders Jonsson)
Turkish (Emin Tufan Çetin)
Ukrainian (Yuri Chornoivan)
2.77.3
Bugs fixed:
#2575 GSettings schemas default value translations don't work when using
l10n=time (Michael Catanzaro)
#3032 gdbus-codegen eats indentation in RST in XML comments (André)
#3051 g_dbus_connection_export_menu_model() is not thread_safe
#3061 Possible SEGV (null pointer deref) in distribute_method_call()
(Philip Withnall)
#3083 arg_data in GOptionEntry is not a list (Philip Withnall)
#3090 Possible SEGV (null pointer deref) in _g_resource_file_new() (Philip
Withnall)
!3459 glib-unix: Clean up use of O_NONBLOCK
!3503 interim solution for macOS CI
!3519 meson: warn if -mms-bitfields is necessary
!3526 gnetworkaddress: use reentrant getservbyname_r() if available
!3527 tests: Use g_assert_*() rather than g_assert() in tree tests
!3528 gio-tool-info: Move translator comments so they’re visible
!3530 gregex: set default max stack size for PCRE2 JIT compiler to 512KiB
!3532 tests: Disable use of ptrace() in tests on BSD and macOS
!3533 ci: Only run pages CI job on scheduled job runs
!3534 ci: Further fix to pages CI job
!3535 Use 'meson setup' to configure
!3538 glib-unix: Accept O_CLOEXEC as well as FD_CLOEXEC in
g_unix_open_pipe()
!3540 gio: Add gresource.dtd
!3541 gtestutils: Mention not ignoring SIGCHLD in g_test_trap_subprocess()
docs
!3542 [th/gchildwatch-fail-message] gmain: improve g_warning() for failure
in g_child_watch_dispatch()
!3543 [th/use-localtime-r] use localtime_r() in
g_log_writer_format_fields()
!3545 gregex: if JIT stack limit is reached, fall back to interpretive
matching
!3547 glib/gfileutils.c: use 64 bits for value in get_tmp_file()
!3550 glib/tests/asyncqueue.c: skip test_async_queue_timed in 2038 or later
!3553 Generate missing docs for out arguments
!3555 gkeyfile: Fix overwriting of GError
Translation updates:
Basque (Asier Sarasua Garmendia)
Kazakh (Baurzhan Muftakhidinov)
Panjabi (Amn Alam)
Persian (Danial Behzadi)
Swedish (Anders Jonsson)
2.77.2
Bugs fixed:
#3071 g_test_trap_subprocess and g_test_subprocess broken in 2.77.1 (Jonas
Ådahl)
!3432 ci: Don’t run pipeline after merging a MR
!3520 Fix typos
!3521 GTree: Handle node counter overflow and return it as an unsigned
value
!3523 gspawn, gdataset: Restore nullable callback functions
Translation updates:
Chinese (China) (Luming Zh)
Galician (Fran Dieguez)
Indonesian (Kukuh Syafaat)
Polish (Piotr Drąg)
Portuguese (Hugo Carvalho)
Russian (Artur So)
Spanish (Daniel Mustieles)
Turkish (Sabri Ünal)
2.77.1
Fix some regressions with GKeyFile comment handling (#3047, work by Gaël Bonithon)
Improve handling of query and fragment components in file: URIs (#3050, work by
Lukáš Tyrychtr)
Bugs fixed:
#473 systemtap probes for gvariant (Allison Karlitskaya)
#623 g_type_query() doesn't work for dynamic types (Philip Withnall)
#931 Optimise GPrivate by removing one malloc (Allison Karlitskaya)
#2929 gio: Failing build due to race generating glib/gversionmacros.h (Eric
van Gyzen)
#3045 2.77.0: gio pkg-config test has incorrect install location for gio-
querymodules & glib-compile-schemas (Philip Withnall)
#3047 2.77.0 changes formatting of keyfiles (Gaël Bonithon)
#3048 Forcing fallback for libintl does not work (Brendan Shanks)
#3050 g_file_new_for_uri() handles query strings incorrectly ("?") (Lukáš
Tyrychtr)
#3054 Fedora installer (anaconda) crashes early with glib 2.77.0 due to
"Attempt to unlock mutex that was not locked", when it runs
hwclock and changes the system time (Thomas Haller, Philip Withnall)
!3287 Audit and fix incorrect use of (closure) in glib
!3461 gfileinfo: add file_path methods for language bindings
!3485 docs: Expand supported platforms documentation a little
!3494 ci: Manually fetch submodules for style-check CI jobs
!3495 gdbus-codegen: Error on invalid dbus types
!3496 garray: Fix typo in doc comment of g_ptr_array_sort_with_data
!3499 strfuncs: Add missing ownership annotations for returned string
vectors
!3504 Revert "build/gmodule-2.0.pc: Move compiler flags from Libs to
Cflags"
!3505 meson: help gobject-introspection locate source and build dirs
!3509 build-sys: drop -mms-bitfields GCC flag
!3510 testutils: Use prctl PR_SET_DUMPABLE to silence core dumps on Linux
!3514 Revert "build-sys: drop -mms-bitfields GCC flag"
!3515 gnetworkmonitor: Expand guidelines for metered data use
!3517 tests: Add some more tests for g_type_query()
!3518 m4macros: drop unused m4 files
Translation updates:
Georgian (Ekaterine Papava)
Hebrew (Yosef Or Boczko)
Hungarian (Balázs Úr)
Persian (Danial Behzadi)
Slovenian (Matej Urbančič)
Ukrainian (Yuri Chornoivan)
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/glib | 48 ++++++++++++++++++++++++++++++------
lfs/glib | 10 ++++----
make.sh | 9 ++++---
3 files changed, 51 insertions(+), 16 deletions(-)
diff --git a/config/rootfiles/common/glib b/config/rootfiles/common/glib
index 4481c2c7e..02f0ba74c 100644
--- a/config/rootfiles/common/glib
+++ b/config/rootfiles/common/glib
@@ -181,6 +181,33 @@ usr/include/glib-2.0/gio/gdebugcontroller.h
#usr/include/glib-2.0/gio/gvolumemonitor.h
#usr/include/glib-2.0/gio/gzlibcompressor.h
#usr/include/glib-2.0/gio/gzlibdecompressor.h
+#usr/include/glib-2.0/girepository
+#usr/include/glib-2.0/girepository/gi-visibility.h
+#usr/include/glib-2.0/girepository/giarginfo.h
+#usr/include/glib-2.0/girepository/gibaseinfo.h
+#usr/include/glib-2.0/girepository/giboxedinfo.h
+#usr/include/glib-2.0/girepository/gicallableinfo.h
+#usr/include/glib-2.0/girepository/gicallbackinfo.h
+#usr/include/glib-2.0/girepository/giconstantinfo.h
+#usr/include/glib-2.0/girepository/gienuminfo.h
+#usr/include/glib-2.0/girepository/gifieldinfo.h
+#usr/include/glib-2.0/girepository/giflagsinfo.h
+#usr/include/glib-2.0/girepository/gifunctioninfo.h
+#usr/include/glib-2.0/girepository/giinterfaceinfo.h
+#usr/include/glib-2.0/girepository/giobjectinfo.h
+#usr/include/glib-2.0/girepository/gipropertyinfo.h
+#usr/include/glib-2.0/girepository/giregisteredtypeinfo.h
+#usr/include/glib-2.0/girepository/girepository.h
+#usr/include/glib-2.0/girepository/girffi.h
+#usr/include/glib-2.0/girepository/gisignalinfo.h
+#usr/include/glib-2.0/girepository/gistructinfo.h
+#usr/include/glib-2.0/girepository/gitypeinfo.h
+#usr/include/glib-2.0/girepository/gitypelib.h
+#usr/include/glib-2.0/girepository/gitypes.h
+#usr/include/glib-2.0/girepository/giunioninfo.h
+#usr/include/glib-2.0/girepository/giunresolvedinfo.h
+#usr/include/glib-2.0/girepository/givalueinfo.h
+#usr/include/glib-2.0/girepository/givfuncinfo.h
#usr/include/glib-2.0/glib
#usr/include/glib-2.0/glib-object.h
#usr/include/glib-2.0/glib-unix.h
@@ -308,21 +335,25 @@ usr/include/glib-2.0/gio/gdebugcontroller.h
#usr/lib/glib-2.0/include/glibconfig.h
#usr/lib/libgio-2.0.so
usr/lib/libgio-2.0.so.0
-usr/lib/libgio-2.0.so.0.7700.0
+usr/lib/libgio-2.0.so.0.7901.0
+#usr/lib/libgirepository-2.0.so
+usr/lib/libgirepository-2.0.so.0
+usr/lib/libgirepository-2.0.so.0.7901.0
#usr/lib/libglib-2.0.so
usr/lib/libglib-2.0.so.0
-usr/lib/libglib-2.0.so.0.7700.0
+usr/lib/libglib-2.0.so.0.7901.0
#usr/lib/libgmodule-2.0.so
usr/lib/libgmodule-2.0.so.0
-usr/lib/libgmodule-2.0.so.0.7700.0
+usr/lib/libgmodule-2.0.so.0.7901.0
#usr/lib/libgobject-2.0.so
usr/lib/libgobject-2.0.so.0
-usr/lib/libgobject-2.0.so.0.7700.0
+usr/lib/libgobject-2.0.so.0.7901.0
#usr/lib/libgthread-2.0.so
usr/lib/libgthread-2.0.so.0
-usr/lib/libgthread-2.0.so.0.7700.0
+usr/lib/libgthread-2.0.so.0.7901.0
#usr/lib/pkgconfig/gio-2.0.pc
#usr/lib/pkgconfig/gio-unix-2.0.pc
+#usr/lib/pkgconfig/girepository-2.0.pc
#usr/lib/pkgconfig/glib-2.0.pc
#usr/lib/pkgconfig/gmodule-2.0.pc
#usr/lib/pkgconfig/gmodule-export-2.0.pc
@@ -342,8 +373,8 @@ usr/lib/libgthread-2.0.so.0.7700.0
#usr/share/gdb/auto-load
#usr/share/gdb/auto-load/usr
#usr/share/gdb/auto-load/usr/lib
-#usr/share/gdb/auto-load/usr/lib/libglib-2.0.so.0.7700.0-gdb.py
-#usr/share/gdb/auto-load/usr/lib/libgobject-2.0.so.0.7700.0-gdb.py
+#usr/share/gdb/auto-load/usr/lib/libglib-2.0.so.0.7901.0-gdb.py
+#usr/share/gdb/auto-load/usr/lib/libgobject-2.0.so.0.7901.0-gdb.py
#usr/share/gettext/its
#usr/share/gettext/its/gschema.its
#usr/share/gettext/its/gschema.loc
@@ -359,6 +390,8 @@ usr/lib/libgthread-2.0.so.0.7700.0
#usr/share/glib-2.0/codegen/dbustypes.py
#usr/share/glib-2.0/codegen/parser.py
#usr/share/glib-2.0/codegen/utils.py
+#usr/share/glib-2.0/dtds
+#usr/share/glib-2.0/dtds/gresource.dtd
#usr/share/glib-2.0/gdb
#usr/share/glib-2.0/gdb/glib_gdb.py
#usr/share/glib-2.0/gdb/gobject_gdb.py
@@ -571,4 +604,3 @@ usr/lib/libgthread-2.0.so.0.7700.0
#usr/share/locale/zh_HK/LC_MESSAGES
#usr/share/locale/zh_HK/LC_MESSAGES/glib20.mo
#usr/share/locale/zh_TW/LC_MESSAGES/glib20.mo
-
diff --git a/lfs/glib b/lfs/glib
index 20e95b4ab..a7b30443a 100644
--- a/lfs/glib
+++ b/lfs/glib
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2023 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2024 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 = 2.77.0
+VER = 2.79.1
THISAPP = glib-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = da610dfd6a9a95de0bcd92a939dc7ae27a2f2cfcd9c6df803948e43de90473b17d84b1463c5173b0b87ddef132d8784de5ad2df2482cd4a97625324d5adf65b7
+$(DL_FILE)_BLAKE2 = 04398f3bb816b174ca86d9329aab9e477977a9f84c8ee77917179f00527d11b060af8467c7748bdbd5a8a25ec8d8fbc5866d912a8cc1a020118e57789d55a9e6
install : $(TARGET)
@@ -72,8 +72,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
$(UPDATE_AUTOMAKE)
cd $(DIR_APP) && meson --prefix=/usr \
- --sysconfdir=/etc \
- builddir/
+ --sysconfdir=/etc \
+ builddir/
cd $(DIR_APP) && ninja -C builddir/ $(MAKETUNING)
cd $(DIR_APP) && ninja -C builddir/ install
@rm -rf $(DIR_APP)
diff --git a/make.sh b/make.sh
index 546cdc0af..40627f163 100755
--- a/make.sh
+++ b/make.sh
@@ -1150,6 +1150,9 @@ buildipfire() {
lfsmake2 dracut
lfsmake2 lvm2
lfsmake2 multipath-tools
+ lfsmake2 python3-toml
+ lfsmake2 python3-pyproject2setuppy
+ lfsmake2 python3-packaging
lfsmake2 glib
lfsmake2 libgudev
lfsmake2 libgpg-error
@@ -1487,8 +1490,6 @@ buildipfire() {
lfsmake2 elinks
lfsmake2 igmpproxy
lfsmake2 opus
- lfsmake2 python3-toml
- lfsmake2 python3-pyproject2setuppy
lfsmake2 python3-pyparsing
lfsmake2 spice-protocol
lfsmake2 spice
@@ -1572,7 +1573,6 @@ buildipfire() {
lfsmake2 python3-install
lfsmake2 python3-urllib3
lfsmake2 python3-flit
- lfsmake2 python3-packaging
lfsmake2 python3-typing-extensions
lfsmake2 python3-semantic-version
lfsmake2 python3-setuptools-scm
@@ -1656,6 +1656,9 @@ buildipfire() {
lfsmake2 dnsdist
lfsmake2 bird
lfsmake2 libyang
+ lfsmake2 abseil-cpp
+ lfsmake2 protobuf
+ lfsmake2 protobuf-c
lfsmake2 frr
lfsmake2 dmidecode
lfsmake2 mcelog
--
2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] libpng: Update to version 1.6.41
2024-01-30 22:13 [PATCH] acl: Update to version 2.3.2 Adolf Belka
2024-01-30 22:13 ` [PATCH] bash: Update to include patches 22 to 26 Adolf Belka
2024-01-30 22:13 ` [PATCH] glib: Update to version 2.79.1 Adolf Belka
@ 2024-01-30 22:13 ` Adolf Belka
2024-01-30 22:13 ` [PATCH] openssl: Update to version 3.2.1 Adolf Belka
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Adolf Belka @ 2024-01-30 22:13 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 4100 bytes --]
- Update from 1.6.39 to 1.6.41
- Update of rootfile
- Changelog
1.6.41
Added SIMD-optimized code for the Loongarch LSX hardware.
(Contributed by GuXiWei, JinBo and ZhangLixia)
Fixed the run-time discovery of MIPS MSA hardware.
(Contributed by Sui Jingfeng)
Fixed an off-by-one error in the function `png_do_check_palette_indexes`,
which failed to recognize errors that might have existed in the first
column of a broken palette-encoded image. This was a benign regression
accidentally introduced in libpng-1.6.33. No pixel was harmed.
(Contributed by Adam Richter; reviewed by John Bowler)
Fixed, improved and modernized the contrib/pngminus programs, i.e.,
png2pnm.c and pnm2png.c
Removed old and peculiar portability hacks that were meant to silence
warnings issued by gcc version 7.1 alone.
(Contributed by John Bowler)
Fixed and modernized the CMake file, and raised the minimum required
CMake version from 3.1 to 3.6.
(Contributed by Clinton Ingram, Timothy Lyanguzov, Tyler Kropp, et al.)
Allowed the configure script to disable the building of auxiliary tools
and tests, thus catching up with the CMake file.
(Contributed by Carlo Bramini)
Fixed a build issue on Mac.
(Contributed by Zixu Wang)
Moved the Autoconf macro files to scripts/autoconf.
Moved the CMake files (except for the main CMakeLists.txt) to
scripts/cmake and moved the list of their contributing authors to
scripts/cmake/AUTHORS.md
Updated the CI configurations and scripts.
Relicensed the CI scripts to the MIT License.
Improved the test coverage.
(Contributed by John Bowler)
1.6.40
Fixed the eXIf chunk multiplicity checks.
Fixed a memory leak in pCAL processing.
Corrected the validity report about tRNS inside png_get_valid().
Fixed various build issues on *BSD, Mac and Windows.
Updated the configurations and the scripts for continuous integration.
Cleaned up the code, the build scripts, and the documentation.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/libpng | 2 +-
lfs/libpng | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/config/rootfiles/common/libpng b/config/rootfiles/common/libpng
index 2b1f250d2..687aa535c 100644
--- a/config/rootfiles/common/libpng
+++ b/config/rootfiles/common/libpng
@@ -16,7 +16,7 @@ usr/lib/libpng.so
#usr/lib/libpng16.la
usr/lib/libpng16.so
usr/lib/libpng16.so.16
-usr/lib/libpng16.so.16.39.0
+usr/lib/libpng16.so.16.41.0
#usr/lib/pkgconfig/libpng.pc
#usr/lib/pkgconfig/libpng16.pc
#usr/share/man/man3/libpng.3
diff --git a/lfs/libpng b/lfs/libpng
index f9e0ba7f4..3a0704e59 100644
--- a/lfs/libpng
+++ b/lfs/libpng
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2020 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2024 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 = 1.6.39
+VER = 1.6.41
THISAPP = libpng-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = f0a2e643e921587334349f48758e61e69b4708ebc36575567767087878d262d134eeeb98fea7f0b6ff1493ea954910ca1608b10fea57196aad770eb807a9006e
+$(DL_FILE)_BLAKE2 = 43d8d1c563d9df46b663f706dca9563e31e6e47a2809a77a5d059de8cfa348721054df724d08ac24ef4717ffc101989941127df2d026c9537532375d9b432b68
install : $(TARGET)
--
2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] openssl: Update to version 3.2.1
2024-01-30 22:13 [PATCH] acl: Update to version 2.3.2 Adolf Belka
` (2 preceding siblings ...)
2024-01-30 22:13 ` [PATCH] libpng: Update to version 1.6.41 Adolf Belka
@ 2024-01-30 22:13 ` Adolf Belka
2024-01-30 22:13 ` [PATCH] xz: Update to version 5.4.6 Adolf Belka
2024-01-30 22:13 ` [PATCH] zlib: Update to version 1.3.1 Adolf Belka
5 siblings, 0 replies; 7+ messages in thread
From: Adolf Belka @ 2024-01-30 22:13 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 11202 bytes --]
- Update from version 3.2.0 to 3.2.1
- Update of rootfile
- Changelog
3.2.1
This is a security patch release. The most severe CVE fixed in this
release is Low.
This release incorporates the following bug fixes and mitigations:
* Fixed PKCS12 Decoding crashes
([CVE-2024-0727])
* Fixed excessive time spent checking invalid RSA public keys
([CVE-2023-6237])
* Fixed POLY1305 MAC implementation corrupting vector registers on PowerPC
CPUs which support PowerISA 2.07
([CVE-2023-6129])
* Fixed excessive time spent in DH check / generation with large Q parameter
value
[(CVE-2023-5678)]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/openssl | 69 +++++++++++++++++++++++++++++++++
lfs/openssl | 4 +-
2 files changed, 71 insertions(+), 2 deletions(-)
diff --git a/config/rootfiles/common/openssl b/config/rootfiles/common/openssl
index 118b15e85..a3664a521 100644
--- a/config/rootfiles/common/openssl
+++ b/config/rootfiles/common/openssl
@@ -329,6 +329,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/doc/openssl/html/man3/CMS_get1_ReceiptRequest.html
#usr/share/doc/openssl/html/man3/CMS_sign.html
#usr/share/doc/openssl/html/man3/CMS_sign_receipt.html
+#usr/share/doc/openssl/html/man3/CMS_signed_get_attr.html
#usr/share/doc/openssl/html/man3/CMS_uncompress.html
#usr/share/doc/openssl/html/man3/CMS_verify.html
#usr/share/doc/openssl/html/man3/CMS_verify_receipt.html
@@ -431,6 +432,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/doc/openssl/html/man3/EVP_PKEY_encapsulate.html
#usr/share/doc/openssl/html/man3/EVP_PKEY_encrypt.html
#usr/share/doc/openssl/html/man3/EVP_PKEY_fromdata.html
+#usr/share/doc/openssl/html/man3/EVP_PKEY_get_attr.html
#usr/share/doc/openssl/html/man3/EVP_PKEY_get_default_digest_nid.html
#usr/share/doc/openssl/html/man3/EVP_PKEY_get_field_type.html
#usr/share/doc/openssl/html/man3/EVP_PKEY_get_group_name.html
@@ -812,6 +814,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/doc/openssl/html/man3/X509V3_get_d2i.html
#usr/share/doc/openssl/html/man3/X509V3_set_ctx.html
#usr/share/doc/openssl/html/man3/X509_ALGOR_dup.html
+#usr/share/doc/openssl/html/man3/X509_ATTRIBUTE.html
#usr/share/doc/openssl/html/man3/X509_CRL_get0_by_serial.html
#usr/share/doc/openssl/html/man3/X509_EXTENSION_set_object.html
#usr/share/doc/openssl/html/man3/X509_LOOKUP.html
@@ -823,6 +826,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/doc/openssl/html/man3/X509_NAME_get_index_by_NID.html
#usr/share/doc/openssl/html/man3/X509_NAME_print_ex.html
#usr/share/doc/openssl/html/man3/X509_PUBKEY_new.html
+#usr/share/doc/openssl/html/man3/X509_REQ_get_attr.html
#usr/share/doc/openssl/html/man3/X509_REQ_get_extensions.html
#usr/share/doc/openssl/html/man3/X509_SIG_get0.html
#usr/share/doc/openssl/html/man3/X509_STORE_CTX_get_by_subject.html
@@ -1812,7 +1816,27 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/CMS_sign.3ossl
#usr/share/man/man3/CMS_sign_ex.3ossl
#usr/share/man/man3/CMS_sign_receipt.3ossl
+#usr/share/man/man3/CMS_signed_add1_attr.3ossl
+#usr/share/man/man3/CMS_signed_add1_attr_by_NID.3ossl
+#usr/share/man/man3/CMS_signed_add1_attr_by_OBJ.3ossl
+#usr/share/man/man3/CMS_signed_add1_attr_by_txt.3ossl
+#usr/share/man/man3/CMS_signed_delete_attr.3ossl
+#usr/share/man/man3/CMS_signed_get0_data_by_OBJ.3ossl
+#usr/share/man/man3/CMS_signed_get_attr.3ossl
+#usr/share/man/man3/CMS_signed_get_attr_by_NID.3ossl
+#usr/share/man/man3/CMS_signed_get_attr_by_OBJ.3ossl
+#usr/share/man/man3/CMS_signed_get_attr_count.3ossl
#usr/share/man/man3/CMS_uncompress.3ossl
+#usr/share/man/man3/CMS_unsigned_add1_attr.3ossl
+#usr/share/man/man3/CMS_unsigned_add1_attr_by_NID.3ossl
+#usr/share/man/man3/CMS_unsigned_add1_attr_by_OBJ.3ossl
+#usr/share/man/man3/CMS_unsigned_add1_attr_by_txt.3ossl
+#usr/share/man/man3/CMS_unsigned_delete_attr.3ossl
+#usr/share/man/man3/CMS_unsigned_get0_data_by_OBJ.3ossl
+#usr/share/man/man3/CMS_unsigned_get_attr.3ossl
+#usr/share/man/man3/CMS_unsigned_get_attr_by_NID.3ossl
+#usr/share/man/man3/CMS_unsigned_get_attr_by_OBJ.3ossl
+#usr/share/man/man3/CMS_unsigned_get_attr_count.3ossl
#usr/share/man/man3/CMS_verify.3ossl
#usr/share/man/man3/CMS_verify_receipt.3ossl
#usr/share/man/man3/COMP_CTX_free.3ossl
@@ -2881,6 +2905,10 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/EVP_PKEY_CTX_settable_params.3ossl
#usr/share/man/man3/EVP_PKEY_METHOD.3ossl
#usr/share/man/man3/EVP_PKEY_Q_keygen.3ossl
+#usr/share/man/man3/EVP_PKEY_add1_attr.3ossl
+#usr/share/man/man3/EVP_PKEY_add1_attr_by_NID.3ossl
+#usr/share/man/man3/EVP_PKEY_add1_attr_by_OBJ.3ossl
+#usr/share/man/man3/EVP_PKEY_add1_attr_by_txt.3ossl
#usr/share/man/man3/EVP_PKEY_asn1_add0.3ossl
#usr/share/man/man3/EVP_PKEY_asn1_add_alias.3ossl
#usr/share/man/man3/EVP_PKEY_asn1_copy.3ossl
@@ -2926,6 +2954,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/EVP_PKEY_decrypt.3ossl
#usr/share/man/man3/EVP_PKEY_decrypt_init.3ossl
#usr/share/man/man3/EVP_PKEY_decrypt_init_ex.3ossl
+#usr/share/man/man3/EVP_PKEY_delete_attr.3ossl
#usr/share/man/man3/EVP_PKEY_derive.3ossl
#usr/share/man/man3/EVP_PKEY_derive_init.3ossl
#usr/share/man/man3/EVP_PKEY_derive_init_ex.3ossl
@@ -2965,6 +2994,10 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/EVP_PKEY_get1_RSA.3ossl
#usr/share/man/man3/EVP_PKEY_get1_encoded_public_key.3ossl
#usr/share/man/man3/EVP_PKEY_get1_tls_encodedpoint.3ossl
+#usr/share/man/man3/EVP_PKEY_get_attr.3ossl
+#usr/share/man/man3/EVP_PKEY_get_attr_by_NID.3ossl
+#usr/share/man/man3/EVP_PKEY_get_attr_by_OBJ.3ossl
+#usr/share/man/man3/EVP_PKEY_get_attr_count.3ossl
#usr/share/man/man3/EVP_PKEY_get_base_id.3ossl
#usr/share/man/man3/EVP_PKEY_get_bits.3ossl
#usr/share/man/man3/EVP_PKEY_get_bn_param.3ossl
@@ -3558,13 +3591,16 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/OPENSSL_LH_error.3ossl
#usr/share/man/man3/OPENSSL_LH_flush.3ossl
#usr/share/man/man3/OPENSSL_LH_free.3ossl
+#usr/share/man/man3/OPENSSL_LH_get_down_load.3ossl
#usr/share/man/man3/OPENSSL_LH_insert.3ossl
#usr/share/man/man3/OPENSSL_LH_new.3ossl
#usr/share/man/man3/OPENSSL_LH_node_stats.3ossl
#usr/share/man/man3/OPENSSL_LH_node_stats_bio.3ossl
#usr/share/man/man3/OPENSSL_LH_node_usage_stats.3ossl
#usr/share/man/man3/OPENSSL_LH_node_usage_stats_bio.3ossl
+#usr/share/man/man3/OPENSSL_LH_num_items.3ossl
#usr/share/man/man3/OPENSSL_LH_retrieve.3ossl
+#usr/share/man/man3/OPENSSL_LH_set_down_load.3ossl
#usr/share/man/man3/OPENSSL_LH_stats.3ossl
#usr/share/man/man3/OPENSSL_LH_stats_bio.3ossl
#usr/share/man/man3/OPENSSL_LINE.3ossl
@@ -5669,9 +5705,20 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/X509_ALGOR_new.3ossl
#usr/share/man/man3/X509_ALGOR_set0.3ossl
#usr/share/man/man3/X509_ALGOR_set_md.3ossl
+#usr/share/man/man3/X509_ATTRIBUTE.3ossl
+#usr/share/man/man3/X509_ATTRIBUTE_count.3ossl
+#usr/share/man/man3/X509_ATTRIBUTE_create.3ossl
+#usr/share/man/man3/X509_ATTRIBUTE_create_by_NID.3ossl
+#usr/share/man/man3/X509_ATTRIBUTE_create_by_OBJ.3ossl
+#usr/share/man/man3/X509_ATTRIBUTE_create_by_txt.3ossl
#usr/share/man/man3/X509_ATTRIBUTE_dup.3ossl
#usr/share/man/man3/X509_ATTRIBUTE_free.3ossl
+#usr/share/man/man3/X509_ATTRIBUTE_get0_data.3ossl
+#usr/share/man/man3/X509_ATTRIBUTE_get0_object.3ossl
+#usr/share/man/man3/X509_ATTRIBUTE_get0_type.3ossl
#usr/share/man/man3/X509_ATTRIBUTE_new.3ossl
+#usr/share/man/man3/X509_ATTRIBUTE_set1_data.3ossl
+#usr/share/man/man3/X509_ATTRIBUTE_set1_object.3ossl
#usr/share/man/man3/X509_CERT_AUX_free.3ossl
#usr/share/man/man3/X509_CERT_AUX_new.3ossl
#usr/share/man/man3/X509_CINF_free.3ossl
@@ -5826,9 +5873,14 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/X509_PUBKEY_set0_public_key.3ossl
#usr/share/man/man3/X509_REQ_INFO_free.3ossl
#usr/share/man/man3/X509_REQ_INFO_new.3ossl
+#usr/share/man/man3/X509_REQ_add1_attr.3ossl
+#usr/share/man/man3/X509_REQ_add1_attr_by_NID.3ossl
+#usr/share/man/man3/X509_REQ_add1_attr_by_OBJ.3ossl
+#usr/share/man/man3/X509_REQ_add1_attr_by_txt.3ossl
#usr/share/man/man3/X509_REQ_add_extensions.3ossl
#usr/share/man/man3/X509_REQ_add_extensions_nid.3ossl
#usr/share/man/man3/X509_REQ_check_private_key.3ossl
+#usr/share/man/man3/X509_REQ_delete_attr.3ossl
#usr/share/man/man3/X509_REQ_digest.3ossl
#usr/share/man/man3/X509_REQ_dup.3ossl
#usr/share/man/man3/X509_REQ_free.3ossl
@@ -5836,6 +5888,10 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/X509_REQ_get0_pubkey.3ossl
#usr/share/man/man3/X509_REQ_get0_signature.3ossl
#usr/share/man/man3/X509_REQ_get_X509_PUBKEY.3ossl
+#usr/share/man/man3/X509_REQ_get_attr.3ossl
+#usr/share/man/man3/X509_REQ_get_attr_by_NID.3ossl
+#usr/share/man/man3/X509_REQ_get_attr_by_OBJ.3ossl
+#usr/share/man/man3/X509_REQ_get_attr_count.3ossl
#usr/share/man/man3/X509_REQ_get_extensions.3ossl
#usr/share/man/man3/X509_REQ_get_pubkey.3ossl
#usr/share/man/man3/X509_REQ_get_signature_nid.3ossl
@@ -6126,6 +6182,16 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/X509_verify.3ossl
#usr/share/man/man3/X509_verify_cert.3ossl
#usr/share/man/man3/X509_verify_cert_error_string.3ossl
+#usr/share/man/man3/X509at_add1_attr.3ossl
+#usr/share/man/man3/X509at_add1_attr_by_NID.3ossl
+#usr/share/man/man3/X509at_add1_attr_by_OBJ.3ossl
+#usr/share/man/man3/X509at_add1_attr_by_txt.3ossl
+#usr/share/man/man3/X509at_delete_attr.3ossl
+#usr/share/man/man3/X509at_get0_data_by_OBJ.3ossl
+#usr/share/man/man3/X509at_get_attr.3ossl
+#usr/share/man/man3/X509at_get_attr_by_NID.3ossl
+#usr/share/man/man3/X509at_get_attr_by_OBJ.3ossl
+#usr/share/man/man3/X509at_get_attr_count.3ossl
#usr/share/man/man3/X509v3_add_ext.3ossl
#usr/share/man/man3/X509v3_delete_ext.3ossl
#usr/share/man/man3/X509v3_get_ext.3ossl
@@ -6598,9 +6664,12 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/lh_TYPE_error.3ossl
#usr/share/man/man3/lh_TYPE_flush.3ossl
#usr/share/man/man3/lh_TYPE_free.3ossl
+#usr/share/man/man3/lh_TYPE_get_down_load.3ossl
#usr/share/man/man3/lh_TYPE_insert.3ossl
#usr/share/man/man3/lh_TYPE_new.3ossl
+#usr/share/man/man3/lh_TYPE_num_items.3ossl
#usr/share/man/man3/lh_TYPE_retrieve.3ossl
+#usr/share/man/man3/lh_TYPE_set_down_load.3ossl
#usr/share/man/man3/o2i_SCT.3ossl
#usr/share/man/man3/o2i_SCT_LIST.3ossl
#usr/share/man/man3/pem_password_cb.3ossl
diff --git a/lfs/openssl b/lfs/openssl
index 2a9de717a..695035742 100644
--- a/lfs/openssl
+++ b/lfs/openssl
@@ -24,7 +24,7 @@
include Config
-VER = 3.2.0
+VER = 3.2.1
THISAPP = openssl-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -72,7 +72,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 776123929796d2eb0f3974bf6ee3a55df9187231632837576bf5ded7b5917f052683cdfc756693c1bee6fe1ffc7c3cb1ebcf833018d3caf51886f4f4e7a495f1
+$(DL_FILE)_BLAKE2 = 960222e0305166160e5ab000e29650b92063bf726551ee9ad46060166d99738d1e3a5b86fd28b14c8f4fb3a72f5aa70850defb87c02990acff3dbcbdac40b347
install : $(TARGET)
--
2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] xz: Update to version 5.4.6
2024-01-30 22:13 [PATCH] acl: Update to version 2.3.2 Adolf Belka
` (3 preceding siblings ...)
2024-01-30 22:13 ` [PATCH] openssl: Update to version 3.2.1 Adolf Belka
@ 2024-01-30 22:13 ` Adolf Belka
2024-01-30 22:13 ` [PATCH] zlib: Update to version 1.3.1 Adolf Belka
5 siblings, 0 replies; 7+ messages in thread
From: Adolf Belka @ 2024-01-30 22:13 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2804 bytes --]
- Update from version 5.4.5 to 5.4.6
- Update of rootfile
- Changelog
5.4.6
* Fixed a bug involving internal function pointers in liblzma not
being initialized to NULL. The bug can only be triggered if
lzma_filters_update() is called on a LZMA1 encoder, so it does
not affect xz or any application known to us that uses liblzma.
* xz:
- Fixed a regression introduced in 5.4.2 that caused encoding
in the raw format to unnecessarily fail if --suffix was not
used. For instance, the following command no longer reports
that --suffix must be used:
echo foo | xz --format=raw --lzma2 | wc -c
- Fixed an issue on MinGW-w64 builds that prevented reading
from or writing to non-terminal character devices like NUL.
* Added a new test.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/xz | 2 +-
lfs/xz | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/config/rootfiles/common/xz b/config/rootfiles/common/xz
index f3818a083..c38db650a 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.5
+usr/lib/liblzma.so.5.4.6
#usr/lib/pkgconfig/liblzma.pc
#usr/share/doc/xz
#usr/share/doc/xz/AUTHORS
diff --git a/lfs/xz b/lfs/xz
index 4be66e1b1..e0b905a22 100644
--- a/lfs/xz
+++ b/lfs/xz
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2023 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2024 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 = 5.4.5
+VER = 5.4.6
THISAPP = xz-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -45,7 +45,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 08d9afebd927ea5d155515a4c9eedda4d1a249f2b1ab6ada11f50e5b7a3c90b389b32378ab1c0872c7f4627de8dff37149d85e49f7f4d30614add37320ec4f3e
+$(DL_FILE)_BLAKE2 = d609590f1e9f13404988050e1bfdc623b996794b603cf2e39d2fd592be1967c97d8beaba9196eae4a0d448a432b1d7499986b7f669e736b65ec67590a04af9f7
install : $(TARGET)
--
2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] zlib: Update to version 1.3.1
2024-01-30 22:13 [PATCH] acl: Update to version 2.3.2 Adolf Belka
` (4 preceding siblings ...)
2024-01-30 22:13 ` [PATCH] xz: Update to version 5.4.6 Adolf Belka
@ 2024-01-30 22:13 ` Adolf Belka
5 siblings, 0 replies; 7+ messages in thread
From: Adolf Belka @ 2024-01-30 22:13 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2422 bytes --]
- Update from version 1.3 to 1.3.1
- Update of rootfile
- Changelog
1.3.1
- Reject overflows of zip header fields in minizip
- Fix bug in inflateSync() for data held in bit buffer
- Add LIT_MEM define to use more memory for a small deflate speedup
- Fix decision on the emission of Zip64 end records in minizip
- Add bounds checking to ERR_MSG() macro, used by zError()
- Neutralize zip file traversal attacks in miniunz
- Fix a bug in ZLIB_DEBUG compiles in check_match()
- Various portability and appearance improvements
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/zlib | 2 +-
lfs/zlib | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/config/rootfiles/common/zlib b/config/rootfiles/common/zlib
index 596b14641..ae2bd9e85 100644
--- a/config/rootfiles/common/zlib
+++ b/config/rootfiles/common/zlib
@@ -1,6 +1,6 @@
lib/libz.so
lib/libz.so.1
-lib/libz.so.1.3
+lib/libz.so.1.3.1
#usr/include/zconf.h
#usr/include/zlib.h
#usr/lib/libz.a
diff --git a/lfs/zlib b/lfs/zlib
index 914e1d855..d7c723914 100644
--- a/lfs/zlib
+++ b/lfs/zlib
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2023 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2024 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 = 1.3
+VER = 1.3.1
THISAPP = zlib-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -47,7 +47,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 5fe0f32339267348a313f23a21e9588bdb180b7415be303c85f5f169444d019e5f176ef7322f6e64297c360acc2a6041c50e2f66d1860e5c392d8970990f176a
+$(DL_FILE)_BLAKE2 = 42d109223801a493de6d52e7343403d7fc3234a6ca816425fe41ac9c18019b01b93841acd28a235e99f2256a6a17f93624e96b2ddb58d588c8190a6bedb82910
install : $(TARGET)
--
2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-01-30 22:13 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-30 22:13 [PATCH] acl: Update to version 2.3.2 Adolf Belka
2024-01-30 22:13 ` [PATCH] bash: Update to include patches 22 to 26 Adolf Belka
2024-01-30 22:13 ` [PATCH] glib: Update to version 2.79.1 Adolf Belka
2024-01-30 22:13 ` [PATCH] libpng: Update to version 1.6.41 Adolf Belka
2024-01-30 22:13 ` [PATCH] openssl: Update to version 3.2.1 Adolf Belka
2024-01-30 22:13 ` [PATCH] xz: Update to version 5.4.6 Adolf Belka
2024-01-30 22:13 ` [PATCH] zlib: Update to version 1.3.1 Adolf Belka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox