Re: [OE-core] [pseudo][PATCH] pseudo_ipc.h: Fix enum typedef

2020-05-02 Thread Seebs
On Sun,  3 May 2020 06:27:12 +0200
"Jacob Kroon"  wrote:

> 'pseudo_access_t' is a type, so use typedef.
> 
> Fixes building pseudo with gcc 10 where -fno-common is the default.

Wow! That's amazing, and yes, that's a bug, and the fix looks right to
me. I don't know how that got missed all these years. (But don't rely
on this evaluation too heavily just yet, I haven't actually looked at
the code more carefully, but this seems obvious.)

-s
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137761): 
https://lists.openembedded.org/g/openembedded-core/message/137761
Mute This Topic: https://lists.openembedded.org/mt/73948932/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [OE-core] ✗ patchtest: failure for pseudo_ipc.h: Fix enum typedef

2020-05-02 Thread Jacob Kroon
Pseudo README states that patches should be directed to 
openembedded-core ml.


Is there some special magic that needs to go in the message header ?

/Jacob

On 5/3/20 6:32 AM, Patchwork wrote:

== Series Details ==

Series: pseudo_ipc.h: Fix enum typedef
Revision: 1
URL   : https://patchwork.openembedded.org/series/23915/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Issue Series does not apply on top of target branch 
[test_series_merge_on_head]
   Suggested fixRebase your series on top of targeted branch
   Targeted branch  master (currently at e44ca998c2)



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Guidelines: 
https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137760): 
https://lists.openembedded.org/g/openembedded-core/message/137760
Mute This Topic: https://lists.openembedded.org/mt/73948959/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[OE-core] ✗ patchtest: failure for pseudo_ipc.h: Fix enum typedef

2020-05-02 Thread Patchwork
== Series Details ==

Series: pseudo_ipc.h: Fix enum typedef
Revision: 1
URL   : https://patchwork.openembedded.org/series/23915/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Issue Series does not apply on top of target branch 
[test_series_merge_on_head] 
  Suggested fixRebase your series on top of targeted branch
  Targeted branch  master (currently at e44ca998c2)



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Guidelines: 
https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137759): 
https://lists.openembedded.org/g/openembedded-core/message/137759
Mute This Topic: https://lists.openembedded.org/mt/73948959/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[OE-core] [pseudo][PATCH] pseudo_ipc.h: Fix enum typedef

2020-05-02 Thread Jacob Kroon
'pseudo_access_t' is a type, so use typedef.

Fixes building pseudo with gcc 10 where -fno-common is the default.

Signed-off-by: Jacob Kroon 
---
 pseudo_ipc.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pseudo_ipc.h b/pseudo_ipc.h
index caeae5c..d945257 100644
--- a/pseudo_ipc.h
+++ b/pseudo_ipc.h
@@ -29,7 +29,7 @@ typedef struct {
char path[];
 } pseudo_msg_t;
 
-enum {
+typedef enum {
PSA_EXEC = 1,
PSA_WRITE = (PSA_EXEC << 1),
PSA_READ = (PSA_WRITE << 1),
-- 
2.26.2

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137758): 
https://lists.openembedded.org/g/openembedded-core/message/137758
Mute This Topic: https://lists.openembedded.org/mt/73948932/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [OE-core] [PATCH 01/17] libinput: add ptest

2020-05-02 Thread Richard Purdie
On Thu, 2020-04-30 at 11:57 +0200, Alexander Kanavin wrote:
> The test takes about 17 minutes, and fully passes.
> 
> Signed-off-by: Alexander Kanavin 
> ---
>  meta/conf/distro/include/ptest-packagelists.inc  | 1 +
>  meta/recipes-graphics/wayland/libinput/run-ptest | 9 +
>  meta/recipes-graphics/wayland/libinput_1.15.2.bb | 8 +---
>  3 files changed, 15 insertions(+), 3 deletions(-)
>  create mode 100644 meta/recipes-graphics/wayland/libinput/run-ptest

Still has a reproducibility issue:

https://autobuilder.yoctoproject.org/typhoon/#/builders/79/builds/900
(and the other selftests in the build)

Cheers,

Richard

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137757): 
https://lists.openembedded.org/g/openembedded-core/message/137757
Mute This Topic: https://lists.openembedded.org/mt/73372184/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [OE-core] Failure when generating image with latest OE-Core

2020-05-02 Thread Richard Purdie
On Sat, 2020-05-02 at 16:27 +, Peter Kjellerstedt wrote:
> After upgrading to the latest master of OE-Core, I get the following 
> error when building an image:
> 
> DNF version: 4.2.21
> cachedir: /rootfs/var/cache/dnf
> Added oe-repo repo from /oe-rootfs-repo
> User-Agent: falling back to 'libdnf': could not detect OS or basearch
> repo: using cache for: oe-repo
> oe-repo: using metadata from Sat 02 May 2020 04:04:01 PM UTC.
> Excludes in dnf.conf: rng-tools, shared-mime-info, udev-hwdb
> --> Starting dependency resolution
> History database cannot be created:  workdir>/rootfs/var/lib/dnf/history.sqlite. Error: SQLite error on
> ":memory:": Executing an SQL statement failed: no such column: 1.2
> ---> Package   will be installed
> History database cannot be created:  workdir>/rootfs/var/lib/dnf/history.sqlite. Error: SQLite error on
> ":memory:": Executing an SQL statement failed: no such column: 1.2
> Error: SQLite error on ":memory:": Executing an SQL statement failed:
> no such column: 1.2
> 
> I assume it is related to the recent rpm/dnf update. 
> Any ideas on what's going on?

Was this a build from scratch with a clean TMPDIR or an existing build
directory?

Cheers,

Richard

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137756): 
https://lists.openembedded.org/g/openembedded-core/message/137756
Mute This Topic: https://lists.openembedded.org/mt/73938347/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[OE-core] [PATCH] musl: Remove spurious unused patch

2020-05-02 Thread Khem Raj
Signed-off-by: Khem Raj 
---
 ...move-using-.end-directive-with-clang.patch | 36 ---
 1 file changed, 36 deletions(-)
 delete mode 100644 
meta/recipes-core/musl/0001-Remove-using-.end-directive-with-clang.patch

diff --git 
a/meta/recipes-core/musl/0001-Remove-using-.end-directive-with-clang.patch 
b/meta/recipes-core/musl/0001-Remove-using-.end-directive-with-clang.patch
deleted file mode 100644
index be79cb53f1..00
--- a/meta/recipes-core/musl/0001-Remove-using-.end-directive-with-clang.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From b6732f68848ecc8ff01054bf7aea70a241c37116 Mon Sep 17 00:00:00 2001
-From: Khem Raj 
-Date: Fri, 10 Apr 2020 11:23:39 -0700
-Subject: [PATCH] Remove using .end directive with clang
-
-Clang does not support this asm directive
-Fixes Issue #19
-
-Upstream-Status: Submitted [https://github.com/kaniini/libucontext/pull/20]
-Signed-off-by: Khem Raj 

- arch/common/common-defs.h | 5 -
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/arch/common/common-defs.h b/arch/common/common-defs.h
-index bf2fb8c..618116b 100644
 a/arch/common/common-defs.h
-+++ b/arch/common/common-defs.h
-@@ -28,10 +28,13 @@
-   ENT(__proc) \
- __proc:   \
-   SETUP_FRAME(__proc)
--
-+#ifdef __clang__
-+#define END(__proc)
-+#else
- #define END(__proc)   \
-   .end__proc; \
-   .size   __proc,.-__proc;
-+#endif
- 
- #define ALIAS(__alias, __real)\
-   .weak   __alias;\
--- 
-2.26.0
-
-- 
2.26.2

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137755): 
https://lists.openembedded.org/g/openembedded-core/message/137755
Mute This Topic: https://lists.openembedded.org/mt/73943202/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [OE-core] [PATCH 16/17] glib-2.0: update 2.62.4 -> 2.64.2

