public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] diffutils: Update to version 3.12
@ 2025-05-04 13:17 Adolf Belka
  2025-05-04 13:17 ` [PATCH] gawk: Update to version 5.3.2 Adolf Belka
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Adolf Belka @ 2025-05-04 13:17 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 3.11 to 3.12
- Update of rootfile not required
- Changelog
    3.12
	Bug fixes
	  diff -r no longer merely summarizes when comparing an empty regular
	   file to a nonempty regular file.
	   [bug#76452 introduced in 3.11]
	  diff -y no longer crashes when given nontrivial differences.
	   [bug#76613 introduced in 3.11]

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/diffutils | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lfs/diffutils b/lfs/diffutils
index 8047c0a76..b1954e0c2 100644
--- a/lfs/diffutils
+++ b/lfs/diffutils
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 3.11
+VER        = 3.12
 
 THISAPP    = diffutils-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -47,7 +47,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = e3d78548d1fbee060a9e0a7ee93f4aebaa80a9ff15867f13e2f1d09672e2b1e8dcf01f264d5184c441bc81b0b1a797210cbf4a1f9b8ba061994066e710e79fc1
+$(DL_FILE)_BLAKE2 = 5b4593b39da71578d7f975603abe9359be215b9ac76548a6ab0d6e3838bb103c7ffcddf7fa01abcd5c6289db9a2f16b43aa3d5e846a9aa4b8db866763c2660de
 
 install : $(TARGET)
 
-- 
2.49.0



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH] gawk: Update to version 5.3.2
  2025-05-04 13:17 [PATCH] diffutils: Update to version 3.12 Adolf Belka
@ 2025-05-04 13:17 ` Adolf Belka
  2025-05-04 13:17 ` [PATCH] grep: Update to version 3.12 Adolf Belka
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Adolf Belka @ 2025-05-04 13:17 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 5.3.1 to 5.3.2
- Update of rootfile
- Changelog
    5.3.2
	1. The pretty printer now produces fewer spurious newlines; at the
	   outermost level it now adds newlines between block comments and
	   the block or function that follows them. The extra final newline
	   is no longer produced.
	2. OpenVMS 9.2-2 x86_64 is now supported.
	3. On Linux and macos systems, the -no-pie linker flag is no longer required.
	   PMA now works on macos systems with Apple silicon, and not just
	   Intel systems.
	4. Still more subtle issues related to uninitialized array elements have
	   been fixed.
	5. Associative arrays should now not grow quite as fast as they used to.
	6. The code and documentation are now consistent with each other with
	   respect to path searching and adding .awk to the filename. Both
	   are always done, even with --posix and --traditional.
	7. As usual, there have been several minor code cleanups and bug fixes.
	   See the ChangeLog for details.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/common/gawk | 2 +-
 lfs/gawk                     | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/config/rootfiles/common/gawk b/config/rootfiles/common/gawk
index 5cb380ec8..2d4b162e7 100644
--- a/config/rootfiles/common/gawk
+++ b/config/rootfiles/common/gawk
@@ -1,6 +1,6 @@
 usr/bin/awk
 usr/bin/gawk
-usr/bin/gawk-5.3.1
+usr/bin/gawk-5.3.2
 usr/bin/gawkbug
 usr/etc/profile.d
 usr/etc/profile.d/gawk.csh
diff --git a/lfs/gawk b/lfs/gawk
index a3671882f..bd61298bb 100644
--- a/lfs/gawk
+++ b/lfs/gawk
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2024  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2025  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        #
@@ -25,7 +25,7 @@
 
 include Config
 
-VER        = 5.3.1
+VER        = 5.3.2
 
 THISAPP    = gawk-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -49,7 +49,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = be9132324344c0b052e954e004a942ff7c6b14b86b73cda491d7a33485f60341be4d8da1a06d1d7a27445b9b39a528bcce3eee9c2a3f8756de21bdc57a33f54d
+$(DL_FILE)_BLAKE2 = 8536777bb45c63d737ef08b3f1b98285cb29ec54400e35b2139c2bc66b464e3ec4950274614d95d94dc7eae18c57333b7c30a44d993855258155fc82b749042a
 
 install : $(TARGET)
 
-- 
2.49.0



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH] grep: Update to version 3.12
  2025-05-04 13:17 [PATCH] diffutils: Update to version 3.12 Adolf Belka
  2025-05-04 13:17 ` [PATCH] gawk: Update to version 5.3.2 Adolf Belka
