This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 3.x development tree".
The branch, master has been updated via c7cd601dacbf126856295e966fffc2b8520a46b7 (commit) via 717ebff950f907ae38380614f4c26641341a882a (commit) via 73edd0fb4f6fdb001028070cedd04ecaeeb6e4a7 (commit) from 5652c2fd3711c1de47ad1e754e7fd28929e21c16 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit c7cd601dacbf126856295e966fffc2b8520a46b7 Author: Adolf Belka adolf.belka@ipfire.org Date: Tue Dec 12 19:00:44 2023 +0100
json-c: Update to version 0.17-20230812
- IPFire-3.x - Update from version 0.16-20220414 to 0.17020230812 - Changelog 0.17 (up to commit 077661f, 2023-08-08) New features * json_patch: add first implementation only with patch application * Add --disable-static and --disable-dynamic options to the cmake-configure script. * Add -DBUILD_APPS=NO option to disable app build * Minimum cmake version is now 3.9 Significant changes and bug fixes * When serializing with JSON_C_TO_STRING_PRETTY set, keep the opening and closing curly or square braces on same line for empty objects or arrays. * Disable locale handling when targeting a uClibc system due to problems with its duplocale() function. * When parsing with JSON_TOKENER_STRICT set, integer overflow/underflow now result in a json_tokener_error_parse_number. Without that flag values are capped at INT64_MIN/UINT64_MAX. * Fix memory leak with emtpy strings in json_object_set_string * json_object_from_fd_ex: fail if file is too large (>=INT_MAX bytes) * Add back json_number_chars, but only because it's part of the public API. * Entirely drop mode bits from open(O_RDONLY) to avoid warnings on certain platforms. * Specify dependent libraries, including -lbsd, in a more consistent way so linking against a static json-c works better * Fix a variety of build problems and add & improve tests * Update RFC reference to https://www.rfc-editor.org/rfc/rfc8259
Signed-off-by: Adolf Belka adolf.belka@ipfire.org Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 717ebff950f907ae38380614f4c26641341a882a Author: Adolf Belka adolf.belka@ipfire.org Date: Tue Dec 12 18:21:58 2023 +0100
keyutils: Update to version 1.6.3
- IPFire-3.x - Update from version 1.6.1 to 1.6.3 - The old url and download url have not been updated for 4 years. Current updates are now done in the new git repository https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/ The two latest updates, 1.6.2 and 1.6.3 were both released in 2020 - Changelog is not available. All changes can be found by reviewing the commits in the new git repository.
Signed-off-by: Adolf Belka adolf.belka@ipfire.org Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 73edd0fb4f6fdb001028070cedd04ecaeeb6e4a7 Author: Adolf Belka adolf.belka@ipfire.org Date: Tue Dec 12 16:08:24 2023 +0100
less: Update to version 643
- IPFire-3.x - Update from version 608 to 643 - Changelog 643 Fix problem when a program piping into less reads from the tty, like sudo asking for password (github #368). Fix search modifier ^E after ^W. Fix bug using negated (^N) search (github #374). Fix bug setting colors with -D on Windows build (github #386). Fix reading special chars like PageDown on Windows (github #378). Fix mouse wheel scrolling on Windows (github #379). Fix erroneous EOF when terminal window size changes (github #372). Fix compile error with some definitions of ECHONL (github #395). Fix crash on Windows when writing logfile (github #405). Fix regression in exit code when stdin is /dev/null and output is a file (github #373). Add lesstest test suite to production release (github #344). Change lesstest output to conform with automake Simple Test Format (github #399). 633 Add LESSUTFCHARDEF environment variable (github #275). Add # command (github #330). Add ^S search modifier (github #196). Add --wordwrap option (github #113). Add --no-vbell option (github #304). Add --no-search-headers option (github #44). Add --modelines option (github #89). Add --intr option (github #224). Add --proc-backspace, --proc-tab and --proc-return options (github #335). Add --show-preproc-errors option (github #258). Add LESS_LINES and LESS_COLUMNS environment variables (github #84). Add LESS_DATA_DELAY environment variable (github #337). Allow empty "lines" field in --header option. Update Unicode tables. Improve ability of ^X to interrupt F command (github #49). Status column (-J) shows off-screen matches. Parenthesized sub-patterns in searches are colored with unique colors, if supported by the regular expression library (github #196). Don't allow opening a tty as file input unless -f is set (github #309). Don't require newline input after +&... option (github #339). Fix incorrect handling of some Private Use Unicode characters. Fix ANSI color bug when overstriking with colored chars (github #276). Fix compiler const warning (github #279). Fix signal race in iread (github #280). Fix reading procfs files on Linux (github #282). Fix --ignore-case with ctrl-R (no regex) search (github #300). Fix bug doing repeat search after setting & filter (github #299). Fix bug doing repeat search before non-repeat search. Fix crash with -R and certain line lengths (github #338). Fix input of Windows dead keys (github #352). Don't retain search options from a cancelled search (github #302). Don't call realpath on fake filenames like "-" (github #289). Implement lesstest test suite. Convert function parameter definitions from K&R to C89 (github #316).
Signed-off-by: Adolf Belka adolf.belka@ipfire.org Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: json-c/json-c.nm | 6 +++--- keyutils/keyutils.nm | 7 +++---- less/less.nm | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-)
Difference in files: diff --git a/json-c/json-c.nm b/json-c/json-c.nm index fcca69087..e61f3d875 100644 --- a/json-c/json-c.nm +++ b/json-c/json-c.nm @@ -4,8 +4,8 @@ ###############################################################################
name = json-c -version = 0.16 -reldate = 20220414 +version = 0.17 +reldate = 20230812 release = 1 thisapp = %{name}-%{version}-%{reldate}
@@ -21,7 +21,7 @@ description objects. end
-source_dl = https://github.com/json-c/json-c/archive/ +source_dl = https://github.com/json-c/json-c/archive/refs/tags/
build requires diff --git a/keyutils/keyutils.nm b/keyutils/keyutils.nm index 2fec320d1..1297bd4c4 100644 --- a/keyutils/keyutils.nm +++ b/keyutils/keyutils.nm @@ -4,11 +4,11 @@ ###############################################################################
name = keyutils -version = 1.6.1 +version = 1.6.3 release = 1
groups = System/Tools -url = http://people.redhat.com/~dhowells/keyutils/ +url = https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/ license = GPLv2+ and LGPLv2+ summary = Linux Key Management Utilities
@@ -18,8 +18,7 @@ description instantiated. end
-source_dl = http://people.redhat.com/~dhowells/keyutils/ -sources = %{thisapp}.tar.bz2 +source_dl = https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/snapsh...
build requires diff --git a/less/less.nm b/less/less.nm index 2f5e6992c..3efc1479a 100644 --- a/less/less.nm +++ b/less/less.nm @@ -4,7 +4,7 @@ ###############################################################################
name = less -version = 608 +version = 643 release = 1
groups = Applications/Text
hooks/post-receive -- IPFire 3.x development tree