2020-05-02 Thread Alexander Kanavin
Other than the non-gpl3 issue, I have corrected the issues, and just sent
the updated patches.

Alex

On Sat, 2 May 2020 at 20:16, Alexander Kanavin 
wrote:

> On Sat, 2 May 2020 at 17:00, Richard Purdie <
> richard.pur...@linuxfoundation.org> wrote:
>
>> On Thu, 2020-04-30 at 11:58 +0200, Alexander Kanavin wrote:
>> > Add a couple of missing ptest dependencies.
>>
>> That causes problems for non-gplv3:
>> https://autobuilder.yoctoproject.org/typhoon/#/builders/75/builds/1848
>>
>
> "Missing or unbuildable dependency chain was: ['core-image-minimal',
> 'packagegroup-core-boot', 'udev', 'glib-2.0', 'python3-dbusmock']"
> The offending package is pulled in via ptests RDEPENDS.
>
> This can be addressed either via
> DISTRO_FEATURES_remove = "ptest"
>
> or setting license restrictions per-image:
> INCOMPATIBLE_LICENSE_pn-core-image-minimal = "GPL-3.0 LGPL-3.0"
>
> I prefer the latter - thoughts?
>
> Alex
>
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137754): 
https://lists.openembedded.org/g/openembedded-core/message/137754
Mute This Topic: https://lists.openembedded.org/mt/73372201/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[OE-core] [PATCH 4/4] coreutils: update to 8.32

2020-05-02 Thread Alexander Kanavin
License-Update: copyright years, http changed to https
Signed-off-by: Alexander Kanavin 
---
 ...8.31-behavior-on-removed-directories.patch | 99 +++
 .../coreutils/fix-selinux-flask.patch | 13 +--
 .../remove-usr-local-lib-from-m4.patch| 23 +++--
 .../strtod_fix_clash_with_strtold.patch   | 56 ---
 .../{coreutils_8.31.bb => coreutils_8.32.bb}  | 14 +--
 5 files changed, 128 insertions(+), 77 deletions(-)
 create mode 100644 
meta/recipes-core/coreutils/coreutils/0001-ls-restore-8.31-behavior-on-removed-directories.patch
 delete mode 100644 
meta/recipes-core/coreutils/coreutils/strtod_fix_clash_with_strtold.patch
 rename meta/recipes-core/coreutils/{coreutils_8.31.bb => coreutils_8.32.bb} 
(94%)

diff --git 
a/meta/recipes-core/coreutils/coreutils/0001-ls-restore-8.31-behavior-on-removed-directories.patch
 
