Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] mc: update to 4.8.29.
@ 2023-04-16 17:13 meator
  2023-04-16 17:50 ` [PR PATCH] [Updated] " meator
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: meator @ 2023-04-16 17:13 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 469 bytes --]

There is a new pull request by meator against master on the void-packages repository

https://github.com/meator/void-packages mc
https://github.com/void-linux/void-packages/pull/43480

mc: update to 4.8.29.
This update moves `mc.ext` to `mc.ext.ini` which can cause problems. I'll have to figure that out.

#### Testing the changes
- I tested the changes in this PR: **YES**

A patch file from https://github.com/void-linux/void-packages/pull/43480.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mc-43480.patch --]
[-- Type: text/x-diff, Size: 2322 bytes --]

From 6a4204598e7e64e34aa6d3e6704db676d579a040 Mon Sep 17 00:00:00 2001
From: meator <meator.dev@gmail.com>
Date: Sun, 16 Apr 2023 19:03:50 +0200
Subject: [PATCH] mc: update to 4.8.29.

The mc.ext config file has been replaced by mc.ext.ini. This commit
fixes a patch that is affected by this.
---
 srcpkgs/mc/patches/xbps.patch | 19 ++++++++++---------
 srcpkgs/mc/template           |  6 +++---
 2 files changed, 13 insertions(+), 12 deletions(-)

diff --git a/srcpkgs/mc/patches/xbps.patch b/srcpkgs/mc/patches/xbps.patch
index 17481e693e00..e8268bd0eb24 100644
--- a/srcpkgs/mc/patches/xbps.patch
+++ b/srcpkgs/mc/patches/xbps.patch
@@ -1,13 +1,14 @@
---- a/misc/mc.ext.in	2017-08-21 19:28:49.638411103 +0200
-+++ b/misc/mc.ext.in	2017-08-21 19:38:05.633602005 +0200
-@@ -145,8 +145,8 @@
- 	Open=%cd %p/utar://
- 	View=%view{ascii} @EXTHELPERSDIR@/archive.sh view tar.lz4
+--- a/misc/mc.ext.ini.in
++++ b/misc/mc.ext.ini.in
+@@ -238,9 +238,9 @@
+ Open=%cd %p/utar://
+ View=%view{ascii} @EXTHELPERSDIR@/archive.sh view tar.lz4
  
 -# .tar.xz, .txz
--regex/\.t(ar\.xz|xz)$
 +# .tar.xz, .txz, .xbps
-+regex/\.(t(ar\.xz|xz)|xbps)$
- 	Open=%cd %p/utar://
- 	View=%view{ascii} @EXTHELPERSDIR@/archive.sh view tar.xz
+ [tar.xz]
+-Regex=\.t(ar\.xz|xz)$
++Regex=\.(t(ar\.xz|xz)|xbps)$
+ Open=%cd %p/utar://
+ View=%view{ascii} @EXTHELPERSDIR@/archive.sh view tar.xz
  
diff --git a/srcpkgs/mc/template b/srcpkgs/mc/template
index 1c293a9c6a26..bcae7c672c3a 100644
--- a/srcpkgs/mc/template
+++ b/srcpkgs/mc/template
@@ -1,6 +1,6 @@
 # Template file for 'mc'
 pkgname=mc
-version=4.8.28
+version=4.8.29
 revision=1
 build_style=gnu-configure
 configure_args="--with-screen=slang --without-x"
@@ -13,14 +13,14 @@ homepage="https://midnight-commander.org/"
 changelog="https://midnight-commander.org/wiki/NEWS-${version}"
 distfiles="https://www.midnight-commander.org/downloads/mc-${version}.tar.xz"
 #distfiles="http://fossies.org/linux/misc/mc-${version}.tar.gz"
-checksum=e994d9be9a7172e9ac4a4ad62107921f6aa312e668b056dfe5b8bcebbaf53803
+checksum=01d8a3b94f58180cca5bf17257b5078d1fd6fd27a9b5c0e970ec767549540ad4
 python_version=2
 
 conf_files="
  /etc/mc/filehighlight.ini
  /etc/mc/mc.default.keymap
  /etc/mc/mc.emacs.keymap
- /etc/mc/mc.ext
+ /etc/mc/mc.ext.ini
  /etc/mc/mc.keymap
  /etc/mc/mc.menu
  /etc/mc/mcedit.menu

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Updated] mc: update to 4.8.29.
  2023-04-16 17:13 [PR PATCH] mc: update to 4.8.29 meator
@ 2023-04-16 17:50 ` meator
  2023-04-16 17:51 ` meator
  2023-04-20 11:38 ` [PR PATCH] [Merged]: " abenson
  2 siblings, 0 replies; 4+ messages in thread
From: meator @ 2023-04-16 17:50 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 474 bytes --]

There is an updated pull request by meator against master on the void-packages repository

https://github.com/meator/void-packages mc
https://github.com/void-linux/void-packages/pull/43480

mc: update to 4.8.29.
This update moves `mc.ext` to `mc.ext.ini` which can cause problems. I'll have to figure that out.

#### Testing the changes
- I tested the changes in this PR: **YES**

A patch file from https://github.com/void-linux/void-packages/pull/43480.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mc-43480.patch --]
[-- Type: text/x-diff, Size: 2751 bytes --]

From b2028096ed58ab5d3f920d4e941d768d9c4da176 Mon Sep 17 00:00:00 2001
From: meator <meator.dev@gmail.com>
Date: Sun, 16 Apr 2023 19:03:50 +0200
Subject: [PATCH] mc: update to 4.8.29.

