From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Tue, 20 Feb 2024 11:16:03 +0100 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 1rcNAR-00FuXM-2p for lore@lore.pengutronix.de; Tue, 20 Feb 2024 11:16:03 +0100 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 1rcNAR-000301-Lk; Tue, 20 Feb 2024 11:16:03 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1rcNAL-0002zm-K2; Tue, 20 Feb 2024 11:15:57 +0100 Received: from [2a0a:edc0:0:1101:1d::ac] (helo=dude04.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1rcNAL-001pCQ-71; Tue, 20 Feb 2024 11:15:57 +0100 Received: from rhi by dude04.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1rcNAL-004VbY-0X; Tue, 20 Feb 2024 11:15:57 +0100 From: Roland Hieber To: ptxdist@pengutronix.de Date: Tue, 20 Feb 2024 11:15:54 +0100 Message-Id: <20240220101554.1074123-1-rhi@pengutronix.de> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Mail-Followup-To: Roland Hieber , ptxdist@pengutronix.de Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH] rauc: version bump 1.10.1 -> 1.11.1 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: Roland Hieber 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 Until recently, RAUC's license was only given implicitly in the meson.build file, but v1.11 explicitly mentions LGPL-2.1-or-later in the README [1]. The license identifier in PTXdist was previously ported from "LGPL-2.1" to "LGPL-2.1-only" in PTXdist commit 4850f7aac30aebf4ef64 (2018-02-12, Michael Olbrich: "update all spdx license identifier to the new version") without adding any license file checksum as source, which turned out to be slightly incorrect. Fix the identifier based on the newly added patch, and pin down the checksum. Other than that, upstream dropped autotools support, so there is no need to have an '-meson' in the archive name; drop that. [1]: https://github.com/rauc/rauc/commit/b20002582f6c754a9161 Signed-off-by: Roland Hieber --- rules/rauc.make | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/rules/rauc.make b/rules/rauc.make index 660b5e52684f..50b1ec35d57c 100644 --- a/rules/rauc.make +++ b/rules/rauc.make @@ -14,15 +14,16 @@ PACKAGES-$(PTXCONF_RAUC) += rauc # # Paths and names # -RAUC_VERSION := 1.10.1 -RAUC_MD5 := 610621cc062d2fba41754335c7faee35 +RAUC_VERSION := 1.11.1 +RAUC_MD5 := 16e193e5e396a419a7ceee5777e7c077 RAUC := rauc-$(RAUC_VERSION) RAUC_SUFFIX := tar.xz RAUC_URL := https://github.com/rauc/rauc/releases/download/v$(RAUC_VERSION)/$(RAUC).$(RAUC_SUFFIX) -RAUC_SOURCE := $(SRCDIR)/$(RAUC)-meson.$(RAUC_SUFFIX) +RAUC_SOURCE := $(SRCDIR)/$(RAUC).$(RAUC_SUFFIX) RAUC_DIR := $(BUILDDIR)/$(RAUC) -RAUC_LICENSE := LGPL-2.1-only +RAUC_LICENSE := LGPL-2.1-or-later RAUC_LICENSE_FILES := \ + file://README.rst;startline=281;endline=294;md5=d98e15259a1a004b59d4701b3d49cf44 \ file://COPYING;md5=4fbd65380cdd255951079008b364516c # ---------------------------------------------------------------------------- @@ -39,7 +40,9 @@ RAUC_CONF_OPT := \ -Ddbusinterfacesdir=/usr/share/dbus-1/interfaces \ -Ddbuspolicydir=/usr/share/dbus-1/system.d \ -Ddbussystemservicedir=/usr/share/dbus-1/system-services \ + -Dfuzzing=false \ -Dgpt=$(call ptx/endis,PTXCONF_RAUC_GPT)d \ + -Dhtmldocs=false \ -Djson=$(call ptx/endis,PTXCONF_RAUC_JSON)d \ -Dnetwork=$(call ptx/truefalse,PTXCONF_RAUC_NETWORK) \ -Dservice=$(call ptx/truefalse,PTXCONF_RAUC_SERVICE) \ -- 2.39.2