From 56309fd1403ed32c7e41ad4c160eb73cc3ed8c4c Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Fri, 15 Apr 2022 05:38:33 +0000 Subject: [PATCH] gptfdisk: update to 1.0.9 release notes: - https://sourceforge.net/p/gptfdisk/code/ci/master/tree/NEWS 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.) --- packages/sysutils/gptfdisk/package.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/sysutils/gptfdisk/package.mk b/packages/sysutils/gptfdisk/package.mk index abb8f034df..09698df29f 100644 --- a/packages/sysutils/gptfdisk/package.mk +++ b/packages/sysutils/gptfdisk/package.mk @@ -2,8 +2,8 @@ # Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv) PKG_NAME="gptfdisk" -PKG_VERSION="1.0.8" -PKG_SHA256="95d19856f004dabc4b8c342b2612e8d0a9eebdd52004297188369f152e9dc6df" +PKG_VERSION="1.0.9" +PKG_SHA256="dafead2693faeb8e8b97832b23407f6ed5b3219bc1784f482dd855774e2d50c2" PKG_LICENSE="GPL" PKG_SITE="http://www.rodsbooks.com/gdisk/" PKG_URL="https://downloads.sourceforge.net/project/${PKG_NAME}/${PKG_NAME}/${PKG_VERSION}/${PKG_NAME}-${PKG_VERSION}.tar.gz"