b/meta/recipes-core/coreutils/coreutils/0001-ls-restore-8.31-behavior-on-removed-directories.patch
new file mode 100644
index 00..fa900e3a76
--- /dev/null
+++ 
b/meta/recipes-core/coreutils/coreutils/0001-ls-restore-8.31-behavior-on-removed-directories.patch
@@ -0,0 +1,99 @@
+From 7c273e5c6041f8c70f73f5b280fbb8f27d9b5a36 Mon Sep 17 00:00:00 2001
+From: Paul Eggert 
+Date: Thu, 5 Mar 2020 17:25:29 -0800
+Subject: [PATCH] ls: restore 8.31 behavior on removed directories
+
+* NEWS: Mention this.
+* src/ls.c: Do not include 
+(print_dir): Don't worry about whether the directory is removed.
+* tests/ls/removed-directory.sh: Adjust to match new (i.e., old)
+behavior.
+
+Upstream-Status: Backport 
[https://github.com/coreutils/coreutils/commit/10fcb97bd728f09d4a027eddf8ad2900f0819b0a]
+Signed-off-by: Alexander Kanavin 
+---
+ src/ls.c  | 22 --
+ tests/ls/removed-directory.sh | 10 ++
+ 2 files changed, 2 insertions(+), 30 deletions(-)
+
+diff --git a/src/ls.c b/src/ls.c
+index 637fe7a..0111f49 100644
+--- a/src/ls.c
 b/src/ls.c
+@@ -49,10 +49,6 @@
+ # include 
+ #endif
+ 
+-#ifdef __linux__
+-# include 
+-#endif
+-
+ #include 
+ #include 
+ #include 
+@@ -2895,7 +2891,6 @@ print_dir (char const *name, char const *realname, bool 
command_line_arg)
+   struct dirent *next;
+   uintmax_t total_blocks = 0;
+   static bool first = true;
+-  bool found_any_entries = false;
+ 
+   errno = 0;
+   dirp = opendir (name);
+@@ -2971,7 +2966,6 @@ print_dir (char const *name, char const *realname, bool 
command_line_arg)
+   next = readdir (dirp);
+   if (next)
+ {
+-  found_any_entries = true;
+   if (! file_ignored (next->d_name))
+ {
+   enum filetype type = unknown;
+@@ -3017,22 +3011,6 @@ print_dir (char const *name, char const *realname, bool 
command_line_arg)
+   if (errno != EOVERFLOW)
+ break;
+ }
+-#ifdef __linux__
+-  else if (! found_any_entries)
+-{
+-  /* If readdir finds no directory entries at all, not even "." or
+- "..", then double check that the directory exists.  */
+-  if (syscall (SYS_getdents, dirfd (dirp), NULL, 0) == -1
+-  && errno != EINVAL)
+-{
+-  /* We exclude EINVAL as that pertains to buffer handling,
+- and we've passed NULL as the buffer for simplicity.
+- ENOENT is returned if appropriate before buffer handling.  */
+-  file_failure (command_line_arg, _("reading directory %s"), 
name);
+-}
+-  break;
+-}
+-#endif
+   else
+ break;
+ 
+diff --git a/tests/ls/removed-directory.sh b/tests/ls/removed-directory.sh
+index e8c835d..fe8f929 100755
+--- a/tests/ls/removed-directory.sh
 b/tests/ls/removed-directory.sh
+@@ -26,20 +26,14 @@ case $host_triplet in
+   *) skip_ 'non linux kernel' ;;
+ esac
+ 
+-LS_FAILURE=2
+-
+-cat <<\EOF >exp-err || framework_failure_
+-ls: reading directory '.': No such file or directory
+-EOF
+-
+ cwd=$(pwd)
+ mkdir d || framework_failure_
+ cd d || framework_failure_
+ rmdir ../d || framework_failure_
+ 
+-returns_ $LS_FAILURE ls >../out 2>../err || fail=1
++ls >../out 2>../err || fail=1
+ cd "$cwd" || framework_failure_
+ compare /dev/null out || fail=1
+-compare exp-err err || fail=1
++compare /dev/null err || fail=1
+ 
+ Exit $fail
diff --git a/meta/recipes-core/coreutils/coreutils/fix-selinux-flask.patch 
b/meta/recipes-core/coreutils/coreutils/fix-selinux-flask.patch
index 9d1ae55d47..173a57925b 100644
--- a/meta/recipes-core/coreutils/coreutils/fix-selinux-flask.patch
+++ b/meta/recipes-core/coreutils/coreutils/fix-selinux-flask.patch
@@ -1,4 +1,4 @@
-From a1d360509fa3a4aff57eedcd528cc0347a87531d Mon Sep 17 00:00:00 2001
+From 7e20a7242ba2657f73311bbf5278093da67f0721 Mon Sep 17 00:00:00 2001
 From: Robert Yang 
 Date: Tue, 16 Sep 2014 01:59:08 -0700
 Subject: [PATCH] gnulib-comp.m4: selinux/flask.h should respect to
@@ -13,20 +13,20 @@ compilation terminated.
 Upstream-Status: Pending
 
 Signed-off-by: Robert Yang 

[OE-core] [PATCH 2/4] glib-networking: update to 2.64.2

2020-05-02 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin 
---
 .../{glib-networking_2.62.3.bb => glib-networking_2.64.2.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-core/glib-networking/{glib-networking_2.62.3.bb => 
glib-networking_2.64.2.bb} (88%)

diff --git a/meta/recipes-core/glib-networking/glib-networking_2.62.3.bb 
b/meta/recipes-core/glib-networking/glib-networking_2.64.2.bb
similarity index 88%
rename from meta/recipes-core/glib-networking/glib-networking_2.62.3.bb
rename to meta/recipes-core/glib-networking/glib-networking_2.64.2.bb
index e9596ce1a4..8300d20e0c 100644
--- a/meta/recipes-core/glib-networking/glib-networking_2.62.3.bb
+++ b/meta/recipes-core/glib-networking/glib-networking_2.64.2.bb
@@ -9,8 +9,8 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=4fbd65380cdd255951079008b364516c"
 SECTION = "libs"
 DEPENDS = "glib-2.0"
 
-SRC_URI[archive.md5sum] = "a758ca62bd54982a798b39c744cbf783"
-SRC_URI[archive.sha256sum] = 
"8ca1f86f23a76b5c7640624f7d5490705c78e81375e1741c9a1c41ce7f8f7ff7"
+SRC_URI[archive.md5sum] = "7f8c7ffe2616be4ef4232f2574353dab"
+SRC_URI[archive.sha256sum] = 
"45def0715c551f9b0b41a4e4f730ac95f3d5d4f3de8162260fbf9421cff695a7"
 
 PACKAGECONFIG ??= "gnutls"
 
-- 
2.26.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137751): 
https://lists.openembedded.org/g/openembedded-core/message/137751
Mute This Topic: https://lists.openembedded.org/mt/73942181/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[OE-core] [PATCH 1/4] glib-2.0: update 2.62.4 -> 2.64.2

2020-05-02 Thread Alexander Kanavin
Add a couple of missing ptest dependencies.

Drop backports.

Signed-off-by: Alexander Kanavin 
---
 ...-Do-not-ignore-return-value-of-write.patch |   6 +-
 ...t-write-bindir-into-pkg-config-files.patch |  10 +-
 ...0001-Fix-DATADIRNAME-on-uclibc-Linux.patch |   7 +-
 ...-gio-querymodules-as-libexec_PROGRAM.patch |   6 +-
 ...ng-about-deprecated-paths-in-schemas.patch |  11 +-
 ...-correctly-when-building-with-mingw3.patch |  22 ++--
 ...ces.c-comment-out-a-build-host-only-.patch |   3 +-
 ...on-Run-atomics-test-on-clang-as-well.patch |  10 +-
 ...dcode-python-path-into-various-tools.patch |  14 +--
 ...-GSource-iterator-if-iteration-can-m.patch |  43 ---
 ...-memory-leaks-and-memory-corruption-.patch | 109 --
 ...e-mutex-unlocking-in-destructor-righ.patch |  36 --
 ...ble-more-tests-while-cross-compiling.patch |  32 ++---
 .../glib-2.0/glib-2.0/relocate-modules.patch  |  10 +-
 ...{glib-2.0_2.62.4.bb => glib-2.0_2.64.2.bb} |   7 +-
 meta/recipes-core/glib-2.0/glib.inc   |   6 +-
 16 files changed, 68 insertions(+), 264 deletions(-)
 delete mode 100644 
meta/recipes-core/glib-2.0/glib-2.0/0011-GMainContext-Fix-GSource-iterator-if-iteration-can-m.patch
 delete mode 100644 
meta/recipes-core/glib-2.0/glib-2.0/0012-GMainContext-Fix-memory-leaks-and-memory-corruption-.patch
 delete mode 100644 
meta/recipes-core/glib-2.0/glib-2.0/0013-GMainContext-Move-mutex-unlocking-in-destructor-righ.patch
 rename meta/recipes-core/glib-2.0/{glib-2.0_2.62.4.bb => glib-2.0_2.64.2.bb} 
(83%)

diff --git 
a/meta/recipes-core/glib-2.0/glib-2.0/0001-Do-not-ignore-return-value-of-write.patch
 
b/meta/recipes-core/glib-2.0/glib-2.0/0001-Do-not-ignore-return-value-of-write.patch
index 0ebf138d60..f3a0069633 100644
--- 
a/meta/recipes-core/glib-2.0/glib-2.0/0001-Do-not-ignore-return-value-of-write.patch
+++ 
b/meta/recipes-core/glib-2.0/glib-2.0/0001-Do-not-ignore-return-value-of-write.patch
@@ -1,4 +1,4 @@
-From d250652782b65b071b7cc8f01f2db833df104e0e Mon Sep 17 00:00:00 2001
+From 658c034d92027dc8af5f784cae852123fac79b19 Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Sat, 16 Apr 2016 13:28:59 -0700
 Subject: [PATCH] Do not ignore return value of write()
@@ -16,10 +16,10 @@ Signed-off-by: Khem Raj 
  1 file changed, 3 insertions(+), 2 deletions(-)
 
 diff --git a/glib/tests/unix.c b/glib/tests/unix.c
-index 9d55a6c..a07f945 100644
+index 7639d06..f941141 100644
 --- a/glib/tests/unix.c
 +++ b/glib/tests/unix.c
-@@ -32,14 +32,15 @@ test_pipe (void)
+@@ -33,14 +33,15 @@ test_pipe (void)
GError *error = NULL;
int pipefd[2];
char buf[1024];
diff --git 
a/meta/recipes-core/glib-2.0/glib-2.0/0001-Do-not-write-bindir-into-pkg-config-files.patch
 
b/meta/recipes-core/glib-2.0/glib-2.0/0001-Do-not-write-bindir-into-pkg-config-files.patch
index edac4c9f75..5fe3aa898e 100644
--- 
a/meta/recipes-core/glib-2.0/glib-2.0/0001-Do-not-write-bindir-into-pkg-config-files.patch
+++ 
b/meta/recipes-core/glib-2.0/glib-2.0/0001-Do-not-write-bindir-into-pkg-config-files.patch
@@ -1,4 +1,4 @@
-From 60b36289ac314ad972cf81c1acd19f6f2e58ff25 Mon Sep 17 00:00:00 2001
+From 0797a40627a4cb5439a24b872edc65356dceaaf0 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Fri, 15 Feb 2019 11:17:27 +0100
 Subject: [PATCH] Do not write $bindir into pkg-config files
@@ -16,13 +16,13 @@ Signed-off-by: Alexander Kanavin 
  2 files changed, 11 insertions(+), 11 deletions(-)
 
 diff --git a/gio/meson.build b/gio/meson.build
-index 71e88c4..8ce3987 100644
+index 532b086..98468a3 100644
 --- a/gio/meson.build
 +++ b/gio/meson.build
-@@ -831,14 +831,14 @@ pkg.generate(libgio,
+@@ -820,14 +820,14 @@ pkg.generate(libgio,
 'schemasdir=' + join_paths('${datadir}', schemas_subdir),
 'bindir=' + join_paths('${prefix}', get_option('bindir')),
-'giomoduledir=' + giomodulesdir,
+'giomoduledir=' + pkgconfig_giomodulesdir,
 -   'gio=' + join_paths('${bindir}', 'gio'),
 -   'gio_querymodules=' + join_paths('${bindir}', 
'gio-querymodules'),
 -   'glib_compile_schemas=' + join_paths('${bindir}', 
'glib-compile-schemas'),
@@ -43,7 +43,7 @@ index 71e88c4..8ce3987 100644
install_dir : glib_pkgconfigreldir,
filebase : 'gio-2.0',
 diff --git a/glib/meson.build b/glib/meson.build
-index 91a48f1..978fb73 100644
+index aaf5f00..1e0992b 100644
 --- a/glib/meson.build
 +++ b/glib/meson.build
 @@ -375,9 +375,9 @@ pkg.generate(libglib,
diff --git 
a/meta/recipes-core/glib-2.0/glib-2.0/0001-Fix-DATADIRNAME-on-uclibc-Linux.patch
 
b/meta/recipes-core/glib-2.0/glib-2.0/0001-Fix-DATADIRNAME-on-uclibc-Linux.patch
index d8cf269bb8..16f2d31496 100644
--- 
a/meta/recipes-core/glib-2.0/glib-2.0/0001-Fix-DATADIRNAME-on-uclibc-Linux.patch
+++ 
b/meta/recipes-core/glib-2.0/glib-2.0/0001-Fix-DATADIRNAME-on-uclibc-Linux.patch
@@ -1,4 +1,4 @@
-From 15f807481de53942525b48952c5b6bbb9fb66542 Mon Sep 17 00:00:00 2001
+From c94e669de98a3892c699bd8d0d2b5164b2de747e

[OE-core] [PATCH 3/4] mc: update to 4.8.24

2020-05-02 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin 
---
 ...Add-option-to-control-configure-args.patch |  99 
 ...29-configure.ac-drop-bundled-gettext.patch | 110 --
 ...-Makefile.am-install-mc.lib-only-onc.patch |  59 ++
 .../mc/{mc_4.8.23.bb => mc_4.8.24.bb} |   7 +-
 4 files changed, 62 insertions(+), 213 deletions(-)
 delete mode 100644 
meta/recipes-extended/mc/files/0001-Add-option-to-control-configure-args.patch
 delete mode 100644 
meta/recipes-extended/mc/files/0001-Ticket-3629-configure.ac-drop-bundled-gettext.patch
 create mode 100644 
meta/recipes-extended/mc/files/0001-Ticket-4070-misc-Makefile.am-install-mc.lib-only-onc.patch
 rename meta/recipes-extended/mc/{mc_4.8.23.bb => mc_4.8.24.bb} (88%)

diff --git 
a/meta/recipes-extended/mc/files/0001-Add-option-to-control-configure-args.patch
 
b/meta/recipes-extended/mc/files/0001-Add-option-to-control-configure-args.patch
deleted file mode 100644
index e76aac8161..00
--- 
a/meta/recipes-extended/mc/files/0001-Add-option-to-control-configure-args.patch
+++ /dev/null
@@ -1,99 +0,0 @@
-From a54501d3c9541bc8600225aa2d42531f93c6def7 Mon Sep 17 00:00:00 2001
-From: Joshua Watt 
-Date: Sat, 9 Nov 2019 20:01:48 -0600
-Subject: [PATCH] Add option to control configure args
-
-Embedding the configure time options into the executable can lead to
-non-reproducible builds, since configure options often have embedded
-paths. Add a configure time option to control if the configure args are
-embedded so this can be disabled.
-
-Upstream-Status: Submitted [https://midnight-commander.org/ticket/4031]
-Signed-off-by: Joshua Watt 

- configure.ac   | 6 ++
- src/args.c | 6 ++
- src/textconf.c | 2 ++
- 3 files changed, 14 insertions(+)
-
-diff --git a/configure.ac b/configure.ac
-index 19d1a76be..a1948f6b9 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -544,6 +544,12 @@ dnl Clarify do we really need GModule
- AM_CONDITIONAL([HAVE_GMODULE], [test -n "$g_module_supported" && \
- test x"$textmode_x11_support" = x"yes" -o 
x"$enable_aspell" = x"yes"])
- 
-+AC_ARG_ENABLE([configure-args],
-+AS_HELP_STRING([--enable-configure-args], [Handle all compiler warnings 
as errors]))
-+if test "x$enable_configure_args" != xno; then
-+AC_DEFINE([ENABLE_CONFIGURE_ARGS], 1, [Define to enable showing configure 
arguments in help])
-+fi
-+
- AC_DEFINE_UNQUOTED([MC_CONFIGURE_ARGS], ["$ac_configure_args"], [MC configure 
arguments])
- 
- AC_CONFIG_FILES(
-diff --git a/src/args.c b/src/args.c
-index baef1a1c8..f8dc24020 100644
 a/src/args.c
-+++ b/src/args.c
-@@ -95,7 +95,9 @@ static gboolean mc_args__nouse_subshell = FALSE;
- #endif /* ENABLE_SUBSHELL */
- static gboolean mc_args__show_datadirs = FALSE;
- static gboolean mc_args__show_datadirs_extended = FALSE;
-+#ifdef ENABLE_CONFIGURE_ARGS
- static gboolean mc_args__show_configure_opts = FALSE;
-+#endif
- 
- static GOptionGroup *main_group;
- 
-@@ -125,6 +127,7 @@ static const GOptionEntry argument_main_table[] = {
-  NULL
- },
- 
-+#ifdef ENABLE_CONFIGURE_ARGS
- /* show configure options */
- {
-  "configure-options", '\0', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_NONE,
-@@ -132,6 +135,7 @@ static const GOptionEntry argument_main_table[] = {
-  N_("Print configure options"),
-  NULL
- },
-+#endif
- 
- {
-  "printwd", 'P', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_STRING,
-@@ -758,11 +762,13 @@ mc_args_show_info (void)
- return FALSE;
- }
- 
-+#ifdef ENABLE_CONFIGURE_ARGS
- if (mc_args__show_configure_opts)
- {
- show_configure_options ();
- return FALSE;
- }
-+#endif
- 
- return TRUE;
- }
-diff --git a/src/textconf.c b/src/textconf.c
-index 1e0613e58..f39b9e028 100644
 a/src/textconf.c
-+++ b/src/textconf.c
-@@ -232,10 +232,12 @@ show_datadirs_extended (void)
- 
- /* 
-
 */
- 
-+#ifdef ENABLE_CONFIGURE_ARGS
- void
- show_configure_options (void)
- {
- (void) printf ("%s\n", MC_CONFIGURE_ARGS);
- }
-+#endif
- 
- /* 
-
 */
--- 
-2.23.0
-
diff --git 
a/meta/recipes-extended/mc/files/0001-Ticket-3629-configure.ac-drop-bundled-gettext.patch
 
b/meta/recipes-extended/mc/files/0001-Ticket-3629-configure.ac-drop-bundled-gettext.patch
deleted file mode 100644
index 8f357378d0..00
--- 
a/meta/recipes-extended/mc/files/0001-Ticket-3629-configure.ac-drop-bundled-gettext.patch
+++ /dev/null
@@ -1,110 +0,0 @@
-From 0d677a014a87b968d79eea2353ac4e342b0fd4ca Mon Sep 17 00:00:00 2001
-From: Sergei Trofimovich 
-Date: Wed, 11 Sep 2019 22:58:18 +0100
-Subject: [PATCH] Ticket #3629: configure.ac: drop bundled gettext
-
-Bundled libintl did not support linking to internal static
-libraries (libmc in our case): directly specified static
-libraries are not pulled by libtool and are not usable

Re: [OE-core] Failure when generating image with latest OE-Core

2020-05-02 Thread Peter Kjellerstedt
There is nothing special about that package, apart from that it is normally the 
first one listed to be installed after the “--> Starting dependency resolution” 
message.
I tried to see if I could see anything using `strace -f dnf …`, but all I can 
see related to history.sqlite are two failed calls to lstat(). It never tries 
to open it before it fails…

//Peter

From: Alexander Kanavin 
Sent: den 2 maj 2020 18:36
To: Peter Kjellerstedt 
Cc: OE Core (openembedded-core@lists.openembedded.org) 

Subject: Re: Failure when generating image with latest OE-Core

I haven't seen this, and neither has the autobuilder. Could this be caused by 
something in 'internal package'?

Alex

On Sat, 2 May 2020 at 18:27, Peter Kjellerstedt 
mailto:peter.kjellerst...@axis.com>> wrote:
After upgrading to the latest master of OE-Core, I get the following
error when building an image:

DNF version: 4.2.21
cachedir: /rootfs/var/cache/dnf
Added oe-repo repo from /oe-rootfs-repo
User-Agent: falling back to 'libdnf': could not detect OS or basearch
repo: using cache for: oe-repo
oe-repo: using metadata from Sat 02 May 2020 04:04:01 PM UTC.
Excludes in dnf.conf: rng-tools, shared-mime-info, udev-hwdb
--> Starting dependency resolution
History database cannot be created: /rootfs/var/lib/dnf/history.sqlite. Error: SQLite error on ":memory:": 
Executing an SQL statement failed: no such column: 1.2
---> Package   will be installed
History database cannot be created: /rootfs/var/lib/dnf/history.sqlite. Error: SQLite error on ":memory:": 
Executing an SQL statement failed: no such column: 1.2
Error: SQLite error on ":memory:": Executing an SQL statement failed: no such 
column: 1.2

I assume it is related to the recent rpm/dnf update.
Any ideas on what's going on?

//Peter
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137749): 
https://lists.openembedded.org/g/openembedded-core/message/137749
Mute This Topic: https://lists.openembedded.org/mt/73938347/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [OE-core] [PATCH 16/17] glib-2.0: update 2.62.4 -> 2.64.2

2020-05-02 Thread Alexander Kanavin
On Sat, 2 May 2020 at 17:00, Richard Purdie <
richard.pur...@linuxfoundation.org> wrote:

> On Thu, 2020-04-30 at 11:58 +0200, Alexander Kanavin wrote:
> > Add a couple of missing ptest dependencies.
>
> That causes problems for non-gplv3:
> https://autobuilder.yoctoproject.org/typhoon/#/builders/75/builds/1848
>

"Missing or unbuildable dependency chain was: ['core-image-minimal',
'packagegroup-core-boot', 'udev', 'glib-2.0', 'python3-dbusmock']"
The offending package is pulled in via ptests RDEPENDS.

This can be addressed either via
DISTRO_FEATURES_remove = "ptest"

or setting license restrictions per-image:
INCOMPATIBLE_LICENSE_pn-core-image-minimal = "GPL-3.0 LGPL-3.0"

I prefer the latter - thoughts?

Alex
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137748): 
https://lists.openembedded.org/g/openembedded-core/message/137748
Mute This Topic: https://lists.openembedded.org/mt/73372201/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [OE-core][PATCH] icu: upgrade 66.1 -> 67.1

2020-05-02 Thread Andrej Valek
Do I have to send the patch again , even if there is no change?

Isn’t it better, that Richard can take this patch from PR, where all sending 
issues are covered?

Regards,
Andrej

From: openembedded-core@lists.openembedded.org 
 On Behalf Of Alexander Kanavin
Sent: Saturday, May 2, 2020 12:16 AM
To: Valek, Andrej (IOT DS EU SK SI-BP1) 
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [OE-core][PATCH] icu: upgrade 66.1 -> 67.1

Right, I think it's fine to send a patch once more, and then follow up the 
patchwork error with a notice that the patch must be applied with --keep-cr 
(which I guess patchwork doesn't do).

Alex

On Fri, 1 May 2020 at 18:52, Valek, Andrej 
mailto:andrej.va...@siemens.com>> wrote:
Hello Alex,

I have create a PR 
(https://github.com/openembedded/openembedded-core/pull/62).
 You can directly take a look on it there.

As I have already said, the problematic is “0001-Fix-big-endian-build.patch”.

Regards,
Andrej

From: Alexander Kanavin mailto:alex.kana...@gmail.com>>
Sent: Friday, May 1, 2020 3:56 PM
To: Valek, Andrej (IOT DS EU SK SI-BP1) 
mailto:andrej.va...@siemens.com>>
Cc: 
openembedded-core@lists.openembedded.org
Subject: Re: [OE-core][PATCH] icu: upgrade 66.1 -> 67.1

Hello Andrej,

can you publish the patch in git somewhere so I could take a look at exactly 
what goes wrong? Occasionally we have patches that can't make it through the 
mailing list for whatever reason, then RP pulls them directly from git on 
request.

Alex

On Fri, 1 May 2020 at 15:48, Valek, Andrej 
mailto:andrej.va...@siemens.com>> wrote:
Hello Alex,

I wanted to upgrade ICU to 67.1 release but without success. Locally it was 
working as well. When I was trying to apply the upgrading patch it failed. I 
realized that, there are mixed line endings Linux/Windows. I am able to apply 
patch with "git am --keep-cr", but It's still failing on patchwork.

I was trying to send the patch with different encodings, auto, 7bit, but still 
without success (3-times). Which kind of " 
--transfer-encoding=(7bit|8bit|quoted-printable|base64" should I use for it? Is 
there an another way to submit the patch?

Thank you,
Andrej

-Original Message-
From: Andrej Valek mailto:andrej.va...@siemens.com>>
Sent: Friday, May 1, 2020 10:26 AM
To: 
openembedded-core@lists.openembedded.org
Cc: Valek, Andrej (IOT DS EU SK SI-BP1) 
mailto:andrej.va...@siemens.com>>
Subject: [OE-core][PATCH] icu: upgrade 66.1 -> 67.1

- 0001-icu-Added-armeb-support.patch - rebased
- 0001-Fix-big-endian-build.patch - removed, already included in new version
- icu-pkgdata-large-cmd.patch - removed, implemented correct size

Signed-off-by: Andrej Valek 
mailto:andrej.va...@siemens.com>>
---
 .../icu/icu/0001-Fix-big-endian-build.patch| 28 -
 .../icu/icu/0001-icu-Added-armeb-support.patch |  6 +--
 .../icu/icu/icu-pkgdata-large-cmd.patch| 49 --
 
.../icu/{icu_66.1.bb
 => 
icu_67.1.bb}
   |  7 +---
 4 files changed, 5 insertions(+), 85 deletions(-)  delete mode 100644 
meta/recipes-support/icu/icu/0001-Fix-big-endian-build.patch
 delete mode 100644 meta/recipes-support/icu/icu/icu-pkgdata-large-cmd.patch
 rename 
meta/recipes-support/icu/{icu_66.1.bb
 => 
icu_67.1.bb}
 (84%)

diff --git a/meta/recipes-support/icu/icu/0001-Fix-big-endian-build.patch 
b/meta/recipes-support/icu/icu/0001-Fix-big-endian-build.patch
deleted file mo

Re: [OE-core] Failure when generating image with latest OE-Core

2020-05-02 Thread Alexander Kanavin
I haven't seen this, and neither has the autobuilder. Could this be caused
by something in 'internal package'?

Alex

On Sat, 2 May 2020 at 18:27, Peter Kjellerstedt 
wrote:

> After upgrading to the latest master of OE-Core, I get the following
> error when building an image:
>
> DNF version: 4.2.21
> cachedir: /rootfs/var/cache/dnf
> Added oe-repo repo from /oe-rootfs-repo
> User-Agent: falling back to 'libdnf': could not detect OS or basearch
> repo: using cache for: oe-repo
> oe-repo: using metadata from Sat 02 May 2020 04:04:01 PM UTC.
> Excludes in dnf.conf: rng-tools, shared-mime-info, udev-hwdb
> --> Starting dependency resolution
> History database cannot be created:  workdir>/rootfs/var/lib/dnf/history.sqlite. Error: SQLite error on
> ":memory:": Executing an SQL statement failed: no such column: 1.2
> ---> Package   will be installed
> History database cannot be created:  workdir>/rootfs/var/lib/dnf/history.sqlite. Error: SQLite error on
> ":memory:": Executing an SQL statement failed: no such column: 1.2
> Error: SQLite error on ":memory:": Executing an SQL statement failed: no
> such column: 1.2
>
> I assume it is related to the recent rpm/dnf update.
> Any ideas on what's going on?
>
> //Peter
>
>
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137746): 
https://lists.openembedded.org/g/openembedded-core/message/137746
Mute This Topic: https://lists.openembedded.org/mt/73938347/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[OE-core] Failure when generating image with latest OE-Core

2020-05-02 Thread Peter Kjellerstedt
After upgrading to the latest master of OE-Core, I get the following 
error when building an image:

DNF version: 4.2.21
cachedir: /rootfs/var/cache/dnf
Added oe-repo repo from /oe-rootfs-repo
User-Agent: falling back to 'libdnf': could not detect OS or basearch
repo: using cache for: oe-repo
oe-repo: using metadata from Sat 02 May 2020 04:04:01 PM UTC.
Excludes in dnf.conf: rng-tools, shared-mime-info, udev-hwdb
--> Starting dependency resolution
History database cannot be created: /rootfs/var/lib/dnf/history.sqlite. Error: SQLite error on ":memory:": 
Executing an SQL statement failed: no such column: 1.2
---> Package   will be installed
History database cannot be created: /rootfs/var/lib/dnf/history.sqlite. Error: SQLite error on ":memory:": 
Executing an SQL statement failed: no such column: 1.2
Error: SQLite error on ":memory:": Executing an SQL statement failed: no such 
column: 1.2

I assume it is related to the recent rpm/dnf update. 
Any ideas on what's going on?

//Peter

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137745): 
https://lists.openembedded.org/g/openembedded-core/message/137745
Mute This Topic: https://lists.openembedded.org/mt/73938347/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [OE-core] [PATCH 16/17] glib-2.0: update 2.62.4 -> 2.64.2

2020-05-02 Thread Richard Purdie
On Thu, 2020-04-30 at 11:58 +0200, Alexander Kanavin wrote:
> Add a couple of missing ptest dependencies.

That causes problems for non-gplv3:
https://autobuilder.yoctoproject.org/typhoon/#/builders/75/builds/1848

> Drop backports.

and more strangely:

https://autobuilder.yoctoproject.org/typhoon/#/builders/108/builds/466

which looks liek a gtk-doc issue?

Cheers,

Richard

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137744): 
https://lists.openembedded.org/g/openembedded-core/message/137744
Mute This Topic: https://lists.openembedded.org/mt/73372201/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [OE-core] [PATCH 14/17] coreutils: update to 8.32

2020-05-02 Thread Richard Purdie
On Thu, 2020-04-30 at 11:58 +0200, Alexander Kanavin wrote:
> License-Update: copyright years, http changed to https
> Signed-off-by: Alexander Kanavin 
> ---
>  .../coreutils/fix-selinux-flask.patch | 13 ---
>  .../remove-usr-local-lib-from-m4.patch| 23 ++---
> --
>  .../strtod_fix_clash_with_strtold.patch   | 10 +++-
>  .../{coreutils_8.31.bb => coreutils_8.32.bb}  | 11 +
>  4 files changed, 31 insertions(+), 26 deletions(-)
>  rename meta/recipes-core/coreutils/{coreutils_8.31.bb =>
> coreutils_8.32.bb} (95%)

Fails to build on arm hosts:

https://autobuilder.yoctoproject.org/typhoon/#/builders/42/builds/1833

Cheers,

Richard

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137743): 
https://lists.openembedded.org/g/openembedded-core/message/137743
Mute This Topic: https://lists.openembedded.org/mt/73372199/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [OE-core] [PATCH 08/17] mc: update to 4.8.24

2020-05-02 Thread Richard Purdie
On Thu, 2020-04-30 at 11:58 +0200, Alexander Kanavin wrote:
> Signed-off-by: Alexander Kanavin 
> ---
>  ...Add-option-to-control-configure-args.patch |  99 
>  ...29-configure.ac-drop-bundled-gettext.patch | 110 --
>  .../mc/{mc_4.8.23.bb => mc_4.8.24.bb} |   6 +-
>  3 files changed, 2 insertions(+), 213 deletions(-)
>  delete mode 100644 
> meta/recipes-extended/mc/files/0001-Add-option-to-control-configure-args.patch
>  delete mode 100644 
> meta/recipes-extended/mc/files/0001-Ticket-3629-configure.ac-drop-bundled-gettext.patch
>  rename meta/recipes-extended/mc/{mc_4.8.23.bb => mc_4.8.24.bb} (88%)

https://autobuilder.yoctoproject.org/typhoon/#/builders/40/builds/1843

Cheers,

Richard

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137742): 
https://lists.openembedded.org/g/openembedded-core/message/137742
Mute This Topic: https://lists.openembedded.org/mt/73372193/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [OE-core] [PATCH 14/17] coreutils: update to 8.32

2020-05-02 Thread Richard Purdie
On Thu, 2020-04-30 at 11:58 +0200, Alexander Kanavin wrote:
> License-Update: copyright years, http changed to https
> Signed-off-by: Alexander Kanavin 
> ---
>  .../coreutils/fix-selinux-flask.patch | 13 ---
>  .../remove-usr-local-lib-from-m4.patch| 23 ++---
> --
>  .../strtod_fix_clash_with_strtold.patch   | 10 +++-
>  .../{coreutils_8.31.bb => coreutils_8.32.bb}  | 11 +
>  4 files changed, 31 insertions(+), 26 deletions(-)
>  rename meta/recipes-core/coreutils/{coreutils_8.31.bb =>
> coreutils_8.32.bb} (95%)
> 
> diff --git a/meta/recipes-core/coreutils/coreutils/fix-selinux-
> flask.patch b/meta/recipes-core/coreutils/coreutils/fix-selinux-
> flask.patch
> index 9d1ae55d47..173a57925b 100644
> --- a/meta/recipes-core/coreutils/coreutils/fix-selinux-flask.patch
> +++ b/meta/recipes-core/coreutils/coreutils/fix-selinux-flask.patch
> @@ -1,4 +1,4 @@
> -From a1d360509fa3a4aff57eedcd528cc0347a87531d Mon Sep 17 00:00:00
> 2001
> +From 7e20a7242ba2657f73311bbf5278093da67f0721 Mon Sep 17 00:00:00
> 2001
>  From: Robert Yang 
>  Date: Tue, 16 Sep 2014 01:59:08 -0700
>  Subject: [PATCH] gnulib-comp.m4: selinux/flask.h should respect to
> @@ -13,20 +13,20 @@ compilation terminated.
>  Upstream-Status: Pending
>  
>  Signed-off-by: Robert Yang 
> +
>  ---
> - m4/gnulib-comp.m4 |2 +-
> + m4/gnulib-comp.m4 | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>  
>  diff --git a/m4/gnulib-comp.m4 b/m4/gnulib-comp.m4
> -index 472d3a0..5f09734 100644
> +index dead90e..0abf0bd 100644
>  --- a/m4/gnulib-comp.m4
>  +++ b/m4/gnulib-comp.m4
> -@@ -1730,11 +1730,11 @@ AC_DEFUN([gl_INIT],
> +@@ -1860,10 +1860,10 @@ AC_DEFUN([gl_INIT],
>   AC_LIBOBJ([select])
> fi
> gl_SYS_SELECT_MODULE_INDICATOR([select])
>  -  AC_CHECK_HEADERS([selinux/flask.h])
> -   AC_LIBOBJ([selinux-at])
> gl_HEADERS_SELINUX_SELINUX_H
> gl_HEADERS_SELINUX_CONTEXT_H
> if test "$with_selinux" != no && test
> "$ac_cv_header_selinux_selinux_h" = yes; then
> @@ -34,6 +34,3 @@ index 472d3a0..5f09734 100644
>   AC_LIBOBJ([getfilecon])
> fi
> gl_SERVENT
> --- 
> -1.7.9.5
> -
> diff --git a/meta/recipes-core/coreutils/coreutils/remove-usr-local-
> lib-from-m4.patch b/meta/recipes-core/coreutils/coreutils/remove-usr-
> local-lib-from-m4.patch
> index 2ef8a548ac..1a8a9b9983 100644
> --- a/meta/recipes-core/coreutils/coreutils/remove-usr-local-lib-
> from-m4.patch
> +++ b/meta/recipes-core/coreutils/coreutils/remove-usr-local-lib-
> from-m4.patch
> @@ -1,3 +1,8 @@
> +From a26530083a29910bfd606ecc621acecd547a Mon Sep 17 00:00:00
> 2001
> +From: Khem Raj 
> +Date: Wed, 3 Aug 2011 14:12:30 -0700
> +Subject: [PATCH] coreutils: Fix build on uclibc
> +
>  We have problem using hardcoded directories like /usr/local here
>  which will be checked for cross builds. This is a special case which
>  is valid for AIX only. We do not have AIX as one of our supported
> @@ -8,11 +13,15 @@ Signed-off-by: Khem Raj 
>  
>  Upstream-Status: Inappropriate [Upstream does care for AIX while we
> may not]
>  
> -Index: coreutils-8.14/m4/getloadavg.m4
> -===
>  coreutils-8.14.orig/m4/getloadavg.m4 2011-09-19
> 08:09:24.0 -0700
> -+++ coreutils-8.14/m4/getloadavg.m4  2011-10-19 21:42:00.385533357
> -0700
> -@@ -41,16 +41,6 @@
> +---
> + m4/getloadavg.m4 | 12 
> + 1 file changed, 12 deletions(-)
> +
> +diff --git a/m4/getloadavg.m4 b/m4/getloadavg.m4
> +index 8e96965..63782a2 100644
> +--- a/m4/getloadavg.m4
>  b/m4/getloadavg.m4
> +@@ -41,18 +41,6 @@ AC_CHECK_FUNC([getloadavg], [],
>  [LIBS="-lutil $LIBS" gl_func_getloadavg_done=yes])
>  fi
>   
> @@ -20,7 +29,9 @@ Index: coreutils-8.14/m4/getloadavg.m4
>  - # There is a commonly available library for RS/6000 AIX.
>  - # Since it is not a standard part of AIX, it might be
> installed locally.
>  - gl_getloadavg_LIBS=$LIBS
> -- LIBS="-L/usr/local/lib $LIBS"
> +- if test $cross_compiling != yes; then
> +-   LIBS="-L/usr/local/lib $LIBS"
> +- fi
>  - AC_CHECK_LIB([getloadavg], [getloadavg],
>  -  [LIBS="-lgetloadavg $LIBS"
> gl_func_getloadavg_done=yes],
>  -  [LIBS=$gl_getloadavg_LIBS])
> diff --git a/meta/recipes-
> core/coreutils/coreutils/strtod_fix_clash_with_strtold.patch
> b/meta/recipes-
> core/coreutils/coreutils/strtod_fix_clash_with_strtold.patch
> index 0093cd..fd629a5d2a 100644
> --- a/meta/recipes-
> core/coreutils/coreutils/strtod_fix_clash_with_strtold.patch
> +++ b/meta/recipes-
> core/coreutils/coreutils/strtod_fix_clash_with_strtold.patch
> @@ -1,4 +1,4 @@
> -From 0562b040fa17f1722ba2b3096067b45d0582ca53 Mon Sep 17 00:00:00
> 2001
> +From 134137671bd771bf0205b87a735c545dbcdbb4b3 Mon Sep 17 00:00:00
> 2001
>  From: Paul Eggert 
>  Date: Mon, 11 Mar 2019 16:40:29 -0700
>  Subject: [PATCH] strtod: fix clash with strtold
> @@ -14,12 +14,11 @@ Upstream-Status:

[OE-core] ✗ patchtest: failure for php: fix zip package config (rev2)

2020-05-02 Thread Patchwork
== Series Details ==

Series: php: fix zip package config (rev2)
Revision: 2
URL   : https://patchwork.openembedded.org/series/23910/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Patch[meta-oe,v3] php: fix zip package config
 Issue Series sent to the wrong mailing list 
[test_target_mailing_list] 
  Suggested fixCheck the project's README (meta-oe,v3) and send the patch 
to the indicated list

* Issue Series does not apply on top of target branch 
[test_series_merge_on_head] 
  Suggested fixRebase your series on top of targeted branch
  Targeted branch  master (currently at e44ca998c2)



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Guidelines: 
https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137740): 
https://lists.openembedded.org/g/openembedded-core/message/137740
Mute This Topic: https://lists.openembedded.org/mt/73935326/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[OE-core] [meta-oe][PATCH v3] php: fix zip package config

2020-05-02 Thread Konrad Weihmann
--enable-zip and --with-libzip were removed in PHP 7.x.
These are replaced by --with-zip --with-zlib-dir.

Signed-off-by: Konrad Weihmann 
---
 meta-oe/recipes-devtools/php/php_7.4.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/php/php_7.4.4.bb 
b/meta-oe/recipes-devtools/php/php_7.4.4.bb
index ff4c28e13..c1784a78d 100644
--- a/meta-oe/recipes-devtools/php/php_7.4.4.bb
+++ b/meta-oe/recipes-devtools/php/php_7.4.4.bb
@@ -81,7 +81,7 @@ PACKAGECONFIG ??= "mysql sqlite3 imap opcache openssl \
 "
 PACKAGECONFIG_class-native = ""
 
-PACKAGECONFIG[zip] = "--enable-zip 
--with-libzip=${STAGING_EXECPREFIXDIR},,libzip"
+PACKAGECONFIG[zip] = "--with-zip 
--with-zlib-dir=${STAGING_EXECPREFIXDIR},,libzip"
 
 PACKAGECONFIG[mysql] = "--with-mysqli=mysqlnd \
 --with-pdo-mysql=mysqlnd \
-- 
2.20.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137739): 
https://lists.openembedded.org/g/openembedded-core/message/137739
Mute This Topic: https://lists.openembedded.org/mt/73934574/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[OE-core] ✗ patchtest: failure for php: fix zip package config

2020-05-02 Thread Patchwork
== Series Details ==

Series: php: fix zip package config
Revision: 1
URL   : https://patchwork.openembedded.org/series/23910/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Patch[meta-oe,v2] php: fix zip package config
 Issue Series sent to the wrong mailing list 
[test_target_mailing_list] 
  Suggested fixCheck the project's README (meta-oe,v2) and send the patch 
to the indicated list

* Issue Series does not apply on top of target branch 
[test_series_merge_on_head] 
  Suggested fixRebase your series on top of targeted branch
  Targeted branch  master (currently at e44ca998c2)



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Guidelines: 
https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137738): 
https://lists.openembedded.org/g/openembedded-core/message/137738
Mute This Topic: https://lists.openembedded.org/mt/73934477/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[OE-core] [meta-oe][PATCH v2] php: fix zip package config

