From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 14 Oct 2022 09:46:45 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ojFP4-008IJt-27 for lore@lore.pengutronix.de; Fri, 14 Oct 2022 09:46:45 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1ojFP2-0002Ec-8b; Fri, 14 Oct 2022 09:46:44 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ojFOt-00029L-RU; Fri, 14 Oct 2022 09:46:35 +0200 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1ojFOt-001RW5-3D; Fri, 14 Oct 2022 09:46:35 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1ojFOs-009WN4-EI; Fri, 14 Oct 2022 09:46:34 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Fri, 14 Oct 2022 09:46:34 +0200 Message-Id: <20221014074634.2269334-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20221006142216.3469201-1-christian.melki@t2data.com> References: <20221006142216.3469201-1-christian.melki@t2data.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] host-opkg-utils: Fix tarball format. 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: Christian Melki 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.ext.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 6dc8fedeee27ce2abd1b85ec047012c8bdc455a9. Michael [sent from post-receive hook] On Fri, 14 Oct 2022 09:46:34 +0200, Christian Melki wrote: > git.yoctoproject.org killed off their snapshot functionality yesterday. > Apparently too taxing to handle on the fly, thinking that nothing but > web crawlers was using snapshot. Not realizing that even the yocto poky > recipe was still using it. > > After pointing it out, they've re-enabled the functionality. > But only for gz. > Their recipe will probably be rewritten to do git fetches instead. > > So expect this to move to git only in the future. > But for now, just move it to .gz instead of .bz2. > > Signed-off-by: Christian Melki > Message-Id: <20221006142216.3469201-1-christian.melki@t2data.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/host-opkg-utils.make b/rules/host-opkg-utils.make > index da77db02405d..159eac64bfb6 100644 > --- a/rules/host-opkg-utils.make > +++ b/rules/host-opkg-utils.make > @@ -15,9 +15,9 @@ HOST_PACKAGES-$(PTXCONF_HOST_OPKG_UTILS) += host-opkg-utils > # Paths and names > # > HOST_OPKG_UTILS_VERSION := 0.5.0 > -HOST_OPKG_UTILS_MD5 := 475a85baea919752a21fcd1952aff7b8 > +HOST_OPKG_UTILS_MD5 := c71939ee02c69462bd3ba1fe0d6de5e2 > HOST_OPKG_UTILS := opkg-utils-$(HOST_OPKG_UTILS_VERSION) > -HOST_OPKG_UTILS_SUFFIX := tar.bz2 > +HOST_OPKG_UTILS_SUFFIX := tar.gz > HOST_OPKG_UTILS_URL := http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/snapshot/$(HOST_OPKG_UTILS).$(HOST_OPKG_UTILS_SUFFIX) > HOST_OPKG_UTILS_SOURCE := $(SRCDIR)/$(HOST_OPKG_UTILS).$(HOST_OPKG_UTILS_SUFFIX) > HOST_OPKG_UTILS_DIR := $(HOST_BUILDDIR)/$(HOST_OPKG_UTILS)