The mc.ext config file has been replaced by mc.ext.ini. This commit
fixes a patch that is affected by this.
---
 srcpkgs/mc/INSTALL.msg        |  3 +++
 srcpkgs/mc/patches/xbps.patch | 19 ++++++++++---------
 srcpkgs/mc/template           |  6 +++---
 3 files changed, 16 insertions(+), 12 deletions(-)
 create mode 100644 srcpkgs/mc/INSTALL.msg

diff --git a/srcpkgs/mc/INSTALL.msg b/srcpkgs/mc/INSTALL.msg
new file mode 100644
index 000000000000..3867baecabae
--- /dev/null
+++ b/srcpkgs/mc/INSTALL.msg
@@ -0,0 +1,3 @@
+The configuration file /etc/mc/mc.ext has been moved to /etc/mc/mc.ext.ini.
+If you have modified this file, you should edit mc.ext.ini file and then delete
+mc.ext file.
diff --git a/srcpkgs/mc/patches/xbps.patch b/srcpkgs/mc/patches/xbps.patch
index 17481e693e00..e8268bd0eb24 100644
--- a/srcpkgs/mc/patches/xbps.patch
+++ b/srcpkgs/mc/patches/xbps.patch
@@ -1,13 +1,14 @@
---- a/misc/mc.ext.in	2017-08-21 19:28:49.638411103 +0200
-+++ b/misc/mc.ext.in	2017-08-21 19:38:05.633602005 +0200
-@@ -145,8 +145,8 @@
- 	Open=%cd %p/utar://
- 	View=%view{ascii} @EXTHELPERSDIR@/archive.sh view tar.lz4
+--- a/misc/mc.ext.ini.in
++++ b/misc/mc.ext.ini.in
+@@ -238,9 +238,9 @@
+ Open=%cd %p/utar://
+ View=%view{ascii} @EXTHELPERSDIR@/archive.sh view tar.lz4
  
 -# .tar.xz, .txz
--regex/\.t(ar\.xz|xz)$
 +# .tar.xz, .txz, .xbps
-+regex/\.(t(ar\.xz|xz)|xbps)$
- 	Open=%cd %p/utar://
- 	View=%view{ascii} @EXTHELPERSDIR@/archive.sh view tar.xz
+ [tar.xz]
+-Regex=\.t(ar\.xz|xz)$
++Regex=\.(t(ar\.xz|xz)|xbps)$
+ Open=%cd %p/utar://
+ View=%view{ascii} @EXTHELPERSDIR@/archive.sh view tar.xz
  
diff --git a/srcpkgs/mc/template b/srcpkgs/mc/template
index 1c293a9c6a26..bcae7c672c3a 100644
--- a/srcpkgs/mc/template
+++ b/srcpkgs/mc/template
@@ -1,6 +1,6 @@
 # Template file for 'mc'
 pkgname=mc
-version=4.8.28
+version=4.8.29
 revision=1
 build_style=gnu-configure
 configure_args="--with-screen=slang --without-x"
@@ -13,14 +13,14 @@ homepage="https://midnight-commander.org/"
 changelog="https://midnight-commander.org/wiki/NEWS-${version}"
 distfiles="https://www.midnight-commander.org/downloads/mc-${version}.tar.xz"
 #distfiles="http://fossies.org/linux/misc/mc-${version}.tar.gz"
-checksum=e994d9be9a7172e9ac4a4ad62107921f6aa312e668b056dfe5b8bcebbaf53803
+checksum=01d8a3b94f58180cca5bf17257b5078d1fd6fd27a9b5c0e970ec767549540ad4
 python_version=2
 
 conf_files="
  /etc/mc/filehighlight.ini
  /etc/mc/mc.default.keymap
  /etc/mc/mc.emacs.keymap
- /etc/mc/mc.ext
+ /etc/mc/mc.ext.ini
  /etc/mc/mc.keymap
  /etc/mc/mc.menu
  /etc/mc/mcedit.menu

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: mc: update to 4.8.29.
  2023-04-16 17:13 [PR PATCH] mc: update to 4.8.29 meator
  2023-04-16 17:50 ` [PR PATCH] [Updated] " meator
@ 2023-04-16 17:51 ` meator
  2023-04-20 11:38 ` [PR PATCH] [Merged]: " abenson
  2 siblings, 0 replies; 4+ messages in thread
From: meator @ 2023-04-16 17:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 187 bytes --]

New comment by meator on void-packages repository

https://github.com/void-linux/void-packages/pull/43480#issuecomment-1510443250

Comment:
I have added `INSTALL.msg` to warn about this.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Merged]: mc: update to 4.8.29.
  2023-04-16 17:13 [PR PATCH] mc: update to 4.8.29 meator
  2023-04-16 17:50 ` [PR PATCH] [Updated] " meator
  2023-04-16 17:51 ` meator
@ 2023-04-20 11:38 ` abenson
  2 siblings, 0 replies; 4+ messages in thread
From: abenson @ 2023-04-20 11:38 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 325 bytes --]

There's a merged pull request on the void-packages repository

mc: update to 4.8.29.
https://github.com/void-linux/void-packages/pull/43480

Description:
This update moves `mc.ext` to `mc.ext.ini` which can cause problems. I'll have to figure that out.

#### Testing the changes
- I tested the changes in this PR: **YES**

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-04-20 11:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-16 17:13 [PR PATCH] mc: update to 4.8.29 meator
2023-04-16 17:50 ` [PR PATCH] [Updated] " meator
2023-04-16 17:51 ` meator
2023-04-20 11:38 ` [PR PATCH] [Merged]: " abenson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).