mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-05 05:04:44 +02:00

Noteworthy changes in version 2.5.4 (2025-02-12) ------------------------------------------------ * gpg: New option --disable-pqc-encryption. [rG00c31f8b04] * gpg: Fix --quick-add-key for Weierstrass ECC with usage given.[T7506] * gpg: Fix handling with no CRC armor. [T7071] * gpg: New private Kyber keys are now cross-referenced using a new Link attribute. [T6638] * gpg: Fix an import problem with keys having another primary key as a subkey. [T7527] * gpgsm: Allow unattended PKCS#12 export without passphrase. [rG159e801043] * gpgsm: Allow CSR generation with an unprotected key. [rG89055f24f4] * agent: New option --change-std-env-name. [T7522] * agent: Fix ssh-agent's request_identities for skipped Brainpool keys. [rG2469dc5aae] * Do not package zlib and bzip2 object files in a speedo release build. [T7442] See-also: gnupg-announce/2025q1/000490.html Release-info: https://dev.gnupg.org/T7480 https://dev.gnupg.org/source/gnupg/browse/master/NEWS (From OE-Core rev: 59f26c7311ae3d5596f517b739e7c3435db070a3) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
947 B
Diff
32 lines
947 B
Diff
From 4d8cc1982273d571b4e80fe981878d0fa5884236 Mon Sep 17 00:00:00 2001
|
|
From: Wenzong Fan <wenzong.fan@windriver.com>
|
|
Date: Wed, 16 Aug 2017 11:23:22 +0800
|
|
Subject: [PATCH] autogen.sh: fix find-version for beta checking
|
|
|
|
find-version always assumes that gnupg is beta if autogen.sh is run
|
|
out of git-repo. This doesn't work for users whom just take release
|
|
tarball and re-run autoconf in their local build dir.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
|
|
|
|
Rebase to 2.1.23
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
---
|
|
autogen.sh | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/autogen.sh b/autogen.sh
|
|
index 9f91297..116fb7f 100755
|
|
--- a/autogen.sh
|
|
+++ b/autogen.sh
|
|
@@ -270,7 +270,6 @@ if [ "$myhost" = "find-version" ]; then
|
|
rvd=$((0x$(echo ${rev} | dd bs=1 count=4 2>/dev/null)))
|
|
else
|
|
ingit=no
|
|
- beta=yes
|
|
tmp="-unknown"
|
|
cid="0000000"
|
|
rev="0000000"
|