public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] parted: Update to version 3.5
@ 2022-04-23 21:25 Adolf Belka
  2022-04-24 14:10 ` Peter Müller
  0 siblings, 1 reply; 2+ messages in thread
From: Adolf Belka @ 2022-04-23 21:25 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 3236 bytes --]

- Update from 3.4 to 3.5
- Update of rootfile
- Changelog
   * Noteworthy changes in release 3.5 (2022-04-18) [stable]
	** New Features
	  Update to latest gnulib for 3.5 release
   * Noteworthy changes in release 3.4.64.2 (2022-04-05) [alpha]
	** Bug Fixes
	  usage: remove the mention of "a particular partition"
   * Noteworthy changes in release 3.4.64 (2022-03-30) [alpha]
	** New Features
	  Add --fix to --script mode to automatically fix problems like the backup
	  GPT header not being at the end of a disk.
	  Add use of the swap partition flag to msdos disk labeled disks.
	  Allow the partition name to be an empty string when set in script mode.
	  Add --json command line switch to output the details of the disk as JSON.
	  Add support for the Linux home GUID using the linux-home flag.
	** Bug Fixes
	  Decrease disk sizes used in tests to make it easier to run the test suite
	  on systems with less memory. Largest filesystem is now 267MB (fat32). The
	  rest are only 10MB.
	  Add aarch64 and mips64 as valid machines for testing.
	  Escape colons and backslashes in the machine output. Device path,
	  model, and partition name could all include these. They are now
	  escaped with a backslash.
	  Use libdevmapper's retry remove option when the device is BUSY. This
	  prevents libdevmapper from printing confusin output when trying to
	  remove a busy partition.
	  Keep GUID specific attributes when writing the GPT header. Previously
	  they were set to 0.

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

diff --git a/config/rootfiles/common/parted b/config/rootfiles/common/parted
index 0dab6ae3b..d88a506c5 100644
--- a/config/rootfiles/common/parted
+++ b/config/rootfiles/common/parted
@@ -14,12 +14,12 @@
 #usr/lib/libparted-fs-resize.la
 #usr/lib/libparted-fs-resize.so
 usr/lib/libparted-fs-resize.so.0
-usr/lib/libparted-fs-resize.so.0.0.3
+usr/lib/libparted-fs-resize.so.0.0.4
 #usr/lib/libparted.a
 #usr/lib/libparted.la
 #usr/lib/libparted.so
 usr/lib/libparted.so.2
-usr/lib/libparted.so.2.0.3
+usr/lib/libparted.so.2.0.4
 #usr/lib/pkgconfig/libparted-fs-resize.pc
 #usr/lib/pkgconfig/libparted.pc
 usr/sbin/parted
diff --git a/lfs/parted b/lfs/parted
index 09a6423a9..78914aa98 100644
--- a/lfs/parted
+++ b/lfs/parted
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = GNU partitioner
 
-VER        = 3.4
+VER        = 3.5
 
 THISAPP    = parted-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -35,7 +35,7 @@ DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 
 PROG       = parted
-PAK_VER    = 4
+PAK_VER    = 5
 
 DEPS       =
 
@@ -49,7 +49,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = c724d3d1490c62d440b9e5dc359fef7ff623bc77ae5f867d8905245cb279ec391fa07a1a774488ad3bf7a2c477007264d7bab2635a544be8f94dc706a654a711
+$(DL_FILE)_BLAKE2 = 5a63987f4d2c0bfd28f36112c2354f8dce7f87e962f4772bb0db34c070dd773b280959c6c33128422e8d60efe454c825401551c3c88541839b9a859a3d207f55
 
 install : $(TARGET)
 
-- 
2.36.0


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

* Re: [PATCH] parted: Update to version 3.5
  2022-04-23 21:25 [PATCH] parted: Update to version 3.5 Adolf Belka
@ 2022-04-24 14:10 ` Peter Müller
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Müller @ 2022-04-24 14:10 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 3454 bytes --]

Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>

