- Updatre from version 2.14 to 2.15 - Update of rootfile - Changelog 2.15 * Fix operation of --no-absolute-filenames --make-directories * Restore access and modification times of symlinks in copy-in and copy-pass modes.
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- config/rootfiles/common/cpio | 1 + lfs/cpio | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/config/rootfiles/common/cpio b/config/rootfiles/common/cpio index 7b9bae045..0f3403c7b 100644 --- a/config/rootfiles/common/cpio +++ b/config/rootfiles/common/cpio @@ -1,5 +1,6 @@ bin/cpio #usr/share/info/cpio.info +#usr/share/locale/bg/LC_MESSAGES/cpio.mo #usr/share/locale/da/LC_MESSAGES/cpio.mo #usr/share/locale/de/LC_MESSAGES/cpio.mo #usr/share/locale/es/LC_MESSAGES/cpio.mo diff --git a/lfs/cpio b/lfs/cpio index f44fe1d2c..b8b6e12fe 100644 --- a/lfs/cpio +++ b/lfs/cpio @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2023 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2024 IPFire Team info@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.14 +VER = 2.15
THISAPP = cpio-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -42,7 +42,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = ddfecf7e3ff59cb15fa0856d374a8b1ff5aaf9143a940202c6c0eb84f0347b940a40e31258035e1d217fe210ef7ffdedb41e40f3a9d47ba51f44626378090f8a +$(DL_FILE)_BLAKE2 = e678111682335f4218d6d0e27d7e3a81b1e9c87ad5963402f73e735265480f296a8ce4fd00a4e7f591bbc7affcb3d433675c1df2d59c23e5d4ed6ba03e2964b8
install : $(TARGET)
- Update from version 1.20 to 1.20.2 - Update of root filr not required - Changelog 1.20.2 A bug has been fixed that made global commands like 'g/x/s/x/x', with the last delimiter omitted, print every substituted line twice. (Bug introduced in 1.18. Reported by Douglas McIlroy). 1.20.1 New command-line options '+line', '+/RE', and '+?RE' have been implemented to set the current line to the line number specified or to the first or last line matching the regular expression 'RE'. (Suggested by Matthew Polk and John Cowan). File names containing control characters 1 to 31 are now rejected unless they are allowed with the command-line option '--unsafe-names'. File names containing control characters 1 to 31 are now printed using octal escape sequences. Ed now rejects file names ending with a slash. Intervening commands that don't set the modified flag no longer make a second 'e' or 'q' command fail with a 'buffer modified' warning. Tilde expansion is now performed on file names supplied to commands; if a file name starts with '~/', the tilde (~) is expanded to the contents of the variable HOME. (Suggested by John Cowan). Ed now warns the first time that a command modifies a buffer loaded from a read-only file. (Suggested by Dan Jacobson). It has been documented that 'e' creates an empty buffer if file does not exist. It has been documented that 'f' sets the default filename, whether or not its argument names an existing file. The description of the exit status has been improved in '--help' and in the manual. The variable MAKEINFO has been added to configure and Makefile.in. It has been documented in INSTALL that when choosing a C standard, the POSIX features need to be enabled explicitly: ./configure CFLAGS+='--std=c99 -D_POSIX_C_SOURCE=2'
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- lfs/ed | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lfs/ed b/lfs/ed index 633ec4055..7f5072cf4 100644 --- a/lfs/ed +++ b/lfs/ed @@ -24,7 +24,7 @@
include Config
-VER = 1.20 +VER = 1.20.2
THISAPP = ed-$(VER) DL_FILE = $(THISAPP).tar.lz @@ -39,7 +39,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = d212c6d5302627145332ec25b989ca2d4a064ce5c0ea45ad1ad6b780ffd72037ff2144b933c52667c52192d6f5acd5766b5c31d4a2b5cf5993813c43e1523af3 +$(DL_FILE)_BLAKE2 = 5a9d36dba98488e3cacb3e4c0b9d70003345ca94dbf9a3ebd3181b93567b9ef94df0e72614e99e2c6dde4929933d9333c6dba90fafcea6962e2c1abccb0525af
install : $(TARGET)
Reviewed-by: Michael Tremer michael.tremer@ipfire.org
On 20 May 2024, at 14:35, Adolf Belka adolf.belka@ipfire.org wrote:
- Update from version 1.20 to 1.20.2
- Update of root filr not required
- Changelog 1.20.2
A bug has been fixed that made global commands like 'g/x/s/x/x', with the last delimiter omitted, print every substituted line twice. (Bug introduced in 1.18. Reported by Douglas McIlroy). 1.20.1 New command-line options '+line', '+/RE', and '+?RE' have been implemented to set the current line to the line number specified or to the first or last line matching the regular expression 'RE'. (Suggested by Matthew Polk and John Cowan). File names containing control characters 1 to 31 are now rejected unless they are allowed with the command-line option '--unsafe-names'. File names containing control characters 1 to 31 are now printed using octal escape sequences. Ed now rejects file names ending with a slash. Intervening commands that don't set the modified flag no longer make a second 'e' or 'q' command fail with a 'buffer modified' warning. Tilde expansion is now performed on file names supplied to commands; if a file name starts with '~/', the tilde (~) is expanded to the contents of the variable HOME. (Suggested by John Cowan). Ed now warns the first time that a command modifies a buffer loaded from a read-only file. (Suggested by Dan Jacobson). It has been documented that 'e' creates an empty buffer if file does not exist. It has been documented that 'f' sets the default filename, whether or not its argument names an existing file. The description of the exit status has been improved in '--help' and in the manual. The variable MAKEINFO has been added to configure and Makefile.in. It has been documented in INSTALL that when choosing a C standard, the POSIX features need to be enabled explicitly: ./configure CFLAGS+='--std=c99 -D_POSIX_C_SOURCE=2'
Signed-off-by: Adolf Belka adolf.belka@ipfire.org
lfs/ed | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lfs/ed b/lfs/ed index 633ec4055..7f5072cf4 100644 --- a/lfs/ed +++ b/lfs/ed @@ -24,7 +24,7 @@
include Config
-VER = 1.20 +VER = 1.20.2
THISAPP = ed-$(VER) DL_FILE = $(THISAPP).tar.lz @@ -39,7 +39,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = d212c6d5302627145332ec25b989ca2d4a064ce5c0ea45ad1ad6b780ffd72037ff2144b933c52667c52192d6f5acd5766b5c31d4a2b5cf5993813c43e1523af3 +$(DL_FILE)_BLAKE2 = 5a9d36dba98488e3cacb3e4c0b9d70003345ca94dbf9a3ebd3181b93567b9ef94df0e72614e99e2c6dde4929933d9333c6dba90fafcea6962e2c1abccb0525af
install : $(TARGET)
-- 2.44.0
- Update from version 20240125 to 20240502 - Update of rootfile not required - Changelog - update of iana-etc files
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- lfs/iana-etc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lfs/iana-etc b/lfs/iana-etc index 744d85905..7cc315fb1 100644 --- a/lfs/iana-etc +++ b/lfs/iana-etc @@ -24,7 +24,7 @@
include Config
-VER = 20240125 +VER = 20240502 # https://github.com/Mic92/iana-etc
THISAPP = iana-etc-$(VER) @@ -41,7 +41,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 884a168ecfdc5d06f3cd8fc701a50d0ec4af44c975b6a563f41241b54b500191bf584b2efbd144f448271ae7f452847ee534982c3ee4fffdcf67c2c7f2bcffec +$(DL_FILE)_BLAKE2 = 4b7644828bc5246d5437e0eee1d105326db647bdff3a9e7666664636538328bb808712f346237cc631e822d5a91baca6fd70d3361fd09bb190783403e3ff62a1
install : $(TARGET)
Reviewed-by: Michael Tremer michael.tremer@ipfire.org
On 20 May 2024, at 14:35, Adolf Belka adolf.belka@ipfire.org wrote:
- Update from version 20240125 to 20240502
- Update of rootfile not required
- Changelog - update of iana-etc files
Signed-off-by: Adolf Belka adolf.belka@ipfire.org
lfs/iana-etc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lfs/iana-etc b/lfs/iana-etc index 744d85905..7cc315fb1 100644 --- a/lfs/iana-etc +++ b/lfs/iana-etc @@ -24,7 +24,7 @@
include Config
-VER = 20240125 +VER = 20240502 # https://github.com/Mic92/iana-etc
THISAPP = iana-etc-$(VER) @@ -41,7 +41,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 884a168ecfdc5d06f3cd8fc701a50d0ec4af44c975b6a563f41241b54b500191bf584b2efbd144f448271ae7f452847ee534982c3ee4fffdcf67c2c7f2bcffec +$(DL_FILE)_BLAKE2 = 4b7644828bc5246d5437e0eee1d105326db647bdff3a9e7666664636538328bb808712f346237cc631e822d5a91baca6fd70d3361fd09bb190783403e3ff62a1
install : $(TARGET)
-- 2.44.0
- Update from version 1.7 to 1.7.1 - Update of rootfile not required - Changelog 1.7.1 ## Security - CVE-2023-50246: Fix heap buffer overflow in jvp_literal_number_literal - CVE-2023-50268: fix stack-buffer-overflow if comparing nan with payload ## CLI changes - Make the default background color more suitable for bright backgrounds. @mjarosie @taoky @nicowilliams @itchyny #2904 - Allow passing the inline jq script after `--`. @emanuele6 #2919 - Restrict systems operations on OpenBSD and remove unused `mkstemp`. @klemensn #2934 - Fix possible uninitialised value dereference if `jq_init()` fails. @emanuele6 @nicowilliams #2935 ## Language changes - Simplify `paths/0` and `paths/1`. @asheiduk @emanuele6 #2946 - Reject `U+001F` in string literals. @torsten-schenk @itchyny @wader #2911 - Remove unused nref accumulator in `block_bind_library`. @emanuele6 #2914 - Remove a bunch of unused variables, and useless assignments. @emanuele6 #2914 - main.c: Remove unused EXIT_STATUS_EXACT option. @emanuele6 #2915 - Actually use the number correctly casted from double to int as index. @emanuele6 #2916 - src/builtin.c: remove unnecessary jv_copy-s in type_error/type_error2. @emanuele6 #2937 - Remove undefined behavior caught by LLVM 10 UBSAN. @Gaelan @emanuele6 #2926 - Convert decnum to binary64 (double) instead of decimal64. This makes jq behave like the JSON specification suggests and more similar to other languages. @wader @leonid-s-usov #2949 - Fix memory leaks on invalid input for `ltrimstr/1` and `rtrimstr/1`. @emanuele6 #2977 - Fix memory leak on failed get for `setpath/2`. @emanuele6 #2970 - Fix nan from json parsing also for nans with payload that start with 'n'. @emanuele6 #2985 - Allow carriage return characters in comments. @emanuele6 #2942 #2984 ## Documentation changes - Generate links in the man page. @emanuele6 #2931 - Standardize arch types to AMD64 & ARM64 from index page download dropdown. @owenthereal #2884 ## libjq - Add extern C for C++. @rockwotj #2953 ## Build and test changes - Fix incorrect syntax for checksum file. @kamontat @wader #2899 - Remove `-dirty` version suffix for windows release build. @itchyny #2888 - Make use of `od` in tests more compatible. @nabijaczleweli @emanuele6 @nicowilliams #2922 - Add dependabot. @yeikel #2889 - Extend fuzzing setup to fuzz parser and and JSON serializer. @DavidKorczynski @emanuele6 #2952 - Keep releasing executables with legacy names. @itchyny #2951
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- lfs/jq | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/jq b/lfs/jq index 17fc8e88e..518b04564 100644 --- a/lfs/jq +++ b/lfs/jq @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2023 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2024 IPFire Team info@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.7 +VER = 1.7.1
THISAPP = jq-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = eec09a90ab1b131e18ed02ffdb7070df98f540b6c54d3cf225d2171527ec384e651cf83325569707798152af3e89d9c3fa2326c86164d2535e774ddc3926112b +$(DL_FILE)_BLAKE2 = bcd5498271b710ad4e130428f04481073aa94f9ff8f4f2dcf04cf684182cbc75a329677dbbdb1b724a313cd01a880af746565d221fc6ba55408eefd0f1ac0716
install : $(TARGET)
Reviewed-by: Michael Tremer michael.tremer@ipfire.org
On 20 May 2024, at 14:35, Adolf Belka adolf.belka@ipfire.org wrote:
- Update from version 1.7 to 1.7.1
- Update of rootfile not required
- Changelog 1.7.1
## Security
- CVE-2023-50246: Fix heap buffer overflow in jvp_literal_number_literal
- CVE-2023-50268: fix stack-buffer-overflow if comparing nan with payload
## CLI changes
- Make the default background color more suitable for bright backgrounds. @mjarosie @taoky @nicowilliams @itchyny #2904
- Allow passing the inline jq script after `--`. @emanuele6 #2919
- Restrict systems operations on OpenBSD and remove unused `mkstemp`. @klemensn #2934
- Fix possible uninitialised value dereference if `jq_init()` fails. @emanuele6 @nicowilliams #2935
## Language changes
- Simplify `paths/0` and `paths/1`. @asheiduk @emanuele6 #2946
- Reject `U+001F` in string literals. @torsten-schenk @itchyny @wader #2911
- Remove unused nref accumulator in `block_bind_library`. @emanuele6 #2914
- Remove a bunch of unused variables, and useless assignments. @emanuele6 #2914
- main.c: Remove unused EXIT_STATUS_EXACT option. @emanuele6 #2915
- Actually use the number correctly casted from double to int as index. @emanuele6 #2916
- src/builtin.c: remove unnecessary jv_copy-s in type_error/type_error2. @emanuele6 #2937
- Remove undefined behavior caught by LLVM 10 UBSAN. @Gaelan @emanuele6 #2926
- Convert decnum to binary64 (double) instead of decimal64. This makes jq behave like the JSON specification suggests and more similar to other languages. @wader @leonid-s-usov #2949
- Fix memory leaks on invalid input for `ltrimstr/1` and `rtrimstr/1`. @emanuele6 #2977
- Fix memory leak on failed get for `setpath/2`. @emanuele6 #2970
- Fix nan from json parsing also for nans with payload that start with 'n'. @emanuele6 #2985
- Allow carriage return characters in comments. @emanuele6 #2942 #2984
## Documentation changes
- Generate links in the man page. @emanuele6 #2931
- Standardize arch types to AMD64 & ARM64 from index page download dropdown. @owenthereal #2884
## libjq
- Add extern C for C++. @rockwotj #2953
## Build and test changes
- Fix incorrect syntax for checksum file. @kamontat @wader #2899
- Remove `-dirty` version suffix for windows release build. @itchyny #2888
- Make use of `od` in tests more compatible. @nabijaczleweli @emanuele6 @nicowilliams #2922
- Add dependabot. @yeikel #2889
- Extend fuzzing setup to fuzz parser and and JSON serializer. @DavidKorczynski @emanuele6 #2952
- Keep releasing executables with legacy names. @itchyny #2951
Signed-off-by: Adolf Belka adolf.belka@ipfire.org
lfs/jq | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/jq b/lfs/jq index 17fc8e88e..518b04564 100644 --- a/lfs/jq +++ b/lfs/jq @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2023 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2024 IPFire Team info@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.7 +VER = 1.7.1
THISAPP = jq-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = eec09a90ab1b131e18ed02ffdb7070df98f540b6c54d3cf225d2171527ec384e651cf83325569707798152af3e89d9c3fa2326c86164d2535e774ddc3926112b +$(DL_FILE)_BLAKE2 = bcd5498271b710ad4e130428f04481073aa94f9ff8f4f2dcf04cf684182cbc75a329677dbbdb1b724a313cd01a880af746565d221fc6ba55408eefd0f1ac0716
install : $(TARGET)
-- 2.44.0
- Update from version 2.5.1 to 2.6.4 - Update of rootfile - Changelog 2.6.4 Use AX_ADD_FORTIFY_SOURCE to avoid redefining _FORTIFY_SOURCE by @thesamesam in #103 Do not look up include files in the current working directory by @DaanDeMeyer in #105 2.6.3 libkfont: Don't look for fonts in the current directory. showkey: Add parameter to allow to change timeout. po: Update po files. 2.6.2 loadkeys: Don't look for keymap in the current directory. keymaps: Add colemak mod-dh keymaps. 2.6.1 libkfont: Fix font saving from linux kernel if KD_FONT_OP_GET_TALL is available. Respect font height when writing psf2 header. keymaps: Create new 'mac-fr' layout for contemporary French Macs. 2.6.0 libkfont: Leverage KD_FONT_OP_GET/SET_TALL font operations. The new KD_FONT_OP_GET/SET_TALL font operations allow to load fonts taller than 32 pixels by dropping the VGA-specific vertical pitch limitation (requires kernel 6.2 or later). Use threadsafe strtok_r. Increase soname version. setvtrgb: Fix read from pipe. The pipe is not rewindable, but we don't really need to rewind() but we need to unread one character. keymaps: i386/dvorak/dvorak-de.map: Add dvorak-de.map from console-data. i386/qwerty/is-latin1.map: the circumflex should also be available in its original level-3 position. i386/qwerty/la-latin1.map: Convert the characters expressed in Latin-1 to the named constants, to ease up transition to Unicode. pine/en.map: New version of pinephone keyboard map file. unimaps: Add mapping for U+25CF. The unicode maps in font files like eurlatgr.psfu and cp850-8x16.psfu have an entry for U+25CF, but the plaintext unimap files do not. tests: Use strace to track syscalls. Now strace is powerful enough to show ioctls specific to console configuration. po: Update translations (from translationproject.org).
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- config/rootfiles/common/kbd | 12 ++++++++++++ lfs/kbd | 6 +++--- 2 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/config/rootfiles/common/kbd b/config/rootfiles/common/kbd index a50a252a9..98c677a6a 100644 --- a/config/rootfiles/common/kbd +++ b/config/rootfiles/common/kbd @@ -332,9 +332,20 @@ lib/kbd/keymaps/i386 #lib/kbd/keymaps/i386/carpalx/carpalx.map.gz #lib/kbd/keymaps/i386/colemak #lib/kbd/keymaps/i386/colemak/en-latin9.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-ansi-us-awing.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-ansi-us-fatz-wide.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-ansi-us-fatz.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-ansi-us-wide.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-ansi-us.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-iso-uk-wide.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-iso-uk.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-iso-us-wide.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-iso-us.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-matrix-us.map.gz #lib/kbd/keymaps/i386/dvorak #lib/kbd/keymaps/i386/dvorak/ANSI-dvorak.map.gz #lib/kbd/keymaps/i386/dvorak/dvorak-ca-fr.map.gz +#lib/kbd/keymaps/i386/dvorak/dvorak-de.map.gz #lib/kbd/keymaps/i386/dvorak/dvorak-es.map.gz #lib/kbd/keymaps/i386/dvorak/dvorak-fr.map.gz #lib/kbd/keymaps/i386/dvorak/dvorak-l.map.gz @@ -550,6 +561,7 @@ lib/kbd/keymaps/include #lib/kbd/keymaps/mac/all/mac-dvorak.map.gz #lib/kbd/keymaps/mac/all/mac-es.map.gz #lib/kbd/keymaps/mac/all/mac-fi-latin1.map.gz +#lib/kbd/keymaps/mac/all/mac-fr-legacy.map.gz #lib/kbd/keymaps/mac/all/mac-fr.map.gz #lib/kbd/keymaps/mac/all/mac-fr_CH-latin1.map.gz #lib/kbd/keymaps/mac/all/mac-it.map.gz diff --git a/lfs/kbd b/lfs/kbd index 9dbd0f421..5b250482e 100644 --- a/lfs/kbd +++ b/lfs/kbd @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2022 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2024 IPFire Team info@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.5.1 +VER = 2.6.4
THISAPP = kbd-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -42,7 +42,7 @@ $(DL_FILE) = $(DL_FROM)/$(DL_FILE) kbd-latarcyrheb-16-fixed.tar.bz2 = $(DL_FROM)/kbd-latarcyrheb-16-fixed.tar.bz2 kbd-latsun-fonts.tar.bz2 = $(DL_FROM)/kbd-latsun-fonts.tar.bz2
-$(DL_FILE)_BLAKE2 = aab4c3d78c28709bf562b54fe94c0533d5c33185e183bf3eb944f89147b250d9df9b30b64a06eb4742feafe8c05a6aa491a7f007b4d6d9077bc19a4628ba05ae +$(DL_FILE)_BLAKE2 = 25e55be0210c206c1f5eb0d85045bb1cbb2442cf88fb7eb28f7bbb8dd0d86473f48444fd9d80dfc624ce7ba8b39bfe1152ee6cf1877fab444e09600e93dae0ee kbd-latarcyrheb-16-fixed.tar.bz2_BLAKE2 = d5c701333b9eae7e0c467aebee5b2217c3225dee615622f77e501569f1464a8c32380b2d4a522730db74a909e1ea746e660ea6849bbf48195af22bda73858d1b kbd-latsun-fonts.tar.bz2_BLAKE2 = c3def1192331a65f3edcf608ca164370d2db0c61444f71fc83bf35cb86d417ae92582180ace853a3cf93e569a83a42fca054fbadbf7f5986a1abd17e8bb6691f
Reviewed-by: Michael Tremer michael.tremer@ipfire.org
On 20 May 2024, at 14:35, Adolf Belka adolf.belka@ipfire.org wrote:
- Update from version 2.5.1 to 2.6.4
- Update of rootfile
- Changelog 2.6.4 Use AX_ADD_FORTIFY_SOURCE to avoid redefining _FORTIFY_SOURCE by @thesamesam in #103 Do not look up include files in the current working directory by @DaanDeMeyer in #105 2.6.3
libkfont: Don't look for fonts in the current directory. showkey: Add parameter to allow to change timeout. po: Update po files. 2.6.2 loadkeys: Don't look for keymap in the current directory. keymaps: Add colemak mod-dh keymaps. 2.6.1 libkfont: Fix font saving from linux kernel if KD_FONT_OP_GET_TALL is available. Respect font height when writing psf2 header. keymaps: Create new 'mac-fr' layout for contemporary French Macs. 2.6.0 libkfont: Leverage KD_FONT_OP_GET/SET_TALL font operations. The new KD_FONT_OP_GET/SET_TALL font operations allow to load fonts taller than 32 pixels by dropping the VGA-specific vertical pitch limitation (requires kernel 6.2 or later). Use threadsafe strtok_r. Increase soname version. setvtrgb: Fix read from pipe. The pipe is not rewindable, but we don't really need to rewind() but we need to unread one character. keymaps: i386/dvorak/dvorak-de.map: Add dvorak-de.map from console-data. i386/qwerty/is-latin1.map: the circumflex should also be available in its original level-3 position. i386/qwerty/la-latin1.map: Convert the characters expressed in Latin-1 to the named constants, to ease up transition to Unicode. pine/en.map: New version of pinephone keyboard map file. unimaps: Add mapping for U+25CF. The unicode maps in font files like eurlatgr.psfu and cp850-8x16.psfu have an entry for U+25CF, but the plaintext unimap files do not. tests: Use strace to track syscalls. Now strace is powerful enough to show ioctls specific to console configuration. po: Update translations (from translationproject.org).
Signed-off-by: Adolf Belka adolf.belka@ipfire.org
config/rootfiles/common/kbd | 12 ++++++++++++ lfs/kbd | 6 +++--- 2 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/config/rootfiles/common/kbd b/config/rootfiles/common/kbd index a50a252a9..98c677a6a 100644 --- a/config/rootfiles/common/kbd +++ b/config/rootfiles/common/kbd @@ -332,9 +332,20 @@ lib/kbd/keymaps/i386 #lib/kbd/keymaps/i386/carpalx/carpalx.map.gz #lib/kbd/keymaps/i386/colemak #lib/kbd/keymaps/i386/colemak/en-latin9.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-ansi-us-awing.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-ansi-us-fatz-wide.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-ansi-us-fatz.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-ansi-us-wide.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-ansi-us.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-iso-uk-wide.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-iso-uk.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-iso-us-wide.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-iso-us.map.gz +#lib/kbd/keymaps/i386/colemak/mod-dh-matrix-us.map.gz #lib/kbd/keymaps/i386/dvorak #lib/kbd/keymaps/i386/dvorak/ANSI-dvorak.map.gz #lib/kbd/keymaps/i386/dvorak/dvorak-ca-fr.map.gz +#lib/kbd/keymaps/i386/dvorak/dvorak-de.map.gz #lib/kbd/keymaps/i386/dvorak/dvorak-es.map.gz #lib/kbd/keymaps/i386/dvorak/dvorak-fr.map.gz #lib/kbd/keymaps/i386/dvorak/dvorak-l.map.gz @@ -550,6 +561,7 @@ lib/kbd/keymaps/include #lib/kbd/keymaps/mac/all/mac-dvorak.map.gz #lib/kbd/keymaps/mac/all/mac-es.map.gz #lib/kbd/keymaps/mac/all/mac-fi-latin1.map.gz +#lib/kbd/keymaps/mac/all/mac-fr-legacy.map.gz #lib/kbd/keymaps/mac/all/mac-fr.map.gz #lib/kbd/keymaps/mac/all/mac-fr_CH-latin1.map.gz #lib/kbd/keymaps/mac/all/mac-it.map.gz diff --git a/lfs/kbd b/lfs/kbd index 9dbd0f421..5b250482e 100644 --- a/lfs/kbd +++ b/lfs/kbd @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2022 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2024 IPFire Team info@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.5.1 +VER = 2.6.4
THISAPP = kbd-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -42,7 +42,7 @@ $(DL_FILE) = $(DL_FROM)/$(DL_FILE) kbd-latarcyrheb-16-fixed.tar.bz2 = $(DL_FROM)/kbd-latarcyrheb-16-fixed.tar.bz2 kbd-latsun-fonts.tar.bz2 = $(DL_FROM)/kbd-latsun-fonts.tar.bz2
-$(DL_FILE)_BLAKE2 = aab4c3d78c28709bf562b54fe94c0533d5c33185e183bf3eb944f89147b250d9df9b30b64a06eb4742feafe8c05a6aa491a7f007b4d6d9077bc19a4628ba05ae +$(DL_FILE)_BLAKE2 = 25e55be0210c206c1f5eb0d85045bb1cbb2442cf88fb7eb28f7bbb8dd0d86473f48444fd9d80dfc624ce7ba8b39bfe1152ee6cf1877fab444e09600e93dae0ee kbd-latarcyrheb-16-fixed.tar.bz2_BLAKE2 = d5c701333b9eae7e0c467aebee5b2217c3225dee615622f77e501569f1464a8c32380b2d4a522730db74a909e1ea746e660ea6849bbf48195af22bda73858d1b kbd-latsun-fonts.tar.bz2_BLAKE2 = c3def1192331a65f3edcf608ca164370d2db0c61444f71fc83bf35cb86d417ae92582180ace853a3cf93e569a83a42fca054fbadbf7f5986a1abd17e8bb6691f
-- 2.44.0
- Update from version 1.6.0 to 1.6.1 - Update of rootfile - Removal of patch for as changes now incorporated in source tarball. - Changelog 1.6.1 build: fail if specified configure options cannot be satisfied. pam_env: fixed --disable-econf --enable-vendordir support. pam_unix: do not warn if password aging is disabled. pam_unix: try to set uid to 0 before unix_chkpwd invocation. pam_unix: allow empty passwords with non-empty hashes. Multiple minor bug fixes, build fixes, portability fixes, documentation improvements, and translation updates.
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- config/rootfiles/common/pam | 4 ---- lfs/pam | 5 ++--- ...pam:_fix_build_with_--enable-read-both-confs.patch | 11 ----------- 3 files changed, 2 insertions(+), 18 deletions(-) delete mode 100644 src/patches/Linux-PAM-1.6.0-libpam:_fix_build_with_--enable-read-both-confs.patch
diff --git a/config/rootfiles/common/pam b/config/rootfiles/common/pam index de5c5b466..c38cb9ea5 100644 --- a/config/rootfiles/common/pam +++ b/config/rootfiles/common/pam @@ -101,9 +101,7 @@ lib/security/pam_unix.so #lib/security/pam_wheel.so #lib/security/pam_xauth.la #lib/security/pam_xauth.so -#lib/security/pwhistory_helper lib/security/unix_chkpwd -lib/security/unix_update #usr/include/security #usr/include/security/_pam_compat.h #usr/include/security/_pam_macros.h @@ -237,6 +235,4 @@ usr/lib/libpamc.so.0.82.1 #usr/share/man/man8/pam_warn.8 #usr/share/man/man8/pam_wheel.8 #usr/share/man/man8/pam_xauth.8 -#usr/share/man/man8/pwhistory_helper.8 #usr/share/man/man8/unix_chkpwd.8 -#usr/share/man/man8/unix_update.8 diff --git a/lfs/pam b/lfs/pam index 5e315a027..8e5b6f602 100644 --- a/lfs/pam +++ b/lfs/pam @@ -24,7 +24,7 @@
include Config
-VER = 1.6.0 +VER = 1.6.1
THISAPP = Linux-PAM-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 8ad3ed2d58b48cf43d065f15669788c113eee2aa3fc86cf38565a0e4835b142564ff1af5bcd3377db08af77141d25b4e93752a387ff7eabc00b4a826aa9ea39d +$(DL_FILE)_BLAKE2 = 649b4ff892fbd3eb90adcbd9ccc5b3f5df51bf1c79b9084c7a1613c432587b13b81761d1eb4f31ef12d58843d16af24a3c441d0b6f5d2f2a1db9c8da15a61e2f
install : $(TARGET)
@@ -70,7 +70,6 @@ $(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) && patch -Np1 -i $(DIR_SRC)/src/patches/Linux-PAM-1.6.0-libpam:_fix_build_with_--enable-read-both-confs.patch $(UPDATE_AUTOMAKE) cd $(DIR_APP) && ./configure --libdir=/usr/lib \ --sbindir=/lib/security \ diff --git a/src/patches/Linux-PAM-1.6.0-libpam:_fix_build_with_--enable-read-both-confs.patch b/src/patches/Linux-PAM-1.6.0-libpam:_fix_build_with_--enable-read-both-confs.patch deleted file mode 100644 index 1736c5f35..000000000 --- a/src/patches/Linux-PAM-1.6.0-libpam:_fix_build_with_--enable-read-both-confs.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- Linux-PAM-1.6.0/libpam/pam_handlers.c.orig 2024-01-17 11:29:36.000000000 +0100 -+++ Linux-PAM-1.6.0/libpam/pam_handlers.c 2024-01-22 16:02:45.546376172 +0100 -@@ -500,7 +500,7 @@ - - if (pamh->confdir == NULL - && (f = fopen(PAM_CONFIG,"r")) != NULL) { -- retval = _pam_parse_conf_file(pamh, f, NULL, PAM_T_ANY, 0, 1); -+ retval = _pam_parse_conf_file(pamh, f, NULL, PAM_T_ANY, 0, 0, 1); - fclose(f); - } else - #endif /* PAM_READ_BOTH_CONFS */
Reviewed-by: Michael Tremer michael.tremer@ipfire.org
On 20 May 2024, at 14:35, Adolf Belka adolf.belka@ipfire.org wrote:
- Update from version 1.6.0 to 1.6.1
- Update of rootfile
- Removal of patch for as changes now incorporated in source tarball.
- Changelog 1.6.1
build: fail if specified configure options cannot be satisfied. pam_env: fixed --disable-econf --enable-vendordir support. pam_unix: do not warn if password aging is disabled. pam_unix: try to set uid to 0 before unix_chkpwd invocation. pam_unix: allow empty passwords with non-empty hashes. Multiple minor bug fixes, build fixes, portability fixes, documentation improvements, and translation updates.
Signed-off-by: Adolf Belka adolf.belka@ipfire.org
config/rootfiles/common/pam | 4 ---- lfs/pam | 5 ++--- ...pam:_fix_build_with_--enable-read-both-confs.patch | 11 ----------- 3 files changed, 2 insertions(+), 18 deletions(-) delete mode 100644 src/patches/Linux-PAM-1.6.0-libpam:_fix_build_with_--enable-read-both-confs.patch
diff --git a/config/rootfiles/common/pam b/config/rootfiles/common/pam index de5c5b466..c38cb9ea5 100644 --- a/config/rootfiles/common/pam +++ b/config/rootfiles/common/pam @@ -101,9 +101,7 @@ lib/security/pam_unix.so #lib/security/pam_wheel.so #lib/security/pam_xauth.la #lib/security/pam_xauth.so -#lib/security/pwhistory_helper lib/security/unix_chkpwd -lib/security/unix_update #usr/include/security #usr/include/security/_pam_compat.h #usr/include/security/_pam_macros.h @@ -237,6 +235,4 @@ usr/lib/libpamc.so.0.82.1 #usr/share/man/man8/pam_warn.8 #usr/share/man/man8/pam_wheel.8 #usr/share/man/man8/pam_xauth.8 -#usr/share/man/man8/pwhistory_helper.8 #usr/share/man/man8/unix_chkpwd.8 -#usr/share/man/man8/unix_update.8 diff --git a/lfs/pam b/lfs/pam index 5e315a027..8e5b6f602 100644 --- a/lfs/pam +++ b/lfs/pam @@ -24,7 +24,7 @@
include Config
-VER = 1.6.0 +VER = 1.6.1
THISAPP = Linux-PAM-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 8ad3ed2d58b48cf43d065f15669788c113eee2aa3fc86cf38565a0e4835b142564ff1af5bcd3377db08af77141d25b4e93752a387ff7eabc00b4a826aa9ea39d +$(DL_FILE)_BLAKE2 = 649b4ff892fbd3eb90adcbd9ccc5b3f5df51bf1c79b9084c7a1613c432587b13b81761d1eb4f31ef12d58843d16af24a3c441d0b6f5d2f2a1db9c8da15a61e2f
install : $(TARGET)
@@ -70,7 +70,6 @@ $(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) && patch -Np1 -i $(DIR_SRC)/src/patches/Linux-PAM-1.6.0-libpam:_fix_build_with_--enable-read-both-confs.patch
$(UPDATE_AUTOMAKE) cd $(DIR_APP) && ./configure --libdir=/usr/lib \ --sbindir=/lib/security \ diff --git a/src/patches/Linux-PAM-1.6.0-libpam:_fix_build_with_--enable-read-both-confs.patch b/src/patches/Linux-PAM-1.6.0-libpam:_fix_build_with_--enable-read-both-confs.patch deleted file mode 100644 index 1736c5f35..000000000 --- a/src/patches/Linux-PAM-1.6.0-libpam:_fix_build_with_--enable-read-both-confs.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- Linux-PAM-1.6.0/libpam/pam_handlers.c.orig 2024-01-17 11:29:36.000000000 +0100 -+++ Linux-PAM-1.6.0/libpam/pam_handlers.c 2024-01-22 16:02:45.546376172 +0100 -@@ -500,7 +500,7 @@
- if (pamh->confdir == NULL
- && (f = fopen(PAM_CONFIG,"r")) != NULL) {
-- retval = _pam_parse_conf_file(pamh, f, NULL, PAM_T_ANY, 0, 1); -+ retval = _pam_parse_conf_file(pamh, f, NULL, PAM_T_ANY, 0, 0, 1);
- fclose(f);
- } else
- #endif /* PAM_READ_BOTH_CONFS */
-- 2.44.0
- Update from version 4.9.0 to 4.9.1 - Update of rootfile - Changelog 4.9.1 * Support stop/parity bits on serial port (#23952) * Add needed system headers in checks and return values for implicit function declarations * Fixes: - Avoid zombies after shell exit (#25089) - Missed signal sending permission check on failed query messages (CVE-2023-24626) - manpage fixes - source code fixes during cleanup - UTF-8 encoding can emit invalid UTF-8 sequences for out of range unicode values (#62097)
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- config/rootfiles/common/screen | 2 +- lfs/screen | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/config/rootfiles/common/screen b/config/rootfiles/common/screen index b1e74e734..a367ab078 100644 --- a/config/rootfiles/common/screen +++ b/config/rootfiles/common/screen @@ -1,6 +1,6 @@ etc/screenrc usr/bin/screen -usr/bin/screen-4.9.0 +usr/bin/screen-4.9.1 #usr/share/info/screen.info #usr/share/man/man1/screen.1 #usr/share/screen diff --git a/lfs/screen b/lfs/screen index a78905970..c7bd53a8d 100644 --- a/lfs/screen +++ b/lfs/screen @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2022 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2024 IPFire Team info@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 = 4.9.0 +VER = 4.9.1
THISAPP = screen-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 0f64a14ce9a719bd4a6d045c55069769045a09ee2086c44c2e3d9da6d1e5ada2f094e00e16029767e1155ce35d4f360d0e2879995eefa052f3214ced71b7617c +$(DL_FILE)_BLAKE2 = 27d9c100bc1f747e39e109a4957702388d943c7d3b75b4c59dfc3894456d5249257742106fb24cf6f07a36764db0a1c5f7e0a44123edda1c570d771d7f46c638
install : $(TARGET)
@@ -71,7 +71,10 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && ./autogen.sh - cd $(DIR_APP) && ./configure --prefix=/usr --with-socket-dir=/var/run/screen --with-sys-screenrc=/etc/screenrc + cd $(DIR_APP) && ./configure \ + --prefix=/usr \ + --with-socket-dir=/var/run/screen \ + --with-sys-screenrc=/etc/screenrc cd $(DIR_APP) && sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%" {etc,doc}/* cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install
Reviewed-by: Michael Tremer michael.tremer@ipfire.org
On 20 May 2024, at 14:35, Adolf Belka adolf.belka@ipfire.org wrote:
- Update from version 4.9.0 to 4.9.1
- Update of rootfile
- Changelog 4.9.1
- Support stop/parity bits on serial port (#23952)
- Add needed system headers in checks and return values for implicit function declarations
- Fixes:
- Avoid zombies after shell exit (#25089)
- Missed signal sending permission check on failed query messages (CVE-2023-24626)
- manpage fixes
- source code fixes during cleanup
- UTF-8 encoding can emit invalid UTF-8 sequences for out of range unicode values (#62097)
Signed-off-by: Adolf Belka adolf.belka@ipfire.org
config/rootfiles/common/screen | 2 +- lfs/screen | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/config/rootfiles/common/screen b/config/rootfiles/common/screen index b1e74e734..a367ab078 100644 --- a/config/rootfiles/common/screen +++ b/config/rootfiles/common/screen @@ -1,6 +1,6 @@ etc/screenrc usr/bin/screen -usr/bin/screen-4.9.0 +usr/bin/screen-4.9.1 #usr/share/info/screen.info #usr/share/man/man1/screen.1 #usr/share/screen diff --git a/lfs/screen b/lfs/screen index a78905970..c7bd53a8d 100644 --- a/lfs/screen +++ b/lfs/screen @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2022 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2024 IPFire Team info@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 = 4.9.0 +VER = 4.9.1
THISAPP = screen-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 0f64a14ce9a719bd4a6d045c55069769045a09ee2086c44c2e3d9da6d1e5ada2f094e00e16029767e1155ce35d4f360d0e2879995eefa052f3214ced71b7617c +$(DL_FILE)_BLAKE2 = 27d9c100bc1f747e39e109a4957702388d943c7d3b75b4c59dfc3894456d5249257742106fb24cf6f07a36764db0a1c5f7e0a44123edda1c570d771d7f46c638
install : $(TARGET)
@@ -71,7 +71,10 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && ./autogen.sh
- cd $(DIR_APP) && ./configure --prefix=/usr --with-socket-dir=/var/run/screen --with-sys-screenrc=/etc/screenrc
- cd $(DIR_APP) && ./configure \
- --prefix=/usr \
- --with-socket-dir=/var/run/screen \
- --with-sys-screenrc=/etc/screenrc
cd $(DIR_APP) && sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%" {etc,doc}/* cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install -- 2.44.0
Reviewed-by: Michael Tremer michael.tremer@ipfire.org
Thank you! Welcome back!
On 20 May 2024, at 14:35, Adolf Belka adolf.belka@ipfire.org wrote:
- Updatre from version 2.14 to 2.15
- Update of rootfile
- Changelog 2.15
- Fix operation of --no-absolute-filenames --make-directories
- Restore access and modification times of symlinks in copy-in
and copy-pass modes.
Signed-off-by: Adolf Belka adolf.belka@ipfire.org
config/rootfiles/common/cpio | 1 + lfs/cpio | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/config/rootfiles/common/cpio b/config/rootfiles/common/cpio index 7b9bae045..0f3403c7b 100644 --- a/config/rootfiles/common/cpio +++ b/config/rootfiles/common/cpio @@ -1,5 +1,6 @@ bin/cpio #usr/share/info/cpio.info +#usr/share/locale/bg/LC_MESSAGES/cpio.mo #usr/share/locale/da/LC_MESSAGES/cpio.mo #usr/share/locale/de/LC_MESSAGES/cpio.mo #usr/share/locale/es/LC_MESSAGES/cpio.mo diff --git a/lfs/cpio b/lfs/cpio index f44fe1d2c..b8b6e12fe 100644 --- a/lfs/cpio +++ b/lfs/cpio @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2023 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2024 IPFire Team info@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.14 +VER = 2.15
THISAPP = cpio-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -42,7 +42,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = ddfecf7e3ff59cb15fa0856d374a8b1ff5aaf9143a940202c6c0eb84f0347b940a40e31258035e1d217fe210ef7ffdedb41e40f3a9d47ba51f44626378090f8a +$(DL_FILE)_BLAKE2 = e678111682335f4218d6d0e27d7e3a81b1e9c87ad5963402f73e735265480f296a8ce4fd00a4e7f591bbc7affcb3d433675c1df2d59c23e5d4ed6ba03e2964b8
install : $(TARGET)
-- 2.44.0