diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-12-13 12:11:18 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-12-18 19:48:00 +0000 |
commit | d2c28dcbca453bc6c9131466f69d633bf4b33f12 (patch) | |
tree | 72a83e2a89c084380ff890d6264c2c17bb3da733 | |
parent | f0ab429ca3b01a6bac64154a1e5d428b3dede234 (diff) | |
download | poky-d2c28dcbca453bc6c9131466f69d633bf4b33f12.tar.gz |
gnupg: upgrade 2.3.7 -> 2.3.8
(From OE-Core rev: faf80d587849f181fc69b9a2924e8d44391c56c3)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/gnupg/gnupg/0001-configure.ac-use-a-custom-value-for-the-location-of-.patch | 4 | ||||
-rw-r--r-- | meta/recipes-support/gnupg/gnupg/fix-ldap.patch | 35 | ||||
-rw-r--r-- | meta/recipes-support/gnupg/gnupg/relocate.patch | 18 | ||||
-rw-r--r-- | meta/recipes-support/gnupg/gnupg_2.3.8.bb (renamed from meta/recipes-support/gnupg/gnupg_2.3.7.bb) | 3 |
4 files changed, 48 insertions, 12 deletions
diff --git a/meta/recipes-support/gnupg/gnupg/0001-configure.ac-use-a-custom-value-for-the-location-of-.patch b/meta/recipes-support/gnupg/gnupg/0001-configure.ac-use-a-custom-value-for-the-location-of-.patch index c4ede9ea5e..eb2e47f035 100644 --- a/meta/recipes-support/gnupg/gnupg/0001-configure.ac-use-a-custom-value-for-the-location-of-.patch +++ b/meta/recipes-support/gnupg/gnupg/0001-configure.ac-use-a-custom-value-for-the-location-of-.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 89b98553084fbefe1ef2c7cbff9e72cf43144c49 Mon Sep 17 00:00:00 2001 | 1 | From b0c42c8273c5fa1e31094567122be24ba28a965d Mon Sep 17 00:00:00 2001 |
2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> |
3 | Date: Mon, 22 Jan 2018 18:00:21 +0200 | 3 | Date: Mon, 22 Jan 2018 18:00:21 +0200 |
4 | Subject: [PATCH] configure.ac: use a custom value for the location of | 4 | Subject: [PATCH] configure.ac: use a custom value for the location of |
@@ -14,7 +14,7 @@ Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | |||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | 14 | 1 file changed, 1 insertion(+), 1 deletion(-) |
15 | 15 | ||
16 | diff --git a/configure.ac b/configure.ac | 16 | diff --git a/configure.ac b/configure.ac |
17 | index d86c60e..65c22b2 100644 | 17 | index b043386..dd839d0 100644 |
18 | --- a/configure.ac | 18 | --- a/configure.ac |
19 | +++ b/configure.ac | 19 | +++ b/configure.ac |
20 | @@ -1955,7 +1955,7 @@ AC_DEFINE_UNQUOTED(GPGCONF_DISP_NAME, "GPGConf", | 20 | @@ -1955,7 +1955,7 @@ AC_DEFINE_UNQUOTED(GPGCONF_DISP_NAME, "GPGConf", |
diff --git a/meta/recipes-support/gnupg/gnupg/fix-ldap.patch b/meta/recipes-support/gnupg/gnupg/fix-ldap.patch new file mode 100644 index 0000000000..24299e16fb --- /dev/null +++ b/meta/recipes-support/gnupg/gnupg/fix-ldap.patch | |||
@@ -0,0 +1,35 @@ | |||
1 | From 7011286ce6e1fb56c2989fdafbd11b931c489faa Mon Sep 17 00:00:00 2001 | ||
2 | From: NIIBE Yutaka <gniibe@fsij.org> | ||
3 | Date: Fri, 14 Oct 2022 09:58:41 +0900 | ||
4 | Subject: [PATCH] dirmngr: Fix build with no LDAP support. | ||
5 | |||
6 | * dirmngr/server.c [USE_LDAP] (start_command_handler): Conditionalize. | ||
7 | |||
8 | -- | ||
9 | |||
10 | GnuPG-bug-id: 6239 | ||
11 | Signed-off-by: NIIBE Yutaka <gniibe@fsij.org> | ||
12 | Upstream-Status: Backport [https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=patch;h=7011286ce6e1fb56c2989fdafbd11b931c489faa] | ||
13 | Signed-off-by: Alexander Kanavin <alex@linutronix.de> | ||
14 | --- | ||
15 | dirmngr/server.c | 2 ++ | ||
16 | 1 file changed, 2 insertions(+) | ||
17 | |||
18 | diff --git a/dirmngr/server.c b/dirmngr/server.c | ||
19 | index 04ebfd317..98f354300 100644 | ||
20 | --- a/dirmngr/server.c | ||
21 | +++ b/dirmngr/server.c | ||
22 | @@ -3137,8 +3137,10 @@ start_command_handler (assuan_fd_t fd, unsigned int session_id) | ||
23 | ctrl->refcount); | ||
24 | else | ||
25 | { | ||
26 | +#if USE_LDAP | ||
27 | ks_ldap_free_state (ctrl->ks_get_state); | ||
28 | ctrl->ks_get_state = NULL; | ||
29 | +#endif | ||
30 | release_ctrl_ocsp_certs (ctrl); | ||
31 | xfree (ctrl->server_local); | ||
32 | dirmngr_deinit_default_ctrl (ctrl); | ||
33 | -- | ||
34 | 2.11.0 | ||
35 | |||
diff --git a/meta/recipes-support/gnupg/gnupg/relocate.patch b/meta/recipes-support/gnupg/gnupg/relocate.patch index 43999b8a6d..ca0e46141d 100644 --- a/meta/recipes-support/gnupg/gnupg/relocate.patch +++ b/meta/recipes-support/gnupg/gnupg/relocate.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 89ae4f03307104689e1857d9857d452af6b35ac4 Mon Sep 17 00:00:00 2001 | 1 | From 7c6f9724f53ed2c5237dad4e3f4ec44091ac683d Mon Sep 17 00:00:00 2001 |
2 | From: Ross Burton <ross.burton@intel.com> | 2 | From: Ross Burton <ross.burton@intel.com> |
3 | Date: Wed, 19 Sep 2018 14:44:40 +0100 | 3 | Date: Wed, 19 Sep 2018 14:44:40 +0100 |
4 | Subject: [PATCH] Allow the environment to override where gnupg looks for its | 4 | Subject: [PATCH] Allow the environment to override where gnupg looks for its |
@@ -14,10 +14,10 @@ Signed-off-by: Alexander Kanavin <alex@linutronix.de> | |||
14 | 1 file changed, 7 insertions(+), 7 deletions(-) | 14 | 1 file changed, 7 insertions(+), 7 deletions(-) |
15 | 15 | ||
16 | diff --git a/common/homedir.c b/common/homedir.c | 16 | diff --git a/common/homedir.c b/common/homedir.c |
17 | index 260aeb2..1aeb08d 100644 | 17 | index 67bbde8..7f360ba 100644 |
18 | --- a/common/homedir.c | 18 | --- a/common/homedir.c |
19 | +++ b/common/homedir.c | 19 | +++ b/common/homedir.c |
20 | @@ -1143,7 +1143,7 @@ gnupg_socketdir (void) | 20 | @@ -1171,7 +1171,7 @@ gnupg_socketdir (void) |
21 | if (!name) | 21 | if (!name) |
22 | { | 22 | { |
23 | unsigned int dummy; | 23 | unsigned int dummy; |
@@ -26,7 +26,7 @@ index 260aeb2..1aeb08d 100644 | |||
26 | gpgrt_annotate_leaked_object (name); | 26 | gpgrt_annotate_leaked_object (name); |
27 | } | 27 | } |
28 | 28 | ||
29 | @@ -1175,7 +1175,7 @@ gnupg_sysconfdir (void) | 29 | @@ -1203,7 +1203,7 @@ gnupg_sysconfdir (void) |
30 | if (dir) | 30 | if (dir) |
31 | return dir; | 31 | return dir; |
32 | else | 32 | else |
@@ -35,7 +35,7 @@ index 260aeb2..1aeb08d 100644 | |||
35 | #endif /*!HAVE_W32_SYSTEM*/ | 35 | #endif /*!HAVE_W32_SYSTEM*/ |
36 | } | 36 | } |
37 | 37 | ||
38 | @@ -1211,7 +1211,7 @@ gnupg_bindir (void) | 38 | @@ -1239,7 +1239,7 @@ gnupg_bindir (void) |
39 | return name; | 39 | return name; |
40 | } | 40 | } |
41 | else | 41 | else |
@@ -44,7 +44,7 @@ index 260aeb2..1aeb08d 100644 | |||
44 | #endif /*!HAVE_W32_SYSTEM*/ | 44 | #endif /*!HAVE_W32_SYSTEM*/ |
45 | } | 45 | } |
46 | 46 | ||
47 | @@ -1238,7 +1238,7 @@ gnupg_libexecdir (void) | 47 | @@ -1266,7 +1266,7 @@ gnupg_libexecdir (void) |
48 | return name; | 48 | return name; |
49 | } | 49 | } |
50 | else | 50 | else |
@@ -53,7 +53,7 @@ index 260aeb2..1aeb08d 100644 | |||
53 | #endif /*!HAVE_W32_SYSTEM*/ | 53 | #endif /*!HAVE_W32_SYSTEM*/ |
54 | } | 54 | } |
55 | 55 | ||
56 | @@ -1268,7 +1268,7 @@ gnupg_libdir (void) | 56 | @@ -1296,7 +1296,7 @@ gnupg_libdir (void) |
57 | return name; | 57 | return name; |
58 | } | 58 | } |
59 | else | 59 | else |
@@ -62,7 +62,7 @@ index 260aeb2..1aeb08d 100644 | |||
62 | #endif /*!HAVE_W32_SYSTEM*/ | 62 | #endif /*!HAVE_W32_SYSTEM*/ |
63 | } | 63 | } |
64 | 64 | ||
65 | @@ -1299,7 +1299,7 @@ gnupg_datadir (void) | 65 | @@ -1327,7 +1327,7 @@ gnupg_datadir (void) |
66 | return name; | 66 | return name; |
67 | } | 67 | } |
68 | else | 68 | else |
@@ -71,7 +71,7 @@ index 260aeb2..1aeb08d 100644 | |||
71 | #endif /*!HAVE_W32_SYSTEM*/ | 71 | #endif /*!HAVE_W32_SYSTEM*/ |
72 | } | 72 | } |
73 | 73 | ||
74 | @@ -1331,7 +1331,7 @@ gnupg_localedir (void) | 74 | @@ -1359,7 +1359,7 @@ gnupg_localedir (void) |
75 | return name; | 75 | return name; |
76 | } | 76 | } |
77 | else | 77 | else |
diff --git a/meta/recipes-support/gnupg/gnupg_2.3.7.bb b/meta/recipes-support/gnupg/gnupg_2.3.8.bb index da2b1c4deb..aaa8d8fe99 100644 --- a/meta/recipes-support/gnupg/gnupg_2.3.7.bb +++ b/meta/recipes-support/gnupg/gnupg_2.3.8.bb | |||
@@ -18,12 +18,13 @@ SRC_URI = "${GNUPG_MIRROR}/${BPN}/${BPN}-${PV}.tar.bz2 \ | |||
18 | file://0002-use-pkgconfig-instead-of-npth-config.patch \ | 18 | file://0002-use-pkgconfig-instead-of-npth-config.patch \ |
19 | file://0004-autogen.sh-fix-find-version-for-beta-checking.patch \ | 19 | file://0004-autogen.sh-fix-find-version-for-beta-checking.patch \ |
20 | file://0001-Woverride-init-is-not-needed-with-gcc-9.patch \ | 20 | file://0001-Woverride-init-is-not-needed-with-gcc-9.patch \ |
21 | file://fix-ldap.patch \ | ||
21 | " | 22 | " |
22 | SRC_URI:append:class-native = " file://0001-configure.ac-use-a-custom-value-for-the-location-of-.patch \ | 23 | SRC_URI:append:class-native = " file://0001-configure.ac-use-a-custom-value-for-the-location-of-.patch \ |
23 | file://relocate.patch" | 24 | file://relocate.patch" |
24 | SRC_URI:append:class-nativesdk = " file://relocate.patch" | 25 | SRC_URI:append:class-nativesdk = " file://relocate.patch" |
25 | 26 | ||
26 | SRC_URI[sha256sum] = "ee163a5fb9ec99ffc1b18e65faef8d086800c5713d15a672ab57d3799da83669" | 27 | SRC_URI[sha256sum] = "540b7a40e57da261fb10ef521a282e0021532a80fd023e75fb71757e8a4969ed" |
27 | 28 | ||
28 | EXTRA_OECONF = "--disable-ldap \ | 29 | EXTRA_OECONF = "--disable-ldap \ |
29 | --disable-ccid-driver \ | 30 | --disable-ccid-driver \ |