@ 2025-05-04 13:17 ` Adolf Belka
  2025-05-04 13:17 ` [PATCH] harfbuzz: Update to version 11.2.0 Adolf Belka
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Adolf Belka @ 2025-05-04 13:17 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 3.11 to 3.12
- Update of rootfile not required
- Changelog
    3.12
	** Bug fixes
	  Searching a directory with at least 100,000 entries no longer fails
	   with "Operation not supported" and exit status 2. Now, this prints 1
	   and no diagnostic, as expected:
	     $ mkdir t && cd t && seq 100000|xargs touch && grep -r x .; echo $?
	     1
	   [bug introduced in grep 3.11]
	  -mN where 1 < N no longer mistakenly lseeks to end of input merely
	   because standard output is /dev/null.
	** Changes in behavior
	  The --unix-byte-offsets (-u) option is gone. In grep-3.7 (2021-08-14)
	   it became a warning-only no-op. Before then, it was a Windows-only no-op.
	  On Windows platforms and on AIX in 32-bit mode, grep in some cases
	   now supports Unicode characters outside the Basic Multilingual Plane.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/grep | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/grep b/lfs/grep
index dde47ffa2..e29285a23 100644
--- a/lfs/grep
+++ b/lfs/grep
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2023  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2025  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        = 3.11
+VER        = 3.12
 
 THISAPP    = grep-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -50,7 +50,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = e21785bca20b5a090d32bb5dc525fb298af30165106ed4c289b1518ea3d2acdcacfd6309b12f13be29a4b958f19588546119c695deb2b7500d49dcff86357bdc
+$(DL_FILE)_BLAKE2 = 93d06bce04793f4b4c94d92febc6092f669e50e1bfc1bef3c911a2ca322560bdab8619e88a05a4d6ea4908b2d01da1926a99a22eecc513bd48b8957984bdfa12
 
 install : $(TARGET)
 
-- 
2.49.0



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH] harfbuzz: Update to version 11.2.0
  2025-05-04 13:17 [PATCH] diffutils: Update to version 3.12 Adolf Belka
  2025-05-04 13:17 ` [PATCH] gawk: Update to version 5.3.2 Adolf Belka
  2025-05-04 13:17 ` [PATCH] grep: Update to version 3.12 Adolf Belka