2020-05-02 Thread Konrad Weihmann
--enable-zip and --with-libzip were removed in PHP 7.x.
These are replaced by --with-zip --with-zlib-dir.

Signed-off-by: Konrad Weihmann 
---
 meta-oe/recipes-devtools/php/php_7.4.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/php/php_7.4.4.bb 
b/meta-oe/recipes-devtools/php/php_7.4.4.bb
index ff4c28e13..c1784a78d 100644
--- a/meta-oe/recipes-devtools/php/php_7.4.4.bb
+++ b/meta-oe/recipes-devtools/php/php_7.4.4.bb
@@ -81,7 +81,7 @@ PACKAGECONFIG ??= "mysql sqlite3 imap opcache openssl \
 "
 PACKAGECONFIG_class-native = ""
 
-PACKAGECONFIG[zip] = "--enable-zip 
--with-libzip=${STAGING_EXECPREFIXDIR},,libzip"
+PACKAGECONFIG[zip] = "--with-zip 
--with-zlib-dir=${STAGING_EXECPREFIXDIR},,libzip"
 
 PACKAGECONFIG[mysql] = "--with-mysqli=mysqlnd \
 --with-pdo-mysql=mysqlnd \
-- 
2.20.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137737): 
https://lists.openembedded.org/g/openembedded-core/message/137737
Mute This Topic: https://lists.openembedded.org/mt/73934019/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [OE-core] [meta-oe][PATCH 1/2] php: fix zip package config

