summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2023-02-08 08:20:55 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-02-09 09:57:24 +0000
commitc4f80179ca501653d3e50b2f7f88baf9e188bd0e (patch)
tree375a24914ebf49495a0a13d68b2d3ea2de9f0e18
parente0ea87498dfb50d27c7bdf6fda1dcc77094cb5f5 (diff)
downloadpoky-c4f80179ca501653d3e50b2f7f88baf9e188bd0e.tar.gz
mc: update 4.8.28 -> 4.8.29
(From OE-Core rev: 46701b356d5d0e5ebe1aa7544a02b28a0fb0c035) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/mc/files/0001-mc-replace-perl-w-with-use-warnings.patch18
-rw-r--r--meta/recipes-extended/mc/files/nomandate.patch6
-rw-r--r--meta/recipes-extended/mc/mc_4.8.29.bb (renamed from meta/recipes-extended/mc/mc_4.8.28.bb)2
3 files changed, 12 insertions, 14 deletions
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
index 012a499684..5ede82d342 100644
--- 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
@@ -1,4 +1,4 @@
1From cdc7c278212ae836eecb4cc9d42c29443cc128a0 Mon Sep 17 00:00:00 2001 1From 62c86b69106d0d702167ba1b963ea1c201cce5af Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com> 2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Thu, 6 Apr 2017 02:24:28 -0700 3Date: Thu, 6 Apr 2017 02:24:28 -0700
4Subject: [PATCH] mc: replace "perl -w" with "use warnings" 4Subject: [PATCH] mc: replace "perl -w" with "use warnings"
@@ -20,6 +20,7 @@ The man2hlp.in already has "use warnings;", so just remove '-w' is OK.
20Upstream-Status: Submitted [https://github.com/MidnightCommander/mc/pull/174] 20Upstream-Status: Submitted [https://github.com/MidnightCommander/mc/pull/174]
21 21
22Signed-off-by: Robert Yang <liezhi.yang@windriver.com> 22Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
23
23--- 24---
24 src/man2hlp/man2hlp.in | 2 +- 25 src/man2hlp/man2hlp.in | 2 +-
25 src/vfs/extfs/helpers/a+.in | 4 +++- 26 src/vfs/extfs/helpers/a+.in | 4 +++-
@@ -30,12 +31,12 @@ Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
30 6 files changed, 13 insertions(+), 6 deletions(-) 31 6 files changed, 13 insertions(+), 6 deletions(-)
31 32
32diff --git a/src/man2hlp/man2hlp.in b/src/man2hlp/man2hlp.in 33diff --git a/src/man2hlp/man2hlp.in b/src/man2hlp/man2hlp.in
33index f095830..558a674 100644 34index 08765d8..8aa7131 100644
34--- a/src/man2hlp/man2hlp.in 35--- a/src/man2hlp/man2hlp.in
35+++ b/src/man2hlp/man2hlp.in 36+++ b/src/man2hlp/man2hlp.in
36@@ -1,4 +1,4 @@ 37@@ -1,4 +1,4 @@
37-#! @PERL@ -w 38-#! @PERL_FOR_BUILD@ -w
38+#! @PERL@ 39+#! @PERL_FOR_BUILD@
39 # 40 #
40 # Man page to help file converter 41 # Man page to help file converter
41 # Copyright (C) 1994, 1995, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 42 # Copyright (C) 1994, 1995, 1998, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -59,7 +60,7 @@ index 579441c..fe446f4 100644
59 $_ = shift(@_); 60 $_ = shift(@_);
60 s/([^\w\/.+-])/\\$1/g; 61 s/([^\w\/.+-])/\\$1/g;
61diff --git a/src/vfs/extfs/helpers/mailfs.in b/src/vfs/extfs/helpers/mailfs.in 62diff --git a/src/vfs/extfs/helpers/mailfs.in b/src/vfs/extfs/helpers/mailfs.in
62index e9455be..059f41f 100644 63index 4bdd68b..5bb373b 100644
63--- a/src/vfs/extfs/helpers/mailfs.in 64--- a/src/vfs/extfs/helpers/mailfs.in
64+++ b/src/vfs/extfs/helpers/mailfs.in 65+++ b/src/vfs/extfs/helpers/mailfs.in
65@@ -1,6 +1,7 @@ 66@@ -1,6 +1,7 @@
@@ -72,7 +73,7 @@ index e9455be..059f41f 100644
72 # MC extfs for (possibly compressed) Berkeley style mailbox files 73 # MC extfs for (possibly compressed) Berkeley style mailbox files
73 # Peter Daum <gator@cs.tu-berlin.de> (Jan 1998, mc-4.1.24) 74 # Peter Daum <gator@cs.tu-berlin.de> (Jan 1998, mc-4.1.24)
74diff --git a/src/vfs/extfs/helpers/patchfs.in b/src/vfs/extfs/helpers/patchfs.in 75diff --git a/src/vfs/extfs/helpers/patchfs.in b/src/vfs/extfs/helpers/patchfs.in
75index ef407de..3ad4b53 100644 76index c20cd54..1f1e75b 100644
76--- a/src/vfs/extfs/helpers/patchfs.in 77--- a/src/vfs/extfs/helpers/patchfs.in
77+++ b/src/vfs/extfs/helpers/patchfs.in 78+++ b/src/vfs/extfs/helpers/patchfs.in
78@@ -1,4 +1,4 @@ 79@@ -1,4 +1,4 @@
@@ -107,7 +108,7 @@ index 418611f..82c7ccf 100644
107 'apr' => '04', 'may' => '05', 'jun' => '06', 108 'apr' => '04', 'may' => '05', 'jun' => '06',
108 'jul' => '07', 'aug' => '08', 'sep' => '09', 109 'jul' => '07', 'aug' => '08', 'sep' => '09',
109diff --git a/src/vfs/extfs/helpers/uzip.in b/src/vfs/extfs/helpers/uzip.in 110diff --git a/src/vfs/extfs/helpers/uzip.in b/src/vfs/extfs/helpers/uzip.in
110index b1c4f90..c8eb335 100644 111index c468f3a..ceffb53 100644
111--- a/src/vfs/extfs/helpers/uzip.in 112--- a/src/vfs/extfs/helpers/uzip.in
112+++ b/src/vfs/extfs/helpers/uzip.in 113+++ b/src/vfs/extfs/helpers/uzip.in
113@@ -1,4 +1,4 @@ 114@@ -1,4 +1,4 @@
@@ -124,6 +125,3 @@ index b1c4f90..c8eb335 100644
124 125
125 # 126 #
126 # Configuration options 127 # Configuration options
127--
1282.10.2
129
diff --git a/meta/recipes-extended/mc/files/nomandate.patch b/meta/recipes-extended/mc/files/nomandate.patch
index c01d065b0e..4ebaaa2fa7 100644
--- a/meta/recipes-extended/mc/files/nomandate.patch
+++ b/meta/recipes-extended/mc/files/nomandate.patch
@@ -1,4 +1,4 @@
1From f02010965af21db018c4e108b2193c872406a314 Mon Sep 17 00:00:00 2001 1From 4482ed0b8bd506cc2590ceacfdada6cc34450796 Mon Sep 17 00:00:00 2001
2From: Richard Purdie <richard.purdie@linuxfoundation.org> 2From: Richard Purdie <richard.purdie@linuxfoundation.org>
3Date: Tue, 4 Feb 2020 18:12:15 +0000 3Date: Tue, 4 Feb 2020 18:12:15 +0000
4Subject: [PATCH] mc: Fix manpage date indeterminism 4Subject: [PATCH] mc: Fix manpage date indeterminism
@@ -21,7 +21,7 @@ Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 1 file changed, 1 insertion(+), 1 deletion(-) 21 1 file changed, 1 insertion(+), 1 deletion(-)
22 22
23diff --git a/doc/man/date-of-man-include.am b/doc/man/date-of-man-include.am 23diff --git a/doc/man/date-of-man-include.am b/doc/man/date-of-man-include.am
24index 3a4e599..f11e9b3 100644 24index c6b1e69..165a796 100644
25--- a/doc/man/date-of-man-include.am 25--- a/doc/man/date-of-man-include.am
26+++ b/doc/man/date-of-man-include.am 26+++ b/doc/man/date-of-man-include.am
27@@ -1,5 +1,5 @@ 27@@ -1,5 +1,5 @@
@@ -29,5 +29,5 @@ index 3a4e599..f11e9b3 100644
29- -e "s/%DATE_OF_MAN_PAGE%/$${MAN_DATE}/g" \ 29- -e "s/%DATE_OF_MAN_PAGE%/$${MAN_DATE}/g" \
30+ -e "s/%DATE_OF_MAN_PAGE%//g" \ 30+ -e "s/%DATE_OF_MAN_PAGE%//g" \
31 -e "s/%MAN_VERSION%/@MAN_VERSION@/g" \ 31 -e "s/%MAN_VERSION%/@MAN_VERSION@/g" \
32 -e "s{%prefix%{@prefix@{g" \
33 -e "s{%sysconfdir%{@sysconfdir@{g" \ 32 -e "s{%sysconfdir%{@sysconfdir@{g" \
33 -e "s{%libexecdir%{@libexecdir@{g" \
diff --git a/meta/recipes-extended/mc/mc_4.8.28.bb b/meta/recipes-extended/mc/mc_4.8.29.bb
index 9a950a8cd0..c9db172183 100644
--- a/meta/recipes-extended/mc/mc_4.8.28.bb
+++ b/meta/recipes-extended/mc/mc_4.8.29.bb
@@ -12,7 +12,7 @@ SRC_URI = "http://www.midnight-commander.org/downloads/${BPN}-${PV}.tar.bz2 \
12 file://0001-mc-replace-perl-w-with-use-warnings.patch \ 12 file://0001-mc-replace-perl-w-with-use-warnings.patch \
13 file://nomandate.patch \ 13 file://nomandate.patch \
14 " 14 "
15SRC_URI[sha256sum] = "6bb47533d7a55bb21e46292d2f94786c9037bd7a70bf02b6a3c48adb0c9ce20c" 15SRC_URI[sha256sum] = "ba6b2d8752806ac23fe045c1b081eb66dcefa6159205c79f86c005dcaf9941c1"
16 16
17# remove at next version upgrade or when output changes 17# remove at next version upgrade or when output changes
18HASHEQUIV_HASH_VERSION .= ".2" 18HASHEQUIV_HASH_VERSION .= ".2"