@ 2025-05-04 13:17 ` Adolf Belka
  2025-05-04 13:17 ` [PATCH] hwdata: Update to version 0.394 Adolf Belka
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Adolf Belka @ 2025-05-04 13:17 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 11.0.0 to 11.2.0
- Update of rootfile
- Changelog
    11.2.0
	- Painting of COLRv1 fonts without clip boxes is now about 10 times faster.
	- Synthetic bold/slant of a sub font is now respected, instead of using the
	  parent’s.
	- Glyph extents for fonts synthetic bold/slant are now accurately calculated.
	- Various build fixes
	- New API:
		+hb_font_is_synthetic()
		+hb_font_draw_glyph_or_fail_func_t
		+hb_font_paint_glyph_or_fail_func_t
		+hb_font_funcs_set_draw_glyph_or_fail_func()
		+hb_font_funcs_set_paint_glyph_or_fail_func()
		+hb_font_draw_glyph_or_fail()
		+hb_font_paint_glyph_or_fail()
	- Deprecated API:
		-hb_font_draw_glyph_func_t
		-hb_font_paint_glyph_func_t
		-hb_font_funcs_set_draw_glyph_func()
		-hb_font_funcs_set_paint_glyph_func()
    11.1.0
	- Include bidi mirroring variants of the requested codepoints when subsetting.
	  The new HB_SUBSET_FLAGS_NO_BIDI_CLOSURE can be used to disable this
	  behaviour.
	- Various bug fixes.
	- Various build fixes and improvements.
	- Various test suite improvements.
	- New API:
		+HB_SUBSET_FLAGS_NO_BIDI_CLOSURE
    11.0.1
	- The change in version 10.3.0 to apply “trak” table tracking values to glyph
	  advances directly has been reverted as it required every font functions
	  implementation to handle it, which breaks existing custom font functions.
	  Tracking is instead back to being applied during shaping.
	- When `directwrite` integration is enabled, we now link to `dwrite.dll`
	  instead of dynamically loading it.
	- A new experimental APIs for getting raw “CFF” and “CFF2” CharStrings.
	- We now provide manpages for the various command line utilities. Building
	  manpages requires “help2man” and will be skipped if it is not present.
	- The command line utilities now set different return value for different kinds
	  of failures. Details are provided in the manpages.
	- Various fixes and improvements to `fontations` font functions.
	- All shaping operations using the `ot` shaper have become memory
	  allocation-free.
	- Glyph extents returned by `hb-ot` and `hb-ft` font functions are now rounded
	  in stead of flooring/ceiling them, which also matches what other font
	  libraries do.
	- Fix “AAT” deleted glyph marks interfering with fallback mark positioning.
	- Glyph outlines emboldening have been moved out of `hb-ot` and `hb-ft` font
	  functions to the HarfBuzz font layer, so that it works with any font
	  functions implementation.
	- Fix our fallback C++11 atomics integration, which seems to not be widely
	  used.
	- Various testing fixes and improvements.
	- Various subsetting fixes and improvements.
	- Various other fixes and improvements.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/common/harfbuzz | 14 +++++++++-----
 lfs/harfbuzz                     |  4 ++--
 2 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/config/rootfiles/common/harfbuzz b/config/rootfiles/common/harfbuzz
index 20faa0525..588ed8c19 100644
--- a/config/rootfiles/common/harfbuzz
+++ b/config/rootfiles/common/harfbuzz
@@ -1,5 +1,4 @@
 #usr/bin/hb-info
-#usr/bin/hb-ot-shape-closure
 #usr/bin/hb-shape
 #usr/bin/hb-subset
 #usr/bin/hb-view
@@ -34,6 +33,7 @@
 #usr/include/harfbuzz/hb-ot-var.h
 #usr/include/harfbuzz/hb-ot.h
 #usr/include/harfbuzz/hb-paint.h
+usr/include/harfbuzz/hb-script-list.h
 #usr/include/harfbuzz/hb-set.h
 #usr/include/harfbuzz/hb-shape-plan.h
 #usr/include/harfbuzz/hb-shape.h
@@ -47,17 +47,21 @@
 #usr/lib/cmake/harfbuzz/harfbuzz-config.cmake
 #usr/lib/libharfbuzz-cairo.so
 usr/lib/libharfbuzz-cairo.so.0
-usr/lib/libharfbuzz-cairo.so.0.61100.0
+usr/lib/libharfbuzz-cairo.so.0.61120.0
 #usr/lib/libharfbuzz-gobject.so
 usr/lib/libharfbuzz-gobject.so.0
-usr/lib/libharfbuzz-gobject.so.0.61100.0
+usr/lib/libharfbuzz-gobject.so.0.61120.0
 #usr/lib/libharfbuzz-subset.so
 usr/lib/libharfbuzz-subset.so.0
-usr/lib/libharfbuzz-subset.so.0.61100.0
+usr/lib/libharfbuzz-subset.so.0.61120.0
 #usr/lib/libharfbuzz.so
 usr/lib/libharfbuzz.so.0
-usr/lib/libharfbuzz.so.0.61100.0
+usr/lib/libharfbuzz.so.0.61120.0
 #usr/lib/pkgconfig/harfbuzz-cairo.pc
 #usr/lib/pkgconfig/harfbuzz-gobject.pc
 #usr/lib/pkgconfig/harfbuzz-subset.pc
 #usr/lib/pkgconfig/harfbuzz.pc
