GNU bug report logs - #50114
[PATCH] gnu: mc: Bump up to 4.8.27

Previous Next

Package: guix-patches;

Reported by: Sergei Trofimovich <slyich <at> gmail.com>

Date: Wed, 18 Aug 2021 22:43:02 UTC

Severity: normal

Tags: patch

Done: Brice Waegeneire <brice <at> waegenei.re>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 50114 in the body.
You can then email your comments to 50114 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#50114; Package guix-patches. (Wed, 18 Aug 2021 22:43:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Sergei Trofimovich <slyich <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 18 Aug 2021 22:43:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Sergei Trofimovich <slyich <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Sergei Trofimovich <slyich <at> gmail.com>
Subject: [PATCH] gnu: mc: Bump up to 4.8.27
Date: Wed, 18 Aug 2021 23:42:18 +0100
While at it added 'release-monitoing-url property to allow
'generic-html updater to fetch latest version from correct location.
Otherwise the only available updater is 'gnu-ftp (which forces downgrade
to ancient 4.6.1 release).

* gnu/packages/mc.scm (mc): Update to 4.8.27. Explicitly set
release-monitoing-url to up to date location.
---
 gnu/packages/mc.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/mc.scm b/gnu/packages/mc.scm
index b9dea3b446..e19bc02e7a 100644
--- a/gnu/packages/mc.scm
+++ b/gnu/packages/mc.scm
@@ -38,14 +38,14 @@
 (define-public mc
   (package
     (name "mc")
-    (version "4.8.26")
+    (version "4.8.27")
     (source
      (origin
       (method url-fetch)
-      (uri (string-append "https://ftp.midnight-commander.org/mc-"
+      (uri (string-append "http://ftp.midnight-commander.org/mc-"
                           version ".tar.xz"))
       (sha256
-       (base32 "09vc2vf6k12a8k5gdss6hcskwfcbyalrkhn65nidkwlm0p2svpn6"))))
+       (base32 "1x2g5ahgzg951y4ldbsgkv8icni2mgh3p2wsds0j16gsbwi5kgii"))))
     (build-system gnu-build-system)
     (native-inputs `(("perl" ,perl)
                      ("pkg-config" ,pkg-config)))
@@ -97,6 +97,8 @@
                (("usr/bin") "/"))
              #t)))))
     (home-page "https://www.midnight-commander.org")
+    (properties
+      `((release-monitoring-url . "http://ftp.midnight-commander.org/")))
     (synopsis "Graphical file manager")
     (description
      "GNU Midnight Commander is a command-line file manager laid out in a
-- 
2.33.0





Information forwarded to guix-patches <at> gnu.org:
bug#50114; Package guix-patches. (Fri, 20 Aug 2021 09:31:01 GMT) Full text and rfc822 format available.

Message #8 received at 50114 <at> debbugs.gnu.org (full text, mbox):

From: zimoun <zimon.toutoune <at> gmail.com>
To: Sergei Trofimovich <slyich <at> gmail.com>, 50114 <at> debbugs.gnu.org
Cc: Sergei Trofimovich <slyich <at> gmail.com>
Subject: Re: [bug#50114] [PATCH] gnu: mc: Bump up to 4.8.27
Date: Fri, 20 Aug 2021 11:29:18 +0200
Hi,

Thanks for the patch.  Usually, the header is:

  gnu: mc: Update to 4.8.27.



On Wed, 18 Aug 2021 at 23:42, Sergei Trofimovich <slyich <at> gmail.com> wrote:
> While at it added 'release-monitoing-url property to allow
> 'generic-html updater to fetch latest version from correct location.
> Otherwise the only available updater is 'gnu-ftp (which forces downgrade
> to ancient 4.6.1 release).
>
> * gnu/packages/mc.scm (mc): Update to 4.8.27. Explicitly set
> release-monitoing-url to up to date location.
> ---
>  gnu/packages/mc.scm | 8 +++++---
>  1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/mc.scm b/gnu/packages/mc.scm
> index b9dea3b446..e19bc02e7a 100644
> --- a/gnu/packages/mc.scm
> +++ b/gnu/packages/mc.scm
> @@ -38,14 +38,14 @@
>  (define-public mc
>    (package
>      (name "mc")
> -    (version "4.8.26")
> +    (version "4.8.27")
>      (source
>       (origin
>        (method url-fetch)
> -      (uri (string-append "https://ftp.midnight-commander.org/mc-"
> +      (uri (string-append "http://ftp.midnight-commander.org/mc-"
>                            version ".tar.xz"))

I get with HTTPS:

--8<---------------cut here---------------start------------->8---
Starting download of /tmp/guix-file.hccu6E
From https://ftp.midnight-commander.org/mc-4.8.27.tar.xz...
X.509 server certificate for 'ftp.midnight-commander.org' does not match: C=US,postalCode=97331,ST=Oregon,L=Corvallis,street=121 Valley Library,O=Oregon State University,OU=CASS,CN=*.osuosl.org
--8<---------------cut here---------------end--------------->8---

Maybe, is it fixable?


All the best,
simon




Information forwarded to guix-patches <at> gnu.org:
bug#50114; Package guix-patches. (Fri, 20 Aug 2021 21:49:02 GMT) Full text and rfc822 format available.

Message #11 received at 50114 <at> debbugs.gnu.org (full text, mbox):

From: Sergei Trofimovich <slyich <at> gmail.com>
To: zimoun <zimon.toutoune <at> gmail.com>
Cc: 50114 <at> debbugs.gnu.org
Subject: Re: [bug#50114] [PATCH] gnu: mc: Bump up to 4.8.27
Date: Fri, 20 Aug 2021 22:48:14 +0100
[Message part 1 (text/plain, inline)]
On Fri, 20 Aug 2021 11:29:18 +0200
zimoun <zimon.toutoune <at> gmail.com> wrote:

> ... Usually, the header is:
>   gnu: mc: Update to 4.8.27.

Updated in v2-0001-gnu-mc-Update-to-4.8.27.patch (attached).

> On Wed, 18 Aug 2021 at 23:42, Sergei Trofimovich <slyich <at> gmail.com> wrote:
> > While at it added 'release-monitoing-url property to allow
> > 'generic-html updater to fetch latest version from correct location.
> > Otherwise the only available updater is 'gnu-ftp (which forces downgrade
> > to ancient 4.6.1 release).
> >
> > * gnu/packages/mc.scm (mc): Update to 4.8.27. Explicitly set
> > release-monitoing-url to up to date location.
> > ---
> >  gnu/packages/mc.scm | 8 +++++---
> >  1 file changed, 5 insertions(+), 3 deletions(-)
> >
> > diff --git a/gnu/packages/mc.scm b/gnu/packages/mc.scm
> > index b9dea3b446..e19bc02e7a 100644
> > --- a/gnu/packages/mc.scm
> > +++ b/gnu/packages/mc.scm
> > @@ -38,14 +38,14 @@
> >  (define-public mc
> >    (package
> >      (name "mc")
> > -    (version "4.8.26")
> > +    (version "4.8.27")
> >      (source
> >       (origin
> >        (method url-fetch)
> > -      (uri (string-append "https://ftp.midnight-commander.org/mc-"
> > +      (uri (string-append "http://ftp.midnight-commander.org/mc-"
> >                            version ".tar.xz"))  
> 
> I get with HTTPS:
> 
> --8<---------------cut here---------------start------------->8---
> Starting download of /tmp/guix-file.hccu6E
> From https://ftp.midnight-commander.org/mc-4.8.27.tar.xz...
> X.509 server certificate for 'ftp.midnight-commander.org' does not match: C=US,postalCode=97331,ST=Oregon,L=Corvallis,street=121 Valley Library,O=Oregon State University,OU=CASS,CN=*.osuosl.org
> --8<---------------cut here---------------end--------------->8---
> 
> Maybe, is it fixable?

I was on the fence of this: either use http://, but a link from home page
which redirects to osuosl mirror, or use direct osuosl mirror link that
provides https://. Switced to https:// osuosl link in
v2-0001-gnu-mc-Update-to-4.8.27.patch

-- 

  Sergei
[v2-0001-gnu-mc-Update-to-4.8.27.patch (text/x-patch, attachment)]
[Message part 3 (application/pgp-signature, inline)]

Reply sent to Brice Waegeneire <brice <at> waegenei.re>:
You have taken responsibility. (Thu, 26 Aug 2021 19:31:01 GMT) Full text and rfc822 format available.

Notification sent to Sergei Trofimovich <slyich <at> gmail.com>:
bug acknowledged by developer. (Thu, 26 Aug 2021 19:31:02 GMT) Full text and rfc822 format available.

Message #16 received at 50114-done <at> debbugs.gnu.org (full text, mbox):

From: Brice Waegeneire <brice <at> waegenei.re>
To: Sergei Trofimovich <slyich <at> gmail.com>
Cc: 50114-done <at> debbugs.gnu.org, zimoun <zimon.toutoune <at> gmail.com>
Subject: Re: bug#50114: [PATCH] gnu: mc: Bump up to 4.8.27
Date: Thu, 26 Aug 2021 21:29:53 +0200
Hello Sergei,

Thank you for the patch. The new source domain is referenced by upstream in
doc/MIRRORS.txt¹.

Pushed as d1d9206180763f8291c82b1a6240b3640bd4f238.

¹ https://github.com/MidnightCommander/mc/blob/0aaf74777d65ac2539b73c14d2e4e2baecb13451/doc/MIRRORS.txt#L7

Cheers,
- Brice




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 24 Sep 2021 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 212 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.