2020-05-02 Thread Konrad Weihmann

Ahhh, yes...
I'll fix that in the commit message somewhat later.

Thanks for pointing this out

On 02.05.20 14:52, Andreas Oberritter wrote:

Hello Konrad,

On Fri,  1 May 2020 13:56:40 +0200
"Konrad Weihmann"  wrote:


--enable-zip and --with-libzip were removed in PHP 7.x.
These are replaced by --enable-zip --with-libzip.


you meant --with-zip --with-zlib-dir.

Best regards,
Andreas



Signed-off-by: Konrad Weihmann 
---
  meta-oe/recipes-devtools/php/php_7.4.4.bb | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/php/php_7.4.4.bb 
b/meta-oe/recipes-devtools/php/php_7.4.4.bb
index ff4c28e13..c1784a78d 100644
--- a/meta-oe/recipes-devtools/php/php_7.4.4.bb
+++ b/meta-oe/recipes-devtools/php/php_7.4.4.bb
@@ -81,7 +81,7 @@ PACKAGECONFIG ??= "mysql sqlite3 imap opcache openssl \
  "
  PACKAGECONFIG_class-native = ""
  
-PACKAGECONFIG[zip] = "--enable-zip --with-libzip=${STAGING_EXECPREFIXDIR},,libzip"