+#usr/share/man/man1/hb-info.1
+#usr/share/man/man1/hb-shape.1
+#usr/share/man/man1/hb-subset.1
+#usr/share/man/man1/hb-view.1
diff --git a/lfs/harfbuzz b/lfs/harfbuzz
index be8fe3d25..95f417bc2 100644
--- a/lfs/harfbuzz
+++ b/lfs/harfbuzz
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 11.0.0
+VER        = 11.2.0
 
 THISAPP    = harfbuzz-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 0775321ea24a257d6609f59e9f0fa7129416575938ff11e16f9df2a33bd9391e0dc20bf4be75131f1b8e15961dc04e3fef1d6ff88de71c556a9aab7889f0a185
+$(DL_FILE)_BLAKE2 = 112693a42120407c25b8bf84ed14f7a481810f34557132e5902e5eeaa967071d0aa785961541b7779b7d36f353c54b6f3167c3ab6bdb81238a69d385dab3ebfe
 
 install : $(TARGET)
 
-- 
2.49.0



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH] hwdata: Update to version 0.394
  2025-05-04 13:17 [PATCH] diffutils: Update to version 3.12 Adolf Belka
                   ` (2 preceding siblings ...)
  2025-05-04 13:17 ` [PATCH] harfbuzz: Update to version 11.2.0 Adolf Belka
@ 2025-05-04 13:17 ` Adolf Belka
  2025-05-04 13:17 ` [PATCH] patch: Update to version 2.8 Adolf Belka
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Adolf Belka @ 2025-05-04 13:17 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 0.393 to 0.394
- Update of rootfile not required
- Changelog
    0.394
	Update pci and vendor ids

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/hwdata | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lfs/hwdata b/lfs/hwdata
index 0e907669e..6c2b4a8f9 100644
--- a/lfs/hwdata
+++ b/lfs/hwdata
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 0.393
+VER        = 0.394
 
 THISAPP    = hwdata-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -42,7 +42,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = e09fb3988f7339b4b96691291c26e02365925954889de8f94dbf4f476c340eb07db05400f3f4725b699b0b07852be65f10be0708c6f58496f1ac10e9dc4fb022
+$(DL_FILE)_BLAKE2 = 698ba9e25a551f84cb1d5567910212d11942ea36c83b12cde707ae4842411ea48c7780c14ee1450c9ab256a48eeb0abdbf003ae5dfe86d79b643246b07ff22f3
 
 install : $(TARGET)
 
-- 
2.49.0



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH] patch: Update to version 2.8
  2025-05-04 13:17 [PATCH] diffutils: Update to version 3.12 Adolf Belka
                   ` (3 preceding siblings ...)
  2025-05-04 13:17 ` [PATCH] hwdata: Update to version 0.394 Adolf Belka
