From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 04 Aug 2022 17:17:01 +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 1oJcap-00BOr5-Jm for lore@lore.pengutronix.de; Thu, 04 Aug 2022 17:17:01 +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 1oJcaq-0007YT-T7; Thu, 04 Aug 2022 17:17:00 +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 1oJcYN-0004BD-02; Thu, 04 Aug 2022 17:14:27 +0200 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1oJcYK-001ig8-15; Thu, 04 Aug 2022 17:14:26 +0200 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1oJcYL-000jlT-L0; Thu, 04 Aug 2022 17:14:25 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Thu, 4 Aug 2022 17:14:25 +0200 Message-Id: <20220804151425.175876-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220729092654.3861-2-bruno.thomsen@gmail.com> References: <20220729092654.3861-2-bruno.thomsen@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] libgpg-error: version bump 1.42 -> 1.45 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: Bruno Thomsen 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 5b7f3f031fb705265d9634969b52f3c236be91da. Michael [sent from post-receive hook] On Thu, 04 Aug 2022 17:14:25 +0200, Bruno Thomsen wrote: > Drop Fedora cross compilation patch as issue has been fixed upstream. > > Signed-off-by: Bruno Thomsen > Message-Id: <20220729092654.3861-2-bruno.thomsen@gmail.com> > Signed-off-by: Michael Olbrich > > diff --git a/patches/libgpg-error-1.42/0001-fix-the-last-cross-compilation-fix.patch b/patches/libgpg-error-1.42/0001-fix-the-last-cross-compilation-fix.patch > deleted file mode 100644 > index 6776ff10fc7b..000000000000 > --- a/patches/libgpg-error-1.42/0001-fix-the-last-cross-compilation-fix.patch > +++ /dev/null > @@ -1,55 +0,0 @@ > -From: Lucas Stach > -Date: Sat, 11 Sep 2021 01:52:35 +0200 > -Subject: [PATCH] fix the last cross-compilation fix > - > -Instead of trying to figure out which way to call echo in order to supress > -the newline and apparently getting it wrong on some platforms (on a Fedora > -build host compilation fails due to stray \c characters in the generated > -files) use the POSIX recommended portable way of calling printf. > - > -Signed-off-by: Lucas Stach > ---- > - src/gen-lock-obj.sh | 16 ++++------------ > - 1 file changed, 4 insertions(+), 12 deletions(-) > - > -diff --git a/src/gen-lock-obj.sh b/src/gen-lock-obj.sh > -index a710f0ccee5a..aea9edb6095a 100755 > ---- a/src/gen-lock-obj.sh > -+++ b/src/gen-lock-obj.sh > -@@ -38,14 +38,6 @@ > - # AWK=gawk ./gen-lock-obj.sh > - # > - > --if test -n `echo -n`; then > -- ECHO_C='\c' > -- ECHO_N='' > --else > -- ECHO_C='' > -- ECHO_N='-n' > --fi > -- > - if test "$1" = --disable-threads; then > - cat < - ## lock-obj-pub.$host.h - NO LOCK SUPPORT > -@@ -107,17 +99,17 @@ EOF > - # USE_LONG_DOUBLE_FOR_ALIGNMENT > - # > - > --echo ${ECHO_N} "#define GPGRT_LOCK_INITIALIZER {$LOCK_ABI_VERSION,{{${ECHO_C}" > -+printf "%s" "#define GPGRT_LOCK_INITIALIZER {$LOCK_ABI_VERSION,{{" > - > - i=0 > - while test "$i" -lt $ac_mtx_size; do > - if test "$i" -ne 0 -a "$(( $i % 8 ))" -eq 0; then > - echo ' \' > -- echo ${ECHO_N} " ${ECHO_C}" > -+ printf "%s" " " > - fi > -- echo ${ECHO_N} "0${ECHO_C}" > -+ printf "%s" "0" > - if test "$i" -lt $(($ac_mtx_size - 1)); then > -- echo ${ECHO_N} ",${ECHO_C}" > -+ printf "%s" "," > - fi > - i=$(( i + 1 )) > - done > diff --git a/patches/libgpg-error-1.42/series b/patches/libgpg-error-1.42/series > deleted file mode 100644 > index fc21a0922fdc..000000000000 > --- a/patches/libgpg-error-1.42/series > +++ /dev/null > @@ -1,4 +0,0 @@ > -# generated by git-ptx-patches > -#tag:base --start-number 1 > -0001-fix-the-last-cross-compilation-fix.patch > -# a840af6993790b90121e652373747e0a - git-ptx-patches magic > diff --git a/rules/libgpg-error.make b/rules/libgpg-error.make > index 194cd21db4a6..61e7e0a11990 100644 > --- a/rules/libgpg-error.make > +++ b/rules/libgpg-error.make > @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIBGPG_ERROR) += libgpg-error > # > # Paths and names > # > -LIBGPG_ERROR_VERSION := 1.42 > -LIBGPG_ERROR_MD5 := 133fed221ba8f63f5842858a1ff67cb3 > +LIBGPG_ERROR_VERSION := 1.45 > +LIBGPG_ERROR_MD5 := 3bb15e0c29d3a680db7cef15143615e1 > LIBGPG_ERROR := libgpg-error-$(LIBGPG_ERROR_VERSION) > LIBGPG_ERROR_SUFFIX := tar.bz2 > LIBGPG_ERROR_URL := \