+PACKAGECONFIG[zip] = "--with-zip 
--with-zlib-dir=${STAGING_EXECPREFIXDIR},,libzip"
  
  PACKAGECONFIG[mysql] = "--with-mysqli=mysqlnd \

  --with-pdo-mysql=mysqlnd \


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137736): 
https://lists.openembedded.org/g/openembedded-core/message/137736
Mute This Topic: https://lists.openembedded.org/mt/73395209/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [OE-core] [meta-oe][PATCH 1/2] php: fix zip package config

2020-05-02 Thread Andreas Oberritter
Hello Konrad,

On Fri,  1 May 2020 13:56:40 +0200
"Konrad Weihmann"  wrote:

> --enable-zip and --with-libzip were removed in PHP 7.x.
> These are replaced by --enable-zip --with-libzip.

you meant --with-zip --with-zlib-dir.

Best regards,
Andreas


> Signed-off-by: Konrad Weihmann 
> ---
>  meta-oe/recipes-devtools/php/php_7.4.4.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-oe/recipes-devtools/php/php_7.4.4.bb 
> b/meta-oe/recipes-devtools/php/php_7.4.4.bb
> index ff4c28e13..c1784a78d 100644
> --- a/meta-oe/recipes-devtools/php/php_7.4.4.bb
> +++ b/meta-oe/recipes-devtools/php/php_7.4.4.bb
> @@ -81,7 +81,7 @@ PACKAGECONFIG ??= "mysql sqlite3 imap opcache openssl \
>  "
>  PACKAGECONFIG_class-native = ""
>  
> -PACKAGECONFIG[zip] = "--enable-zip 
> --with-libzip=${STAGING_EXECPREFIXDIR},,libzip"
> +PACKAGECONFIG[zip] = "--with-zip 
> --with-zlib-dir=${STAGING_EXECPREFIXDIR},,libzip"
>  
>  PACKAGECONFIG[mysql] = "--with-mysqli=mysqlnd \
>  --with-pdo-mysql=mysqlnd \

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137735): 
https://lists.openembedded.org/g/openembedded-core/message/137735
Mute This Topic: https://lists.openembedded.org/mt/73395209/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[OE-core] Proposal: community maintained recipes in oe-core