@ 2025-05-04 13:17 ` Adolf Belka
  2025-05-04 13:17 ` [PATCH] tshark: Update to version 4.4.6 Adolf Belka
  2025-05-04 13:17 ` [PATCH] xfsprogs: Update to version 6.14.0 Adolf Belka
  6 siblings, 0 replies; 8+ messages in thread
From: Adolf Belka @ 2025-05-04 13:17 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 2.7.6 to 2.8
- Update of rootfile not required
- Changelog
    2.8
	* The --follow-symlinks option now applies to output files as well as input.
	* 'patch' now supports file timestamps after 2038 even on traditional
	  GNU/Linux platforms where time_t defaults to 32 bits.
	* 'patch' no longer creates files with names containing newlines,
	  as encouraged by POSIX.1-2024.
	* Patches can no longer contain NUL ('\0') bytes in diff directive lines.
	  These bytes would otherwise cause unpredictable behavior.
	* Patches can now contain sequences of spaces and tabs around line numbers
	  and in other places where POSIX requires support for these sequences.
	* --enable-gcc-warnings no longer uses expensive static checking.
	  Use --enable-gcc-warnings=expensive if you still want it.
	* Fix undefined or ill-defined behavior in unusual cases, such as very
	  large sizes, possible stack overflow, I/O errors, memory exhaustion,
	  races with other processes, and signals arriving at inopportune moments.
	* Remove old "Plan B" code, designed for machines with 16-bit pointers.
	* Assume C99 or later; previously it assumed C89 or later.
	* Port to current GCC, Autoconf, Gnulib, etc.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/patch | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/patch b/lfs/patch
index 039fc2376..2569222de 100644
--- a/lfs/patch
+++ b/lfs/patch
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2019  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2025  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.7.6
+VER        = 2.8
 
 THISAPP    = patch-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -47,7 +47,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = e3dd2d155a94c39cb60eafc26677e84de14c3a6d5814dff69de091ded52f21862490970254297795f2c42a0c3203f7e88a8f65bb66968f8dfd6e066bf53f2dfb
+$(DL_FILE)_BLAKE2 = 687f566201adb2e32c3832b911adaddd9994aacb25b66886d6315bfe2752e09fd551b3856a39024b8472b2d95efebf412d4a7c085812a13620de811073a397ad
 
 install : $(TARGET)
 
-- 
2.49.0



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH] tshark: Update to version 4.4.6
  2025-05-04 13:17 [PATCH] diffutils: Update to version 3.12 Adolf Belka
                   ` (4 preceding siblings ...)
  2025-05-04 13:17 ` [PATCH] patch: Update to version 2.8 Adolf Belka
@ 2025-05-04 13:17 ` Adolf Belka
  2025-05-04 13:17 ` [PATCH] xfsprogs: Update to version 6.14.0 Adolf Belka
  6 siblings, 0 replies; 8+ messages in thread
From: Adolf Belka @ 2025-05-04 13:17 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 4.4.5 to 4.4.6
- Update of rootfile
- Changelog
    4.4.6
	Bug Fixes
	    Bug in EtherCAT dissector with ECS order. Issue 13718.
	    Conversation dialog columns return to default width on each new packet in
		live capture. Issue 15978.
	    Tests fail in LTO-enabled builds in Ubuntu/Debian. Issue 18216.
	    Incorrect conditions in BFCP dissector. Issue 18717.
	    Static build fails on Ubuntu 24.04 because the c-ares library isn’t found.
		Issue 20343.
	    Flutter’s Image Picker Generated JPEG Files Detected as Malformed Packet.
		Issue 20355.
	    QUIC dissector breaks when src and dst change. Issue 20371.
	    s390x: build fail on Ubuntu PPA nighty build. Issue 20372.
	    Trailing octet after IPv4 packet end is not detected or displayed in raw
		bytes. Issue 20423.
	    [packet-ax25-nol3.c] Only call APRS dissector on UI Frames. Issue 20429.
	    Wireshark hangs when refreshing interfaces with the debug console
		preference set to "always" and a file open (Windows) Issue 20434.
	    BGP EVPN - Type-8 route not correctly read after addition of Max. Response
		Time field. Issue 20459.
	    Wireshark does not correctly decode LIN "go to sleep" in TECMP and CMP.
		Issue 20463.
	    MQTT-SN: WILLTOPIC message not decoded correctly (missing some flags) Issue
		20476.
	New Protocol Support
		There are no new protocols in this release.
	Updated Protocol Support
		ADB, ASAM CMP, AX.25, BACapp, BFCP, BGP, CP2179, DCERPC WKSSVC, DCT2000,
		DECT-NWK, DHCP, DOF, EAPOL-MKA, ECAT, ErlDP, Ethertype, F1AP, GSM BSSMAP,
		GSM DTAP, HomePlug AV, ICMP, IEEE 802.11, ITS, LDP, MQTT-SN, NAS-EPS,
		NR RRC, OER, PCEP, PNIO, PPP, QUAKE, QUIC, Raw, Signal PDU, TCP, TECMP,
		TLS, and USB DFU
	New and Updated Capture File Support
		3GPP and pcapng
	Updated File Format Decoding Support
		There is no updated file format support in this release.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/packages/tshark | 4 ++--
 lfs/tshark                       | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/config/rootfiles/packages/tshark b/config/rootfiles/packages/tshark
index 35a781aa4..9d3973b37 100644
--- a/config/rootfiles/packages/tshark
+++ b/config/rootfiles/packages/tshark
@@ -12,10 +12,10 @@ usr/bin/dumpcap
 usr/bin/tshark
 #usr/lib/libwireshark.so
 usr/lib/libwireshark.so.18
-usr/lib/libwireshark.so.18.0.5
+usr/lib/libwireshark.so.18.0.6
 #usr/lib/libwiretap.so
 usr/lib/libwiretap.so.15
-usr/lib/libwiretap.so.15.0.5
+usr/lib/libwiretap.so.15.0.6
 #usr/lib/libwsutil.so
 usr/lib/libwsutil.so.16
 usr/lib/libwsutil.so.16.0.0
diff --git a/lfs/tshark b/lfs/tshark
index 2ae6ddf21..7289c9cd1 100644
--- a/lfs/tshark
+++ b/lfs/tshark
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = A Network Traffic Analyser
 
-VER        = 4.4.5
+VER        = 4.4.6
 
 THISAPP    = wireshark-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -35,7 +35,7 @@ DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = tshark
 DEPS       = c-ares
-PAK_VER    = 24
+PAK_VER    = 25
 
 SERVICES   =
 
@@ -47,7 +47,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 0cefe4330d1d0e40b101c33d767796d4657ed1cf7fc652732663b99d5849ef0c2f5905b1c07137dc306c18d66240701eefd8f018bf78c078caa1a04f642048da
+$(DL_FILE)_BLAKE2 = e38e2e53cc058d24d08e047322333bafc281839e9c244f69b657ec184238b73fd2e793538fb375983487a3b25c8395fabee410062ac4ad51dfed4b81c4d06d88
 
 install : $(TARGET)
 
-- 
2.49.0



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH] xfsprogs: Update to version 6.14.0
  2025-05-04 13:17 [PATCH] diffutils: Update to version 3.12 Adolf Belka
                   ` (5 preceding siblings ...)
  2025-05-04 13:17 ` [PATCH] tshark: Update to version 4.4.6 Adolf Belka
@ 2025-05-04 13:17 ` Adolf Belka
  6 siblings, 0 replies; 8+ messages in thread
