From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 13 Jun 2024 15:11:06 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1sHkEM-005Nkq-0W for lore@lore.pengutronix.de; Thu, 13 Jun 2024 15:11:06 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1sHkEL-0006EV-Bc; Thu, 13 Jun 2024 15:11:05 +0200 Received: from smtp80.iad3b.emailsrvr.com ([146.20.161.80]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1sHkE2-0006CO-8M for ptxdist@pengutronix.de; Thu, 13 Jun 2024 15:10:47 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=mev.co.uk; s=20221208-6x11dpa4; t=1718284244; bh=nP1Ejld9N2keAcdHjEuXDn9DM8d9nnNcakVQ/2CW4aU=; h=From:To:Subject:Date:From; b=xhGe5Dcx9E4o4wV6670pbYNqwwGZv/aTMmRXu8pezjfBvObc7vXnJBqVTwc1b14Rv vaxuZ5cgZuYBWBjVITkjjER2rEKTSBbrbNpYz1gVJ4lXHC7cpuxfcMZOYTy6fSyGiH XgacS7lRsD3d/UlERZ5RvBze7XrfbpXHnnh5LboQ= X-Auth-ID: abbotti@mev.co.uk Received: by smtp19.relay.iad3b.emailsrvr.com (Authenticated sender: abbotti-AT-mev.co.uk) with ESMTPSA id 7BD46402B8; Thu, 13 Jun 2024 09:10:44 -0400 (EDT) From: Ian Abbott To: ptxdist@pengutronix.de Date: Thu, 13 Jun 2024 14:10:34 +0100 Message-ID: <20240613131034.309711-1-abbotti@mev.co.uk> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Classification-ID: 8c35855a-3ed9-4fdf-835f-1b2fec105873-1-1 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.whiteo.stw.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-3.6 required=4.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_PASS, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.2 Subject: [ptxdist] [PATCH] parted: Version bump. 3.3 -> 3.6 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Ian Abbott Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Mostly bug fixes. Relevant new features include: * New partition type flag 'bls_boot' for Linux Boot Loader Specification /boot partitions. * 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 labeled disks. * Allow the partition name to be an empty string when set in script mode. * Add --json to output the details of the disk as JSON. * Add support for the Linux home GUID using the 'linux-home' flag. * Support GPT partition attribute bit 63 as no_automount flag. * Add type commands to set 'type-id' on MS-DOS and 'type-uuid' on GPT. https://git.savannah.gnu.org/cgit/parted.git/tree/NEWS?h=v3.6 Signed-off-by: Ian Abbott --- rules/parted.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/parted.make b/rules/parted.make index eca3f9eee..cc3f92fc8 100644 --- a/rules/parted.make +++ b/rules/parted.make @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_PARTED) += parted # # Paths and names # -PARTED_VERSION := 3.3 -PARTED_MD5 := 090655d05f3c471aa8e15a27536889ec +PARTED_VERSION := 3.6 +PARTED_MD5 := 93d2d8f22baebc5eb65b85da05a79e4e PARTED := parted-$(PARTED_VERSION) PARTED_SUFFIX := tar.xz PARTED_URL := $(call ptx/mirror, GNU, parted/$(PARTED).$(PARTED_SUFFIX)) -- 2.43.0