2020-05-02 Thread Alexander Kanavin
Hello all,

the current maintenance model in openembedded-core is problematic due to
lack of well-working process of finding maintainers, and replacing them
when they're no longer able to contribute. This becomes especially
frustrating when maintainers silently disappear, and perfectly fine patches
produced by Auto Upgrade Helper and sent to them via private mail go wasted.

I'm proposing that some of the recipes in oe-core - those that are known to
lack an active maintainer - would be transitioned to 'community
maintenance'. What this means is that the maintainer's email becomes the
oe-core mailing list email, and accordingly monthly upgrade patches will be
sent to the list. Then anyone with an interest in those components can pick
up the patches, polish/test them as needed and send them to oe-core for
inclusion into master/release branches. This opens up an easy path for
people to become maintainers, and also highlights what recipes suffer from
lack of attention.

Let me know,
Alex
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137734): 
https://lists.openembedded.org/g/openembedded-core/message/137734
Mute This Topic: https://lists.openembedded.org/mt/73932965/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [OE-core] [yocto] Which recipe for Linux tools to run u-boot command inside Linux?

2020-05-02 Thread JH
OK, finally built the u-boot-fw-utils and run it on iMX6ULL:

# fw_printenv -v
Compiled with U-Boot 2019.07-dirty

But it could not run:

