diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2023-07-17 17:10:15 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-07-21 11:52:25 +0100 |
commit | bb9a484a41948cec85b997074af5dac19870bf0d (patch) | |
tree | 84e5b3581f329f588b494841c9a6c7ce6370c5c0 /meta/recipes-devtools/opkg | |
parent | 8cb7c2e39d37f826a9a36ac66aeec6f6beac0ddd (diff) | |
download | poky-bb9a484a41948cec85b997074af5dac19870bf0d.tar.gz |
opkg: upgrade 0.6.1 -> 0.6.2
0001-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch
0002-opkg-key-remove-no-options-flag-from-gpg-calls.patch
removed since they're included in 0.6.2.
Changelog:
===========
### Changed
- the project's developer documentation to be more correct and current.
### Fixed
- a bug in the 'opkg-keys' utility script which caused the script to ignore settings in the '/etc/opkg/gpg/gpg.conf' file.
- a compilation error in 'md5.c' when using clang16+ and '-std >= gnu11'.
(From OE-Core rev: d7c8a58297e38f6222035aa9135fedf2ca387742)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/opkg')
-rw-r--r-- | meta/recipes-devtools/opkg/opkg/0001-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch | 51 | ||||
-rw-r--r-- | meta/recipes-devtools/opkg/opkg/0002-opkg-key-remove-no-options-flag-from-gpg-calls.patch | 34 | ||||
-rw-r--r-- | meta/recipes-devtools/opkg/opkg_0.6.2.bb (renamed from meta/recipes-devtools/opkg/opkg_0.6.1.bb) | 6 |
3 files changed, 2 insertions, 89 deletions
diff --git a/meta/recipes-devtools/opkg/opkg/0001-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch b/meta/recipes-devtools/opkg/opkg/0001-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch deleted file mode 100644 index 3406878a1d..0000000000 --- a/meta/recipes-devtools/opkg/opkg/0001-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch +++ /dev/null | |||
@@ -1,51 +0,0 @@ | |||
1 | From 4089affd371e6d62dd8c1e57b344f8cc329005ea Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sat, 14 Jan 2023 23:11:08 -0800 | ||
4 | Subject: [PATCH] Define alignof using _Alignof when using C11 or newer | ||
5 | |||
6 | WG14 N2350 made very clear that it is an UB having type definitions | ||
7 | within "offsetof" [1]. This patch enhances the implementation of macro | ||
8 | alignof_slot to use builtin "_Alignof" to avoid undefined behavior on | ||
9 | when using std=c11 or newer | ||
10 | |||
11 | clang 16+ has started to flag this [2] | ||
12 | |||
13 | Fixes build when using -std >= gnu11 and using clang16+ | ||
14 | |||
15 | Older compilers gcc < 4.9 or clang < 8 has buggy _Alignof even though it | ||
16 | may support C11, exclude those compilers too | ||
17 | |||
18 | [1] https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2350.htm | ||
19 | [2] https://reviews.llvm.org/D133574 | ||
20 | |||
21 | Upstream-Status: Submitted [https://groups.google.com/g/opkg-devel/c/gjcQPZgT_jI] | ||
22 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
23 | --- | ||
24 | libopkg/md5.c | 10 ++++++++++ | ||
25 | 1 file changed, 10 insertions(+) | ||
26 | |||
27 | diff --git a/libopkg/md5.c b/libopkg/md5.c | ||
28 | index 981b9b8..ccb645e 100644 | ||
29 | --- a/libopkg/md5.c | ||
30 | +++ b/libopkg/md5.c | ||
31 | @@ -237,7 +237,17 @@ void md5_process_bytes(const void *buffer, size_t len, struct md5_ctx *ctx) | ||
32 | /* Process available complete blocks. */ | ||
33 | if (len >= 64) { | ||
34 | #if !_STRING_ARCH_unaligned | ||
35 | +/* GCC releases before GCC 4.9 had a bug in _Alignof. See GCC bug 52023 | ||
36 | + <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52023>. | ||
37 | + clang versions < 8.0.0 have the same bug. */ | ||
38 | +#if (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112 \ | ||
39 | + || (defined __GNUC__ && __GNUC__ < 4 + (__GNUC_MINOR__ < 9) \ | ||
40 | + && !defined __clang__) \ | ||
41 | + || (defined __clang__ && __clang_major__ < 8)) | ||
42 | #define alignof(type) offsetof (struct { char c; type x; }, x) | ||
43 | +#else | ||
44 | +#define alignof(type) _Alignof(type) | ||
45 | +#endif | ||
46 | #define UNALIGNED_P(p) (((size_t) p) % alignof (uint32_t) != 0) | ||
47 | if (UNALIGNED_P(buffer)) | ||
48 | while (len > 64) { | ||
49 | -- | ||
50 | 2.39.0 | ||
51 | |||
diff --git a/meta/recipes-devtools/opkg/opkg/0002-opkg-key-remove-no-options-flag-from-gpg-calls.patch b/meta/recipes-devtools/opkg/opkg/0002-opkg-key-remove-no-options-flag-from-gpg-calls.patch deleted file mode 100644 index f216950002..0000000000 --- a/meta/recipes-devtools/opkg/opkg/0002-opkg-key-remove-no-options-flag-from-gpg-calls.patch +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | From a658e6402382250f0164c5b47b744740e04f3611 Mon Sep 17 00:00:00 2001 | ||
2 | From: Charlie Johnston <charlie.johnston@ni.com> | ||
3 | Date: Fri, 30 Dec 2022 15:21:14 -0600 | ||
4 | Subject: [PATCH] opkg-key: Remove --no-options flag from gpg calls. | ||
5 | |||
6 | The opkg-key script was always passing the --no-options | ||
7 | flag to gpg, which uses /dev/null as the options file. | ||
8 | As a result, the opkg gpg.conf file was not getting | ||
9 | used. This change removes that flag so that gpg.conf | ||
10 | in the GPGHOMEDIR for opkg (currently /etc/opkg/gpg/) | ||
11 | will be used if present. | ||
12 | |||
13 | Upstream-Status: Accepted [https://git.yoctoproject.org/opkg/commit/?id=cee294e72d257417b5e55ef7a76a0fd15313e46b] | ||
14 | Signed-off-by: Charlie Johnston <charlie.johnston@ni.com> | ||
15 | --- | ||
16 | utils/opkg-key | 2 +- | ||
17 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
18 | |||
19 | diff --git a/utils/opkg-key b/utils/opkg-key | ||
20 | index e395a59..8645ebc 100755 | ||
21 | --- a/utils/opkg-key | ||
22 | +++ b/utils/opkg-key | ||
23 | @@ -53,7 +53,7 @@ else | ||
24 | exit 1 | ||
25 | fi | ||
26 | |||
27 | -GPG="$GPGCMD --no-options --homedir $GPGHOMEDIR" | ||
28 | +GPG="$GPGCMD --homedir $GPGHOMEDIR" | ||
29 | |||
30 | # Gpg home dir isn't created automatically when --homedir option is used | ||
31 | if [ ! -e "$GPGHOMEDIR" ]; then | ||
32 | -- | ||
33 | 2.30.2 | ||
34 | |||
diff --git a/meta/recipes-devtools/opkg/opkg_0.6.1.bb b/meta/recipes-devtools/opkg/opkg_0.6.2.bb index 4c25fe963a..46be137354 100644 --- a/meta/recipes-devtools/opkg/opkg_0.6.1.bb +++ b/meta/recipes-devtools/opkg/opkg_0.6.2.bb | |||
@@ -15,12 +15,10 @@ PE = "1" | |||
15 | SRC_URI = "http://downloads.yoctoproject.org/releases/${BPN}/${BPN}-${PV}.tar.gz \ | 15 | SRC_URI = "http://downloads.yoctoproject.org/releases/${BPN}/${BPN}-${PV}.tar.gz \ |
16 | file://opkg.conf \ | 16 | file://opkg.conf \ |
17 | file://0001-opkg_conf-create-opkg.lock-in-run-instead-of-var-run.patch \ | 17 | file://0001-opkg_conf-create-opkg.lock-in-run-instead-of-var-run.patch \ |
18 | file://0002-opkg-key-remove-no-options-flag-from-gpg-calls.patch \ | ||
19 | file://0001-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch \ | ||
20 | file://run-ptest \ | 18 | file://run-ptest \ |
21 | " | 19 | " |
22 | 20 | ||
23 | SRC_URI[sha256sum] = "e87fccb575c64d3ac0559444016a2795f12125986a0da896bab97c4a1a2f1b2a" | 21 | SRC_URI[sha256sum] = "ac73a90a2549cd04948e563d915912c78e1b8ba0f43af75c5a53fcca474adbd5" |
24 | 22 | ||
25 | # This needs to be before ptest inherit, otherwise all ptest files end packaged | 23 | # This needs to be before ptest inherit, otherwise all ptest files end packaged |
26 | # in libopkg package if OPKGLIBDIR == libdir, because default | 24 | # in libopkg package if OPKGLIBDIR == libdir, because default |