From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 25 Jun 2026 21:23:48 +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 1wcpfw-009oj2-2K for lore@lore.pengutronix.de; Thu, 25 Jun 2026 21:23:48 +0200 Received: from [127.0.0.1] (helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1wcpfv-0008HP-KX; Thu, 25 Jun 2026 21:23:47 +0200 Received: from mx1.white.stw.pengutronix.de ([2a0a:edc0:0:b01:1d::107]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1wcpff-0007Kd-Se for ptxdist@pengutronix.de; Thu, 25 Jun 2026 21:23:31 +0200 Received: from drehscheibe.grey.stw.pengutronix.de (drehscheibe.grey.stw.pengutronix.de [IPv6:2a0a:edc0:0:c01:1d::a2]) (Authenticated sender: relay-from-drehscheibe.grey.stw.pengutronix.de) by mx1.white.stw.pengutronix.de (Postfix) with ESMTPSA id CADB6200954; Thu, 25 Jun 2026 21:23:31 +0200 (CEST) Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1wcpff-004dZ3-2Q; Thu, 25 Jun 2026 21:23:31 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.98.2) (envelope-from ) id 1wcpff-00000003UXi-2xAI; Thu, 25 Jun 2026 21:23:31 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Thu, 25 Jun 2026 21:23:31 +0200 Message-ID: <20260625192331.832383-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260619074744.1129667-2-ada@thorsis.com> References: <20260619074744.1129667-2-ada@thorsis.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] util-linux: Switch back from git to tarball download 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: Alexander Dahl 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 Thanks, applied as 13089cf480c362d10412e2761fb24459a03eaf53. Michael [sent from post-receive hook] On Thu, 25 Jun 2026 21:23:31 +0200, Alexander Dahl wrote: > Meanwhile util-linux release process checks tarballs have all the > meson.build files required, and meson build from tarball succeeds. > > Rolling back url related changes from commit c7f0ce7be8df ("util-linux: > Version bump. 2.39.3 -> 2.40"), which includes switching from tar.gz to > tar.xz, thus updating checksum. User might have some .tar.gz files from > git which are not equal to distributed .tar.gz files, but switching to > .tar.xz here should avoid checksum mismatches. > > Allows for verifying tarballs against .tar.sign and comparing checksums > to other distributions again. > > Link: https://github.com/util-linux/util-linux/issues/3460 > Signed-off-by: Alexander Dahl > Message-Id: <20260619074744.1129667-2-ada@thorsis.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/util-linux.make b/rules/util-linux.make > index f77666d7f83f..bf6817c2a565 100644 > --- a/rules/util-linux.make > +++ b/rules/util-linux.make > @@ -16,10 +16,11 @@ PACKAGES-$(PTXCONF_UTIL_LINUX) += util-linux > # Paths and names > # > UTIL_LINUX_VERSION := 2.42.1 > -UTIL_LINUX_SHA256 := 138a3bd9049afa5eeeea73f1e9c0ed7bddf3e55ba4ec29924965a932ec738f01 > +UTIL_LINUX_SHA256 := 82e9158eb12a9b0b569d84e1687fed9dd18fe89ccd8ef5ac3427218a7c0d7f7f > UTIL_LINUX := util-linux-$(UTIL_LINUX_VERSION) > -UTIL_LINUX_SUFFIX := tar.gz > -UTIL_LINUX_URL := https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git/snapshot/$(UTIL_LINUX).$(UTIL_LINUX_SUFFIX) > +UTIL_LINUX_SUFFIX := tar.xz > +UTIL_LINUX_BASENAME := v$(if $(filter 2,$(basename $(UTIL_LINUX_VERSION))),$(UTIL_LINUX_VERSION),$(basename $(UTIL_LINUX_VERSION))) > +UTIL_LINUX_URL := $(call ptx/mirror, KERNEL, utils/util-linux/$(UTIL_LINUX_BASENAME)/$(UTIL_LINUX).$(UTIL_LINUX_SUFFIX)) > UTIL_LINUX_SOURCE := $(SRCDIR)/$(UTIL_LINUX).$(UTIL_LINUX_SUFFIX) > UTIL_LINUX_DIR := $(BUILDDIR)/$(UTIL_LINUX) > UTIL_LINUX_LICENSE := GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.0-or-later AND BSD-3-Clause AND BSD-4-Clause AND MIT AND ISC AND public_domain