Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *mc* to *4.8.30* has Succeeded.

Next steps:
    - apply the patch: git am 0001-mc-upgrade-4.8.29-4.8.30.patch
    - check the changes to upstream patches and summarize them in the commit 
message,
    - compile an image that contains the package
    - perform some basic sanity tests
    - amend the patch and sign it off: git commit -s --reset-author --amend
    - send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
From 0ba9833c9a39ef176f75f2b7da24925044b71469 Mon Sep 17 00:00:00 2001
From: Upgrade Helper <a...@yoctoproject.org>
Date: Wed, 16 Aug 2023 08:33:14 +0000
Subject: [PATCH] mc: upgrade 4.8.29 -> 4.8.30

---
 ...-mc-replace-perl-w-with-use-warnings.patch | 127 ------------------
 .../mc/{mc_4.8.29.bb => mc_4.8.30.bb}         |   3 +-
 2 files changed, 1 insertion(+), 129 deletions(-)
 delete mode 100644 
meta/recipes-extended/mc/files/0001-mc-replace-perl-w-with-use-warnings.patch
 rename meta/recipes-extended/mc/{mc_4.8.29.bb => mc_4.8.30.bb} (95%)

diff --git 
a/meta/recipes-extended/mc/files/0001-mc-replace-perl-w-with-use-warnings.patch 
b/meta/recipes-extended/mc/files/0001-mc-replace-perl-w-with-use-warnings.patch
deleted file mode 100644
index 5ede82d342..0000000000
--- 
a/meta/recipes-extended/mc/files/0001-mc-replace-perl-w-with-use-warnings.patch
+++ /dev/null
@@ -1,127 +0,0 @@
-From 62c86b69106d0d702167ba1b963ea1c201cce5af Mon Sep 17 00:00:00 2001
-From: Robert Yang <liezhi.y...@windriver.com>
-Date: Thu, 6 Apr 2017 02:24:28 -0700
-Subject: [PATCH] mc: replace "perl -w" with "use warnings"
-
-The shebang's max length is usually 128 as defined in
-/usr/include/linux/binfmts.h:
-  #define BINPRM_BUF_SIZE 128
-
-There would be errors when @PERL@ is longer than 128, use
-'/usr/bin/env perl' can fix the problem, but '/usr/bin/env perl -w'
-doesn't work:
-
-/usr/bin/env: perl -w: No such file or directory
-
-So replace "perl -w" with "use warnings" to make it work.
-
-The man2hlp.in already has "use warnings;", so just remove '-w' is OK.
-
-Upstream-Status: Submitted [https://github.com/MidnightCommander/mc/pull/174]
-
-Signed-off-by: Robert Yang <liezhi.y...@windriver.com>
-
----
- src/man2hlp/man2hlp.in           | 2 +-
- src/vfs/extfs/helpers/a+.in      | 4 +++-
- src/vfs/extfs/helpers/mailfs.in  | 3 ++-
- src/vfs/extfs/helpers/patchfs.in | 3 ++-
- src/vfs/extfs/helpers/ulib.in    | 4 +++-
- src/vfs/extfs/helpers/uzip.in    | 3 ++-
- 6 files changed, 13 insertions(+), 6 deletions(-)
-
-diff --git a/src/man2hlp/man2hlp.in b/src/man2hlp/man2hlp.in
-index 08765d8..8aa7131 100644
---- a/src/man2hlp/man2hlp.in
-+++ b/src/man2hlp/man2hlp.in
-@@ -1,4 +1,4 @@
--#! @PERL_FOR_BUILD@ -w
-+#! @PERL_FOR_BUILD@
- #
- #  Man page to help file converter
- #  Copyright (C) 1994, 1995, 1998, 2000, 2001, 2002, 2003, 2004, 2005,
-diff --git a/src/vfs/extfs/helpers/a+.in b/src/vfs/extfs/helpers/a+.in
-index 579441c..fe446f4 100644
---- a/src/vfs/extfs/helpers/a+.in
-+++ b/src/vfs/extfs/helpers/a+.in
-@@ -1,4 +1,4 @@
--#! @PERL@ -w
-+#! @PERL@
- #
- # External filesystem for mc, using mtools
- # Written Ludek Brukner <l...@barco.cz>, 1997
-@@ -9,6 +9,8 @@
- 
- # These mtools components must be in PATH for this to work
- 
-+use warnings;
-+
- sub quote {
-     $_ = shift(@_);
-     s/([^\w\/.+-])/\\$1/g;
-diff --git a/src/vfs/extfs/helpers/mailfs.in b/src/vfs/extfs/helpers/mailfs.in
-index 4bdd68b..5bb373b 100644
---- a/src/vfs/extfs/helpers/mailfs.in
-+++ b/src/vfs/extfs/helpers/mailfs.in
-@@ -1,6 +1,7 @@
--#! @PERL@ -w
-+#! @PERL@
- 
- use bytes;
-+use warnings;
- 
- # MC extfs for (possibly compressed) Berkeley style mailbox files
- # Peter Daum <ga...@cs.tu-berlin.de> (Jan 1998, mc-4.1.24)
-diff --git a/src/vfs/extfs/helpers/patchfs.in 
b/src/vfs/extfs/helpers/patchfs.in
-index c20cd54..1f1e75b 100644
---- a/src/vfs/extfs/helpers/patchfs.in
-+++ b/src/vfs/extfs/helpers/patchfs.in
-@@ -1,4 +1,4 @@
--#! @PERL@ -w
-+#! @PERL@
- #
- # Written by Adam Byrtek <al...@debian.org>, 2002
- # Rewritten by David Sterba <d...@jikos.cz>, 2009
-@@ -9,6 +9,7 @@
- 
- use bytes;
- use strict;
-+use warnings;
- use POSIX;
- use File::Temp 'tempfile';
- 
-diff --git a/src/vfs/extfs/helpers/ulib.in b/src/vfs/extfs/helpers/ulib.in
-index 418611f..82c7ccf 100644
---- a/src/vfs/extfs/helpers/ulib.in
-+++ b/src/vfs/extfs/helpers/ulib.in
-@@ -1,9 +1,11 @@
--#! @PERL@ -w
-+#! @PERL@
- #
- # VFS to manage the gputils archives.
- # Written by Molnár Károly (prot...@freemail.hu) 2012
- #
- 
-+use warnings;
-+
- my %month = ('jan' => '01', 'feb' => '02', 'mar' => '03',
-              'apr' => '04', 'may' => '05', 'jun' => '06',
-              'jul' => '07', 'aug' => '08', 'sep' => '09',
-diff --git a/src/vfs/extfs/helpers/uzip.in b/src/vfs/extfs/helpers/uzip.in
-index c468f3a..ceffb53 100644
---- a/src/vfs/extfs/helpers/uzip.in
-+++ b/src/vfs/extfs/helpers/uzip.in
-@@ -1,4 +1,4 @@
--#! @PERL@ -w
-+#! @PERL@
- #
- # zip file archive Virtual File System for Midnight Commander
- # Version 1.4.0 (2001-08-07).
-@@ -9,6 +9,7 @@
- use POSIX;
- use File::Basename;
- use strict;
-+use warnings;
- 
- #
- # Configuration options
diff --git a/meta/recipes-extended/mc/mc_4.8.29.bb 
b/meta/recipes-extended/mc/mc_4.8.30.bb
similarity index 95%
rename from meta/recipes-extended/mc/mc_4.8.29.bb
rename to meta/recipes-extended/mc/mc_4.8.30.bb
index e7f4aacc2e..258ac38e15 100644
--- a/meta/recipes-extended/mc/mc_4.8.29.bb
+++ b/meta/recipes-extended/mc/mc_4.8.30.bb
@@ -9,10 +9,9 @@ RDEPENDS:${PN} = "ncurses-terminfo-base"
 RRECOMMENDS:${PN} = "ncurses-terminfo"
 
 SRC_URI = "http://www.midnight-commander.org/downloads/${BPN}-${PV}.tar.bz2 \
-           file://0001-mc-replace-perl-w-with-use-warnings.patch \
            file://nomandate.patch \
            "
-SRC_URI[sha256sum] = 
"ba6b2d8752806ac23fe045c1b081eb66dcefa6159205c79f86c005dcaf9941c1"
+SRC_URI[sha256sum] = 
"38171f22f889e3030ec9055463d3ecd7843984ab24e6497d8294d1c441a7ddb4"
 
 inherit autotools gettext pkgconfig
 
-- 
2.39.2

packages/core2-32-poky-linux/mc: PKGV changed from 4.8.29 [default] to 4.8.30 
[default]
packages/core2-32-poky-linux/mc: PV changed from "4.8.29" to "4.8.30"
packages/core2-32-poky-linux/mc: SRC_URI changed from 
"http://www.midnight-commander.org/downloads/mc-4.8.29.tar.bz2 
file://0001-mc-replace-perl-w-with-use-warnings.patch file://nomandate.patch" 
to "http://www.midnight-commander.org/downloads/mc-4.8.30.tar.bz2 
file://nomandate.patch"
packages/core2-32-poky-linux/mc/mc-dbg: PKGV changed from 4.8.29 [default] to 
4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-dbg: PV changed from "4.8.29" to "4.8.30"
packages/core2-32-poky-linux/mc/mc-dbg: PKGSIZE changed from 3290556 to 3390296 
(+3%)
packages/core2-32-poky-linux/mc/mc-dev: PKGV changed from 4.8.29 [default] to 
4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-dev: PV changed from "4.8.29" to "4.8.30"
packages/core2-32-poky-linux/mc/mc-doc: PKGV changed from 4.8.29 [default] to 
4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-doc: PV changed from "4.8.29" to "4.8.30"
packages/core2-32-poky-linux/mc/mc-doc: PKGSIZE changed from 1083774 to 1083788 
(+0%)
packages/core2-32-poky-linux/mc/mc-fish: PKGV changed from 4.8.29 [default] to 
4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-fish: PV changed from "4.8.29" to "4.8.30"
packages/core2-32-poky-linux/mc/mc-fish: PKGSIZE changed from 17133 to 17132 
(-0%)
packages/core2-32-poky-linux/mc/mc-helpers-perl: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-helpers-perl: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-helpers-perl: PKGSIZE changed from 77846 to 
77901 (+0%)
packages/core2-32-poky-linux/mc/mc-helpers: PKGV changed from 4.8.29 [default] 
to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-helpers: PV changed from "4.8.29" to "4.8.30"
packages/core2-32-poky-linux/mc/mc-helpers: PKGSIZE changed from 103609 to 
103695 (+0%)
packages/core2-32-poky-linux/mc/mc-locale-af: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-af: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-ar: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-ar: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-az: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-az: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-az: PKGSIZE changed from 20193 to 
20124 (-0%)
packages/core2-32-poky-linux/mc/mc-locale-be: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-be: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-be: PKGSIZE changed from 111870 to 
113736 (+2%)
packages/core2-32-poky-linux/mc/mc-locale-bg: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-bg: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-bg: PKGSIZE changed from 110392 to 
109171 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-br: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-br: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-br: PKGSIZE changed from 2650 to 2657 
(+0%)
packages/core2-32-poky-linux/mc/mc-locale-ca: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-ca: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-ca: PKGSIZE changed from 93442 to 
94405 (+1%)
packages/core2-32-poky-linux/mc/mc-locale-cs: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-cs: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-cs: PKGSIZE changed from 93844 to 
93878 (+0%)
packages/core2-32-poky-linux/mc/mc-locale-da: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-da: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-da: PKGSIZE changed from 83066 to 
87310 (+5%)
packages/core2-32-poky-linux/mc/mc-locale-de-ch: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-de-ch: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-de: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-de: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-de: PKGSIZE changed from 88497 to 
91265 (+3%)
packages/core2-32-poky-linux/mc/mc-locale-el: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-el: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-el: PKGSIZE changed from 56936 to 
56398 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-en-gb: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-en-gb: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-en-gb: PKGSIZE changed from 5535 to 
26760 (+383%)
packages/core2-32-poky-linux/mc/mc-locale-eo: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-eo: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-eo: PKGSIZE changed from 89452 to 
88898 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-es: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-es: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-es: PKGSIZE changed from 90531 to 
90242 (-0%)
packages/core2-32-poky-linux/mc/mc-locale-et: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-et: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-et: PKGSIZE changed from 82580 to 
87323 (+6%)
packages/core2-32-poky-linux/mc/mc-locale-eu: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-eu: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-eu: PKGSIZE changed from 81621 to 
81013 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-fa: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-fa: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-fa: PKGSIZE changed from 18288 to 
18184 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-fi: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-fi: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-fi: PKGSIZE changed from 42981 to 
42747 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-fr-ca: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-fr-ca: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-fr: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-fr: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-fr: PKGSIZE changed from 95206 to 
95447 (+0%)
packages/core2-32-poky-linux/mc/mc-locale-ga: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-ga: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-gl: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-gl: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-gl: PKGSIZE changed from 83980 to 
83304 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-he: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-he: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-hr: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-hr: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-hu: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-hu: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-hu: PKGSIZE changed from 78451 to 
77835 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-ia: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-ia: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-ia: PKGSIZE changed from 28673 to 
28589 (-0%)
packages/core2-32-poky-linux/mc/mc-locale-id: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-id: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-id: PKGSIZE changed from 16671 to 
16557 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-ie: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-ie: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-it: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-it: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-it: PKGSIZE changed from 87278 to 
88177 (+1%)
packages/core2-32-poky-linux/mc/mc-locale-ja: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-ja: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-ja: PKGSIZE changed from 39333 to 
39067 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-ka: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-ka: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-ka: PKGSIZE changed from 60571 to 
69185 (+14%)
packages/core2-32-poky-linux/mc/mc-locale-kk: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-kk: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-ko: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-ko: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-ko: PKGSIZE changed from 92185 to 
93470 (+1%)
packages/core2-32-poky-linux/mc/mc-locale-kw: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-kw: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-lt: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-lt: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-lt: PKGSIZE changed from 48364 to 
48043 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-lv: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-lv: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-lv: PKGSIZE changed from 19483 to 
19415 (-0%)
packages/core2-32-poky-linux/mc/mc-locale-mn: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-mn: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-mn: PKGSIZE changed from 31250 to 
31118 (-0%)
packages/core2-32-poky-linux/mc/mc-locale-nb: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-nb: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-nb: PKGSIZE changed from 87829 to 
87563 (-0%)
packages/core2-32-poky-linux/mc/mc-locale-nl-be: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-nl-be: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-nl: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-nl: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-nl: PKGSIZE changed from 84385 to 
87731 (+4%)
packages/core2-32-poky-linux/mc/mc-locale-pl: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-pl: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-pl: PKGSIZE changed from 93176 to 
92888 (-0%)
packages/core2-32-poky-linux/mc/mc-locale-pt-br: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-pt-br: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-pt-br: PKGSIZE changed from 97809 to 
97486 (-0%)
packages/core2-32-poky-linux/mc/mc-locale-pt: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-pt: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-pt: PKGSIZE changed from 92278 to 
91990 (-0%)
packages/core2-32-poky-linux/mc/mc-locale-ro: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-ro: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-ro: PKGSIZE changed from 92152 to 
91588 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-ru: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-ru: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-ru: PKGSIZE changed from 114197 to 
115135 (+1%)
packages/core2-32-poky-linux/mc/mc-locale-sk: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-sk: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-sk: PKGSIZE changed from 82883 to 
82273 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-sl: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-sl: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-sl: PKGSIZE changed from 22933 to 
22865 (-0%)
packages/core2-32-poky-linux/mc/mc-locale-sr: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-sr: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-sr: PKGSIZE changed from 97360 to 
96511 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-sv: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-sv: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-sv: PKGSIZE changed from 81541 to 
80973 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-szl: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-szl: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-ta: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-ta: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-te: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-te: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-tr: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-tr: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-tr: PKGSIZE changed from 80133 to 
83076 (+4%)
packages/core2-32-poky-linux/mc/mc-locale-uk: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-uk: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-uk: PKGSIZE changed from 115808 to 
113888 (-2%)
packages/core2-32-poky-linux/mc/mc-locale-uz: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-uz: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-vi: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-vi: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-vi: PKGSIZE changed from 24691 to 
24556 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-wa: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-wa: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-wa: PKGSIZE changed from 13412 to 
13343 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-zh-cn: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-zh-cn: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-zh-cn: PKGSIZE changed from 76979 to 
76418 (-1%)
packages/core2-32-poky-linux/mc/mc-locale-zh-tw: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-locale-zh-tw: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc-locale-zh-tw: PKGSIZE changed from 44804 to 
49011 (+9%)
packages/core2-32-poky-linux/mc/mc-src: PKGV changed from 4.8.29 [default] to 
4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-src: FILELIST: directory renamed 
/usr/src/debug/mc/4.8.29-r0/src/filemanager -> 
/usr/src/debug/mc/4.8.30-r0/src/filemanager, directory renamed 
/usr/src/debug/mc/4.8.29-r0/src/subshell -> 
/usr/src/debug/mc/4.8.30-r0/src/subshell, directory renamed 
/usr/src/debug/mc/4.8.29-r0/lib/search -> 
/usr/src/debug/mc/4.8.30-r0/lib/search, directory renamed 
/usr/src/debug/mc/4.8.29-r0/lib/skin -> /usr/src/debug/mc/4.8.30-r0/lib/skin, 
directory renamed /usr/src/debug/mc/4.8.29-r0/src/vfs/local -> 
/usr/src/debug/mc/4.8.30-r0/src/vfs/local, directory renamed 
/usr/src/debug/mc/4.8.29-r0/src/viewer -> 
/usr/src/debug/mc/4.8.30-r0/src/viewer, directory renamed 
/usr/src/debug/mc/4.8.29-r0/src/vfs/sfs -> 
/usr/src/debug/mc/4.8.30-r0/src/vfs/sfs, directory renamed 
/usr/src/debug/mc/4.8.29-r0/lib/vfs -> /usr/src/debug/mc/4.8.30-r0/lib/vfs, 
directory renamed /usr/src/debug/mc/4.8.29-r0/src/diffviewer -> 
/usr/src/debug/mc/4.8.30-r0/src/diffviewer, directory renamed /usr/src/d
 ebug/mc/4.8.29-r0/src/vfs -> /usr/src/debug/mc/4.8.30-r0/src/vfs, directory 
renamed /usr/src/debug/mc/4.8.29-r0/lib/strutil -> 
/usr/src/debug/mc/4.8.30-r0/lib/strutil, directory renamed 
/usr/src/debug/mc/4.8.29-r0/src/vfs/ftpfs -> 
/usr/src/debug/mc/4.8.30-r0/src/vfs/ftpfs, directory renamed 
/usr/src/debug/mc/4.8.29-r0/src/vfs/extfs -> 
/usr/src/debug/mc/4.8.30-r0/src/vfs/extfs, directory renamed 
/usr/src/debug/mc/4.8.29-r0/src/vfs/fish -> 
/usr/src/debug/mc/4.8.30-r0/src/vfs/fish, directory renamed 
/usr/src/debug/mc/4.8.29-r0/lib/filehighlight -> 
/usr/src/debug/mc/4.8.30-r0/lib/filehighlight, directory renamed 
/usr/src/debug/mc/4.8.29-r0/lib/event -> /usr/src/debug/mc/4.8.30-r0/lib/event, 
directory renamed /usr/src/debug/mc/4.8.29-r0/lib/tty -> 
/usr/src/debug/mc/4.8.30-r0/lib/tty, directory renamed 
/usr/src/debug/mc/4.8.29-r0/src -> /usr/src/debug/mc/4.8.30-r0/src, directory 
renamed /usr/src/debug/mc/4.8.29-r0/src/editor -> 
/usr/src/debug/mc/4.8.30-r0/src/editor, directory renamed /us
 r/src/debug/mc/4.8.29-r0/src/consaver -> 
/usr/src/debug/mc/4.8.30-r0/src/consaver, directory renamed 
/usr/src/debug/mc/4.8.29-r0/lib/widget -> 
/usr/src/debug/mc/4.8.30-r0/lib/widget, directory renamed 
/usr/src/debug/mc/4.8.29-r0/src/vfs/cpio -> 
/usr/src/debug/mc/4.8.30-r0/src/vfs/cpio, directory renamed 
/usr/src/debug/mc/4.8.29-r0/lib/mcconfig -> 
/usr/src/debug/mc/4.8.30-r0/lib/mcconfig, removed 
"/usr/src/debug/mc/4.8.29-r0/lib/global.h 
/usr/src/debug/mc/4.8.29-r0/lib/utilunix.c 
/usr/src/debug/mc/4.8.29-r0/lib/global.c 
/usr/src/debug/mc/4.8.29-r0/lib/search.h 
/usr/src/debug/mc/4.8.29-r0/lib/serialize.c 
/usr/src/debug/mc/4.8.29-r0/lib/lock.h /usr/src/debug/mc/4.8.29-r0/lib/shell.h 
/usr/src/debug/mc/4.8.29-r0/lib/event-types.h 
/usr/src/debug/mc/4.8.29-r0/lib/lock.c 
/usr/src/debug/mc/4.8.29-r0/lib/serialize.h 
/usr/src/debug/mc/4.8.29-r0/lib/strescape.h 
/usr/src/debug/mc/4.8.29-r0/lib/shell.c 
/usr/src/debug/mc/4.8.29-r0/lib/keybind.h 
/usr/src/debug/mc/4.8.29-r0/lib/keybind.c /usr/src/de
 bug/mc/4.8.29-r0/lib/skin.h /usr/src/debug/mc/4.8.29-r0/lib/charsets.h 
/usr/src/debug/mc/4.8.29-r0/lib/glibcompat.h 
/usr/src/debug/mc/4.8.29-r0/lib/timefmt.c 
/usr/src/debug/mc/4.8.29-r0/lib/glibcompat.c 
/usr/src/debug/mc/4.8.29-r0/lib/charsets.c 
/usr/src/debug/mc/4.8.29-r0/lib/timefmt.h 
/usr/src/debug/mc/4.8.29-r0/lib/mcconfig.h 
/usr/src/debug/mc/4.8.29-r0/lib/widget.h /usr/src/debug/mc/4.8.29-r0/lib/hook.h 
/usr/src/debug/mc/4.8.29-r0/lib/util.c 
/usr/src/debug/mc/4.8.29-r0/lib/filehighlight.h 
/usr/src/debug/mc/4.8.29-r0/lib/hook.c /usr/src/debug/mc/4.8.29-r0/lib/util.h 
/usr/src/debug/mc/4.8.29-r0/src/vfs/tar/tar.c 
/usr/src/debug/mc/4.8.29-r0/lib/event.h 
/usr/src/debug/mc/4.8.29-r0/lib/strutil.h 
/usr/src/debug/mc/4.8.29-r0/src/vfs/tar/tar.h", added 
"/usr/src/debug/mc/4.8.30-r0/lib/global.h 
/usr/src/debug/mc/4.8.30-r0/lib/utilunix.c 
/usr/src/debug/mc/4.8.30-r0/lib/global.c 
/usr/src/debug/mc/4.8.30-r0/lib/search.h 
/usr/src/debug/mc/4.8.30-r0/lib/serialize.c /usr/src/debug/mc/4.8.30-r0/
 lib/file-entry.h /usr/src/debug/mc/4.8.30-r0/lib/lock.h 
/usr/src/debug/mc/4.8.30-r0/lib/shell.h 
/usr/src/debug/mc/4.8.30-r0/lib/event-types.h 
/usr/src/debug/mc/4.8.30-r0/lib/lock.c 
/usr/src/debug/mc/4.8.30-r0/lib/serialize.h 
/usr/src/debug/mc/4.8.30-r0/lib/strescape.h 
/usr/src/debug/mc/4.8.30-r0/lib/shell.c 
/usr/src/debug/mc/4.8.30-r0/lib/keybind.h 
/usr/src/debug/mc/4.8.30-r0/lib/keybind.c 
/usr/src/debug/mc/4.8.30-r0/lib/skin.h 
/usr/src/debug/mc/4.8.30-r0/src/vfs/tar/tar-sparse.c 
/usr/src/debug/mc/4.8.30-r0/lib/charsets.h 
/usr/src/debug/mc/4.8.30-r0/lib/glibcompat.h 
/usr/src/debug/mc/4.8.30-r0/lib/timefmt.c 
/usr/src/debug/mc/4.8.30-r0/lib/glibcompat.c 
/usr/src/debug/mc/4.8.30-r0/lib/charsets.c 
/usr/src/debug/mc/4.8.30-r0/lib/timefmt.h 
/usr/src/debug/mc/4.8.30-r0/src/vfs/tar/tar-internal.h 
/usr/src/debug/mc/4.8.30-r0/src/vfs/tar/tar-internal.c 
/usr/src/debug/mc/4.8.30-r0/lib/mcconfig.h 
/usr/src/debug/mc/4.8.30-r0/lib/widget.h /usr/src/debug/mc/4.8.30-r0/lib/hook.h 
/usr/src/debug/mc/4
 .8.30-r0/lib/util.c /usr/src/debug/mc/4.8.30-r0/lib/filehighlight.h 
/usr/src/debug/mc/4.8.30-r0/lib/hook.c 
/usr/src/debug/mc/4.8.30-r0/src/vfs/tar/tar-xheader.c 
/usr/src/debug/mc/4.8.30-r0/lib/util.h 
/usr/src/debug/mc/4.8.30-r0/src/vfs/tar/tar.c 
/usr/src/debug/mc/4.8.30-r0/lib/event.h 
/usr/src/debug/mc/4.8.30-r0/lib/strutil.h 
/usr/src/debug/mc/4.8.30-r0/src/vfs/tar/tar.h"
packages/core2-32-poky-linux/mc/mc-src: PV changed from "4.8.29" to "4.8.30"
packages/core2-32-poky-linux/mc/mc-src: PKGSIZE changed from 3838973 to 3954728 
(+3%)
packages/core2-32-poky-linux/mc/mc-staticdev: PKGV changed from 4.8.29 
[default] to 4.8.30 [default]
packages/core2-32-poky-linux/mc/mc-staticdev: PV changed from "4.8.29" to 
"4.8.30"
packages/core2-32-poky-linux/mc/mc: PKGV changed from 4.8.29 [default] to 
4.8.30 [default]
packages/core2-32-poky-linux/mc/mc: FILELIST: added 
"/usr/share/mc/hints/mc.hint.ka /usr/share/mc/syntax/b.syntax"
packages/core2-32-poky-linux/mc/mc: PV changed from "4.8.29" to "4.8.30"
packages/core2-32-poky-linux/mc/mc: PKGSIZE changed from 3805063 to 3850668 
(+1%)
Changes to packages/core2-32-poky-linux/mc (sysroot):
  /usr/share/mc/hints/mc.hint.ka was added
  /usr/share/mc/syntax/b.syntax was added

Attachment: 0001-mc-upgrade-4.8.29-4.8.30.patch
Description: Binary data

packages/core2-32-poky-linux/mc/mc-locale-en-gb: PKGSIZE changed from 5535 to 
26760 (+383%)
packages/core2-32-poky-linux/mc/mc-locale-ka: PKGSIZE changed from 60571 to 
69185 (+14%)
packages/core2-32-poky-linux/mc/mc: FILELIST: added 
"/usr/share/mc/syntax/b.syntax /usr/share/mc/hints/mc.hint.ka"
Changes to packages/core2-32-poky-linux/mc (sysroot):
  /usr/share/mc/hints/mc.hint.ka was added
  /usr/share/mc/syntax/b.syntax was added
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#186206): 
https://lists.openembedded.org/g/openembedded-core/message/186206
Mute This Topic: https://lists.openembedded.org/mt/100789761/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to