> - Update from 3.4 to 3.5
> - Update of rootfile
> - Changelog
>    * Noteworthy changes in release 3.5 (2022-04-18) [stable]
> 	** New Features
> 	  Update to latest gnulib for 3.5 release
>    * Noteworthy changes in release 3.4.64.2 (2022-04-05) [alpha]
> 	** Bug Fixes
> 	  usage: remove the mention of "a particular partition"
>    * Noteworthy changes in release 3.4.64 (2022-03-30) [alpha]
> 	** New Features
> 	  Add --fix to --script mode to automatically fix problems like the backup
> 	  GPT header not being at the end of a disk.
> 	  Add use of the swap partition flag to msdos disk labeled disks.
> 	  Allow the partition name to be an empty string when set in script mode.
> 	  Add --json command line switch to output the details of the disk as JSON.
> 	  Add support for the Linux home GUID using the linux-home flag.
> 	** Bug Fixes
> 	  Decrease disk sizes used in tests to make it easier to run the test suite
> 	  on systems with less memory. Largest filesystem is now 267MB (fat32). The
> 	  rest are only 10MB.
> 	  Add aarch64 and mips64 as valid machines for testing.
> 	  Escape colons and backslashes in the machine output. Device path,
> 	  model, and partition name could all include these. They are now
> 	  escaped with a backslash.
> 	  Use libdevmapper's retry remove option when the device is BUSY. This
> 	  prevents libdevmapper from printing confusin output when trying to
> 	  remove a busy partition.
> 	  Keep GUID specific attributes when writing the GPT header. Previously
> 	  they were set to 0.
> 
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
>  config/rootfiles/common/parted | 4 ++--
>  lfs/parted                     | 6 +++---
>  2 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/config/rootfiles/common/parted b/config/rootfiles/common/parted
> index 0dab6ae3b..d88a506c5 100644
> --- a/config/rootfiles/common/parted
> +++ b/config/rootfiles/common/parted
> @@ -14,12 +14,12 @@
>  #usr/lib/libparted-fs-resize.la
>  #usr/lib/libparted-fs-resize.so
>  usr/lib/libparted-fs-resize.so.0
> -usr/lib/libparted-fs-resize.so.0.0.3
> +usr/lib/libparted-fs-resize.so.0.0.4
>  #usr/lib/libparted.a
>  #usr/lib/libparted.la
>  #usr/lib/libparted.so
>  usr/lib/libparted.so.2
> -usr/lib/libparted.so.2.0.3
> +usr/lib/libparted.so.2.0.4
>  #usr/lib/pkgconfig/libparted-fs-resize.pc
>  #usr/lib/pkgconfig/libparted.pc
>  usr/sbin/parted
> diff --git a/lfs/parted b/lfs/parted
> index 09a6423a9..78914aa98 100644
> --- a/lfs/parted
> +++ b/lfs/parted
> @@ -26,7 +26,7 @@ include Config
>  
>  SUMMARY    = GNU partitioner
>  
> -VER        = 3.4
> +VER        = 3.5
>  
>  THISAPP    = parted-$(VER)
>  DL_FILE    = $(THISAPP).tar.xz
> @@ -35,7 +35,7 @@ DIR_APP    = $(DIR_SRC)/$(THISAPP)
>  TARGET     = $(DIR_INFO)/$(THISAPP)
>  
>  PROG       = parted
> -PAK_VER    = 4
> +PAK_VER    = 5
>  
>  DEPS       =
>  
> @@ -49,7 +49,7 @@ objects = $(DL_FILE)
>  
>  $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>  
> -$(DL_FILE)_BLAKE2 = c724d3d1490c62d440b9e5dc359fef7ff623bc77ae5f867d8905245cb279ec391fa07a1a774488ad3bf7a2c477007264d7bab2635a544be8f94dc706a654a711
> +$(DL_FILE)_BLAKE2 = 5a63987f4d2c0bfd28f36112c2354f8dce7f87e962f4772bb0db34c070dd773b280959c6c33128422e8d60efe454c825401551c3c88541839b9a859a3d207f55
>  
>  install : $(TARGET)
>  

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

end of thread, other threads:[~2022-04-24 14:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-23 21:25 [PATCH] parted: Update to version 3.5 Adolf Belka
2022-04-24 14:10 ` Peter Müller

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