From: Adolf Belka @ 2025-05-04 13:17 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 6.13.0 to 6.14.0
- Update of rootfile not required
- Changelog
    6.14.0
	xfs_scrub_all: localize the strings in the program (Darrick J. Wong)
	xfs_protofile: add messages to localization catalog (Darrick J. Wong)
	Makefile: inject package name/version/bugreport into pot file (Darrick J. Wong)
	xfs_scrub_all: rename source code to .py.in (Darrick J. Wong)
	xfs_protofile: rename source code to .py.in (Darrick J. Wong)
	xfs_repair: handling a block with bad crc, bad uuid, and bad magic number needs
	 fixing (Bill O'Donnell)
	xfs_repair: fix stupid argument error in verify_inode_chunk (Darrick J. Wong)
	xfs_repair: fix infinite loop in longform_dir2_entry_check* (Darrick J. Wong)
	xfs_repair: fix crash in reset_rt_metadir_inodes (Darrick J. Wong)
	xfs_repair: don't recreate /quota metadir if there are no quota inodes
	 (Darrick J. Wong)
	xfs_repair: fix wording of error message about leftover CoW blocks on the rt
	 device (Darrick J. Wong)
	xfs_io: Add cachestat syscall support (Ritesh Harjani (IBM))
	xfs_io: Add RWF_DONTCACHE support to preadv2 (Ritesh Harjani (IBM))
	xfs_io: Add RWF_DONTCACHE support to pwritev2 (Ritesh Harjani (IBM))
	xfs_io: Add support for preadv2 (Ritesh Harjani (IBM))
	make: remove the .extradep file in libxfs on "make clean" (Theodore Ts'o)
	xfs_{admin,repair},man5: tell the user to mount with nouuid for snapshots
	 (Darrick J. Wong)
	xfsprogs: Fix mismatched return type of filesize() (Pavel Reichl)
	xfs_io: don't fail FS_IOC_FSGETXATTR on filesystems that lack support (Anthony
	 Iliopoulos)
	configure: additionally get icu-uc from pkg-config (Alyssa Ross)
	xfs_scrub: use the display mountpoint for reporting file corruptions (Darrick
	 J. Wong)
	xfs_scrub: don't warn about zero width joiner control characters (Darrick J.
	 Wong)
	xfs_scrub: fix buffer overflow in string_escape (Darrick J. Wong)
	xfs_db: add command to copy directory trees out of filesystems (Darrick J. Wong)
	xfs_db: make listdir more generally useful (Darrick J. Wong)
	xfs_db: use an empty transaction to try to prevent livelocks in path_navigate
	 (Darrick J. Wong)
	xfs_db: pass const pointers when we're not modifying them (Darrick J. Wong)
	mkfs: enable reflink on the realtime device (Darrick J. Wong)
	mkfs: validate CoW extent size hint when rtinherit is set (Darrick J. Wong)
	xfs_logprint: report realtime CUIs (Darrick J. Wong)
	xfs_repair: validate CoW extent size hint on rtinherit directories (Darrick J.
	 Wong)
	xfs_repair: allow realtime files to have the reflink flag set (Darrick J. Wong)
	xfs_repair: rebuild the realtime refcount btree (Darrick J. Wong)
	xfs_repair: reject unwritten shared extents (Darrick J. Wong)
	xfs_repair: check existing realtime refcountbt entries against observed
	 refcounts (Darrick J. Wong)
	xfs_repair: compute refcount data for the realtime groups (Darrick J. Wong)
	xfs_repair: find and mark the rtrefcountbt inode (Darrick J. Wong)
	xfs_repair: use realtime refcount btree data to check block types (Darrick J.
	 Wong)
	xfs_repair: allow CoW staging extents in the realtime rmap records (Darrick J.
	 Wong)
	xfs_spaceman: report health of the realtime refcount btree (Darrick J. Wong)
	xfs_db: add rtrefcount reservations to the rgresv command (Darrick J. Wong)
	xfs_db: copy the realtime refcount btree (Darrick J. Wong)
	xfs_db: support the realtime refcountbt (Darrick J. Wong)
	xfs_db: display the realtime refcount btree contents (Darrick J. Wong)
	man: document userspace API changes due to rt reflink (Darrick J. Wong)
	mkfs: create the realtime rmap inode (Darrick J. Wong)
	xfs_logprint: report realtime RUIs (Darrick J. Wong)
	xfs_repair: reserve per-AG space while rebuilding rt metadata (Darrick J. Wong)
	xfs_repair: rebuild the bmap btree for realtime files (Darrick J. Wong)
	xfs_repair: check for global free space concerns with default btree slack
	 levels (Darrick J. Wong)
	xfs_repair: rebuild the realtime rmap btree (Darrick J. Wong)
	xfs_repair: always check realtime file mappings against incore info (Darrick J.
	 Wong)
	xfs_repair: check existing realtime rmapbt entries against observed rmaps
	 (Darrick J. Wong)
	xfs_repair: find and mark the rtrmapbt inodes (Darrick J. Wong)
	xfs_repair: refactor realtime inode check (Darrick J. Wong)
	xfs_repair: create a new set of incore rmap information for rt groups (Darrick
	 J. Wong)
	xfs_repair: use realtime rmap btree data to check block types (Darrick J. Wong)
	xfs_repair: flag suspect long-format btree blocks (Darrick J. Wong)
	xfs_repair: tidy up rmap_diffkeys (Darrick J. Wong)
	xfs_spaceman: report health status of the realtime rmap btree (Darrick J. Wong)
	xfs_db: add an rgresv command (Darrick J. Wong)
	xfs_db: make fsmap query the realtime reverse mapping tree (Darrick J. Wong)
	xfs_db: copy the realtime rmap btree (Darrick J. Wong)
	xfs_db: support the realtime rmapbt (Darrick J. Wong)
	xfs_db: display the realtime rmap btree contents (Darrick J. Wong)
	xfs_db: don't abort when bmapping on a non-extents/bmbt fork (Darrick J. Wong)
	xfs_db: compute average btree height (Darrick J. Wong)
	man: document userspace API changes due to rt rmap (Darrick J. Wong)
	xfs_scrub: try harder to fill the bulkstat array with bulkstat() (Darrick J.
	 Wong)
	xfs_scrub: ignore freed inodes when single-stepping during phase 3 (Darrick J.
	 Wong)
	xfs_scrub: hoist the phase3 bulkstat single stepping code (Darrick J. Wong)
	xfs_scrub: don't blow away new inodes in bulkstat_single_step (Darrick J. Wong)
	xfs_scrub: return early from bulkstat_for_inumbers if no bulkstat data
	 (Darrick J. Wong)
	xfs_scrub: don't complain if bulkstat fails (Darrick J. Wong)
	xfs_scrub: don't (re)set the bulkstat request icount incorrectly (Darrick J.
	 Wong)
	xfs_scrub: don't double-scan inodes during phase 3 (Darrick J. Wong)
	xfs_scrub: actually iterate all the bulkstat records (Darrick J. Wong)
	xfs_scrub: selectively re-run bulkstat after re-running inumbers (Darrick J.
	 Wong)
	xfs_scrub: remove flags argument from scrub_scan_all_inodes (Darrick J. Wong)
	xfs_scrub: call bulkstat directly if we're only scanning user files (Darrick
	 J. Wong)
	xfs_scrub: don't report data loss in unlinked inodes twice (Darrick J. Wong)
	man: document new XFS_BULK_IREQ_METADIR flag to bulkstat (Darrick J. Wong)
	xfs_db: obfuscate rt superblock label when metadumping (Darrick J. Wong)
	mkfs,xfs_repair: don't pass a daddr as the flags argument (Darrick J. Wong)

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/xfsprogs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lfs/xfsprogs b/lfs/xfsprogs
index 29540a6a1..86d77eb85 100644
--- a/lfs/xfsprogs
+++ b/lfs/xfsprogs
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 6.13.0
+VER        = 6.14.0
 
 THISAPP    = xfsprogs-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -46,7 +46,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 98a8b51ba7fb7f58ea292e9c4624ca3c2337d962f832d92549763a85036b8ba0579de0d172465227eb51cc5c51e3b5d4f54144690001ea8b6795b3a43bc41b9b
+$(DL_FILE)_BLAKE2 = 5ef446b2055356627cd91ebfe9bb07388f9b5a12fd8c530b83980261b2dc3ddfa47f809114f0f238ef787ed687d324abe82427fdc2b3ecc3171d4d06615dd0c4
 
 install : $(TARGET)
 
-- 
2.49.0



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2025-05-04 13:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-05-04 13:17 [PATCH] diffutils: Update to version 3.12 Adolf Belka
2025-05-04 13:17 ` [PATCH] gawk: Update to version 5.3.2 Adolf Belka
2025-05-04 13:17 ` [PATCH] grep: Update to version 3.12 Adolf Belka
2025-05-04 13:17 ` [PATCH] harfbuzz: Update to version 11.2.0 Adolf Belka
2025-05-04 13:17 ` [PATCH] hwdata: Update to version 0.394 Adolf Belka
2025-05-04 13:17 ` [PATCH] patch: Update to version 2.8 Adolf Belka
2025-05-04 13:17 ` [PATCH] tshark: Update to version 4.4.6 Adolf Belka
2025-05-04 13:17 ` [PATCH] xfsprogs: Update to version 6.14.0 Adolf Belka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox