public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] gptfdisk: Update to version 1.0.9
@ 2022-07-08 20:54 Adolf Belka
  2022-07-09  9:03 ` Peter Müller
  0 siblings, 1 reply; 2+ messages in thread
From: Adolf Belka @ 2022-07-08 20:54 UTC (permalink / raw)
  To: development

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

- Update from version 1.0.8 to 1.0.9
- No rootfile required
- Changelog
   1.0.9 (4/14/2022):
	- Removed stray debugging code that caused "partNum is {x}" to be printed
	  when changing a partition's name with sgdisk (-c/--change-name).
	- Added support for aligning partitions' end points, as well as their start
	  points. This support affects the default partition size when using 'n' in
	  gdisk; it affects the default partition size in cgdisk; and it's activated
	  by the new '-I' option in sgdisk. See the programs' respective man pages
	  for details. This feature is intended to help with LUKS2 encryption, which
	  reacts badly to partitions that are not sized as exact multiples of the
	  encryption block size.
	- Added check for too-small disks (most likely to be an issue when trying
	  to use a too-small disk image); program now aborts if this happens.
	- Added the ability to build sgdisk and cgdisk for Windows.
	- Added new type codes:
	  * FreeBSD nandfs (0xa506)
	  * Apple APFS Pre-Boot (0xaf0b)
	  * Apple APFS Recovery (0xaf0c)
	  * ChromeOS firmware (0x7f03)
	  * ChromeOS mini-OS (0x7f04)
	  * ChromeOS hibernate (0x7f05)
	  * U-Boot boot loader (0xb000)
	  * 27 (!) codes for Fuchsia (0xf100 to 0xf11a)
	- Fixed build problems with recent versions of ncurses.
	- Fixed bug that caused cgdisk to report incorrect partition attributes.
	- Consolidated Makefiles for Linux, FreeBSD, Solaris, macOS, and Windows
	  (32- and 64-bit). The old OS-specific Makefiles remain in case the new
	  consolidated Makefile has problems, but the old ones are deprecated.
	  (The Solaris support in the new Makefile is untested.)

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

diff --git a/lfs/gptfdisk b/lfs/gptfdisk
index 7ec1923b8..eb1c60357 100644
--- a/lfs/gptfdisk
+++ b/lfs/gptfdisk
@@ -25,7 +25,7 @@
 
 include Config
 
-VER        = 1.0.8
+VER        = 1.0.9
 
 THISAPP    = gptfdisk-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -33,7 +33,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG	    = gptfdisk
-PAK_VER    = 1
+PAK_VER    = 2
 
 DEPS	    =
 
@@ -45,7 +45,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 03c74c43fead13e90ff6cd42405e15db726f527801a9e3f1d5f6a83d3fa58f0f8e58b35edc1b12b0b2e6c7849b657ce4493ac67204d25309e6f63fe7f57f766b
+$(DL_FILE)_BLAKE2 = 1939ffd75972a4d7f92af2bfab90c7b0223825b5478b6b808dd35af943c687d38ba81663cd7ba5e0f9400656db4dac019c13a9f75d90b7bd716568c676c24dd2
 
 install : $(TARGET)
 
-- 
2.37.0


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

* Re: [PATCH] gptfdisk: Update to version 1.0.9
  2022-07-08 20:54 [PATCH] gptfdisk: Update to version 1.0.9 Adolf Belka
@ 2022-07-09  9:03 ` Peter Müller
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Müller @ 2022-07-09  9:03 UTC (permalink / raw)
  To: development

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

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

> - Update from version 1.0.8 to 1.0.9
> - No rootfile required
> - Changelog
>    1.0.9 (4/14/2022):
> 	- Removed stray debugging code that caused "partNum is {x}" to be printed
> 	  when changing a partition's name with sgdisk (-c/--change-name).
> 	- Added support for aligning partitions' end points, as well as their start
> 	  points. This support affects the default partition size when using 'n' in
> 	  gdisk; it affects the default partition size in cgdisk; and it's activated
> 	  by the new '-I' option in sgdisk. See the programs' respective man pages
> 	  for details. This feature is intended to help with LUKS2 encryption, which
> 	  reacts badly to partitions that are not sized as exact multiples of the
> 	  encryption block size.
> 	- Added check for too-small disks (most likely to be an issue when trying
> 	  to use a too-small disk image); program now aborts if this happens.
> 	- Added the ability to build sgdisk and cgdisk for Windows.
> 	- Added new type codes:
> 	  * FreeBSD nandfs (0xa506)
> 	  * Apple APFS Pre-Boot (0xaf0b)
> 	  * Apple APFS Recovery (0xaf0c)
> 	  * ChromeOS firmware (0x7f03)
> 	  * ChromeOS mini-OS (0x7f04)
> 	  * ChromeOS hibernate (0x7f05)
> 	  * U-Boot boot loader (0xb000)
> 	  * 27 (!) codes for Fuchsia (0xf100 to 0xf11a)
> 	- Fixed build problems with recent versions of ncurses.
> 	- Fixed bug that caused cgdisk to report incorrect partition attributes.
> 	- Consolidated Makefiles for Linux, FreeBSD, Solaris, macOS, and Windows
> 	  (32- and 64-bit). The old OS-specific Makefiles remain in case the new
> 	  consolidated Makefile has problems, but the old ones are deprecated.
> 	  (The Solaris support in the new Makefile is untested.)
> 
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
>  lfs/gptfdisk | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/lfs/gptfdisk b/lfs/gptfdisk
> index 7ec1923b8..eb1c60357 100644
> --- a/lfs/gptfdisk
> +++ b/lfs/gptfdisk
> @@ -25,7 +25,7 @@
>  
>  include Config
>  
> -VER        = 1.0.8
> +VER        = 1.0.9
>  
>  THISAPP    = gptfdisk-$(VER)
>  DL_FILE    = $(THISAPP).tar.gz
> @@ -33,7 +33,7 @@ DL_FROM    = $(URL_IPFIRE)
>  DIR_APP    = $(DIR_SRC)/$(THISAPP)
>  TARGET     = $(DIR_INFO)/$(THISAPP)
>  PROG	    = gptfdisk
> -PAK_VER    = 1
> +PAK_VER    = 2
>  
>  DEPS	    =
>  
> @@ -45,7 +45,7 @@ objects = $(DL_FILE)
>  
>  $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>  
> -$(DL_FILE)_BLAKE2 = 03c74c43fead13e90ff6cd42405e15db726f527801a9e3f1d5f6a83d3fa58f0f8e58b35edc1b12b0b2e6c7849b657ce4493ac67204d25309e6f63fe7f57f766b
> +$(DL_FILE)_BLAKE2 = 1939ffd75972a4d7f92af2bfab90c7b0223825b5478b6b808dd35af943c687d38ba81663cd7ba5e0f9400656db4dac019c13a9f75d90b7bd716568c676c24dd2
>  
>  install : $(TARGET)
>  

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

end of thread, other threads:[~2022-07-09  9:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-08 20:54 [PATCH] gptfdisk: Update to version 1.0.9 Adolf Belka
2022-07-09  9:03 ` 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