parted: Update to version 3.7

Message ID 20260426114418.122889-27-adolf.belka@ipfire.org
State Staged
Commit a5fe059ed9b086b90ea59c002244e957784f179d
Headers
Series parted: Update to version 3.7 |

Commit Message

Adolf Belka 26 Apr 2026, 11:44 a.m. UTC
- Update from version 3.6 to 3.7
- Update of rootfile
- Changelog
3.7
  Promoting alpha release to stable release 3.7
3.6.37
New Features
   hurd: Support USB device names
Bug Fixes
   Stop adding boot code into the MBR if it's zero when updating an
    existing msdos partition table.
   disk.c: Update metadata after reading partition table
   Fix initialization of atr_c_locale inside PED_ASSERT
   nilfs2: Fixed possible sigsegv in case of corrupted superblock
   libparted: Do not detect ext4 without journal as ext2
   libparted: Fix dvh disklabel unhandled exception
   libparted: Fix sun disklabel unhandled exception
   parted: fix do_version declaration to work with gcc 15
   libparted: Fail early when detecting nilfs2
   doc: Document IEC unit behavior in the manpage
   parted: Print the Fixing... message to stderr
   docs: Finish setup of libparted API docs
   libparted: link libparted-fs-resize.so to libuuid

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

Patch

diff --git a/config/rootfiles/common/parted b/config/rootfiles/common/parted
index bfd65096e..61063d3b2 100644
--- a/config/rootfiles/common/parted
+++ b/config/rootfiles/common/parted
@@ -30,6 +30,7 @@  usr/sbin/partprobe
 #usr/share/locale/da/LC_MESSAGES/parted.mo
 #usr/share/locale/de/LC_MESSAGES/parted.mo
 #usr/share/locale/es/LC_MESSAGES/parted.mo
+#usr/share/locale/fi/LC_MESSAGES/parted.mo
 #usr/share/locale/fr/LC_MESSAGES/parted.mo
 #usr/share/locale/fur/LC_MESSAGES/parted.mo
 #usr/share/locale/gl/LC_MESSAGES/parted.mo
diff --git a/lfs/parted b/lfs/parted
index b3632a3c0..ff48a62ec 100644
--- a/lfs/parted
+++ b/lfs/parted
@@ -1,7 +1,7 @@ 
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2023  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  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        #
@@ -26,7 +26,7 @@  include Config
 
 SUMMARY    = GNU partitioner
 
-VER        = 3.6
+VER        = 3.7
 
 THISAPP    = parted-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -45,7 +45,7 @@  objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 99b6d096e4db05144c98e9f0a9a97c647aa911ee5df031244b03d5223f709d43d9302cef12dd4b2f97f42ec476510561b7f8b3b1ef7cb09d0a7c4d512e7a6739
+$(DL_FILE)_BLAKE2 = 967a2c5e6f8d93bd8eff2fe9092413582437c7d33fb151ca5230c8acd0c32e94c90edcb83abed888da560f7fbfcc77ee31cda54ddc3c1af24b1a1c522ab83bca
 
 install : $(TARGET)
 
@@ -76,7 +76,9 @@  $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
 	$(UPDATE_AUTOMAKE)
-	cd $(DIR_APP) && ./configure --prefix=/usr --disable-device-mapper
+	cd $(DIR_APP) && ./configure \
+				--prefix=/usr \
+				--disable-device-mapper
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)