# fw_printenv
Cannot read bad block mark: Invalid argument

Here is the configure file:

# cat /etc/fw_env.config

# NAND
/dev/mtd1  0x400x100x28


I think values in configure file are correct:

# cat /proc/mtd
dev:size   erasesize  name
mtd0: 0040 0002 "boot"
mtd1: 0010 0002 "ubootenv"
mtd2: 0fb0 0002 "storage"

=> nand info

Device 0: nand0, sector size 128 KiB
  Page size   2048 b
  OOB size  64 b
  Erase size131072 b
  subpagesize 2048 b
  options 0x40004200
  bbt options 0x

Any advice what I could be missing?

Thank you.

Kind regards,

- jh

On 5/1/20, JH via lists.yoctoproject.org
 wrote:
> On 4/30/20, Nicolas Jeker  wrote:
>
>> on Zeus it's very likely _not_ libubootenv that you need, you should
>> try to install u-boot-fw-utils. As Yann wrote, the tools are in
>> libubootenv since Dunfell, which is newer than Zeus.
>
> Thanks Nicolas, I have following error, what I could be missing here?
>
> ERROR: Task
> (/build/oe-core/meta/recipes-bsp/u-boot/u-boot-fw-utils_2019.07.bb:do_compile)
> failed with exit code '137'
>
>
>
> --
> "A man can fail many times, but he isn't a failure until he begins to
> blame somebody else."
> -- John Burroughs
>


-- 
"A man can fail many times, but he isn't a failure until he begins to
blame somebody else."
-- John Burroughs
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137733): 
https://lists.openembedded.org/g/openembedded-core/message/137733
Mute This Topic: https://lists.openembedded.org/mt/73389712/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [oe-core][PATCH 1/1][v2] re2c: advance to version 1.3

2020-05-02 Thread Richard Purdie
On Tue, 2020-04-28 at 11:18 -0700, Joe Slater wrote:
> The locations of release archives have changed.  We change to pulling
> source from the git repo.  Remove PV from the recipe name.
> 
> Fix CVE-2020-11958 which applies to versions 1.2 and 1.3.
> 
> Signed-off-by: Joe Slater 

Somehow this seems to cause the failures in:

https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/909

i.e.

https://autobuilder.yoctoproject.org/typhoon/#/builders/80/builds/890
https://autobuilder.yoctoproject.org/typhoon/#/builders/86/builds/895
https://autobuilder.yoctoproject.org/typhoon/#/builders/87/builds/884

which are all:

oe-selftest -r runtime_test.TestImage.test_testimage_virgl_gtk_sdl

failing...

Cheers,

Richard

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#137732): 
https://lists.openembedded.org/g/openembedded-core/message/137732
Mute This Topic: https://lists.openembedded.org/mt/7211/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: 
https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy
  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-