From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 26 Sep 2024 15:19:03 +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 1stoOc-00310C-1H for lore@lore.pengutronix.de; Thu, 26 Sep 2024 15:19:03 +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 1stoOc-00088q-W3; Thu, 26 Sep 2024 15:19:03 +0200 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 1stoOV-00088O-0E; Thu, 26 Sep 2024 15:18:55 +0200 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.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 1stoOU-001h8U-K4; Thu, 26 Sep 2024 15:18:54 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1stoOU-007CnM-1r; Thu, 26 Sep 2024 15:18:54 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Thu, 26 Sep 2024 15:18:54 +0200 Message-Id: <20240926131854.1717473-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20240918-gnupg-gpgtar-v2-1-337e7622a0b5@pengutronix.de> References: <20240918-gnupg-gpgtar-v2-1-337e7622a0b5@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] gnupg: add gpgtar option 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: Jonas Rebmann 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 ef48ae5c83e2fccb3217f68ae50ea98fb2734e14. Michael [sent from post-receive hook] On Thu, 26 Sep 2024 15:18:54 +0200, Jonas Rebmann wrote: > we do need the gpgtar utility so an option to enable it would be helpful. > > Signed-off-by: Jonas Rebmann > Message-Id: <20240918-gnupg-gpgtar-v2-1-337e7622a0b5@pengutronix.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/gnupg.in b/rules/gnupg.in > index e515be093e20..e66ed0d40a62 100644 > --- a/rules/gnupg.in > +++ b/rules/gnupg.in > @@ -31,6 +31,10 @@ config GNUPG_GPGV > bool > prompt "Install gpgv2" > > +config GNUPG_GPGTAR > + bool > + prompt "Install gpgtar" > + > config GNUPG_GPG_AGENT > bool > prompt "Install gpg-agent" > diff --git a/rules/gnupg.make b/rules/gnupg.make > index 18761ba60904..efd9eddd2a42 100644 > --- a/rules/gnupg.make > +++ b/rules/gnupg.make > @@ -47,7 +47,7 @@ GNUPG_CONF_OPT := $(CROSS_AUTOCONF_USR) \ > --disable-keyboxd \ > --disable-tpm2d \ > --disable-doc \ > - --disable-gpgtar \ > + --$(call ptx/endis, PTXCONF_GNUPG_GPGTAR)-gpgtar \ > --disable-wks-tools \ > --disable-gpg-is-gpg2 \ > --$(call ptx/endis, PTXCONF_GLOBAL_SELINUX)-selinux-support \ > @@ -125,6 +125,9 @@ endif > ifdef PTXCONF_GNUPG_GPG_AGENT > @$(call install_copy, gnupg, 0, 0, 0755, -, /usr/bin/gpg-agent) > endif > +ifdef PTXCONF_GNUPG_GPGTAR > + @$(call install_copy, gnupg, 0, 0, 0755, -, /usr/bin/gpgtar) > +endif > > @$(call install_finish, gnupg) >