GNU bug report logs - #76841
[PATCH] gnu: icu4c: Fix uri procedure.

Previous Next

Package: guix-patches;

Reported by: Greg Hogan <code <at> greghogan.com>

Date: Fri, 7 Mar 2025 20:23:02 UTC

Severity: normal

Tags: patch

Done: Ian Eure <ian <at> retrospec.tv>

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 76841 in the body.
You can then email your comments to 76841 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#76841; Package guix-patches. (Fri, 07 Mar 2025 20:23:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Greg Hogan <code <at> greghogan.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 07 Mar 2025 20:23:02 GMT) Full text and rfc822 format available.

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

From: Greg Hogan <code <at> greghogan.com>
To: guix-patches <at> gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH] gnu: icu4c: Fix uri procedure.
Date: Fri,  7 Mar 2025 20:22:06 +0000
This is a small fix for #76750. No rebuilds.

* gnu/packages/icu4c.scm (icu4?-uri, icu4c-uri, icu4j-uri):
Revert to distinct release file suffixes.

Change-Id: Icd1fd03c7147c3ee77111bb815294f654053c203
---
 gnu/packages/icu4c.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm
index 5209f2f19b1..89546751bd1 100644
--- a/gnu/packages/icu4c.scm
+++ b/gnu/packages/icu4c.scm
@@ -43,19 +43,19 @@ (define-module (gnu packages icu4c)
   #:use-module (guix build-system ant)
   #:use-module (guix build-system gnu))
 
-(define (icu4?-uri variant version)
+(define (icu4?-uri variant suffix version)
   (string-append
    "https://github.com/unicode-org/icu/releases/download/release-"
    (string-map (lambda (x) (if (char=? x #\.) #\- x)) version)
    "/icu4" variant "-"
    (string-map (lambda (x) (if (char=? x #\.) #\_ x)) version)
-   "-src.tgz"))
+   suffix))
 
 (define (icu4c-uri version)
-  (icu4?-uri "c" version))
+  (icu4?-uri "c" "-src.tgz" version))
 
 (define (icu4j-uri version)
-  (icu4?-uri "j" version))
+  (icu4?-uri "j" ".tgz" version))
 
 (define-public icu4c
   (package

base-commit: c8bde3c6725be4eb0743a153a3cf8de453d9e448
-- 
2.47.1





Information forwarded to guix-patches <at> gnu.org:
bug#76841; Package guix-patches. (Fri, 07 Mar 2025 20:33:01 GMT) Full text and rfc822 format available.

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

From: Ian Eure <ian <at> retrospec.tv>
To: Greg Hogan <code <at> greghogan.com>
Cc: 76841 <at> debbugs.gnu.org
Subject: Re: [bug#76841] [PATCH] gnu: icu4c: Fix uri procedure.
Date: Fri, 07 Mar 2025 12:32:43 -0800
Hi Greg,

I just pushed #76841, which duplicates this fix.




bug closed, send any further explanations to 76841 <at> debbugs.gnu.org and Greg Hogan <code <at> greghogan.com> Request was from Ian Eure <ian <at> retrospec.tv> to control <at> debbugs.gnu.org. (Fri, 07 Mar 2025 20:33:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#76841; Package guix-patches. (Fri, 07 Mar 2025 20:39:02 GMT) Full text and rfc822 format available.

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

From: Greg Hogan <code <at> greghogan.com>
To: 76841-done <at> debbugs.gnu.org
Subject: Re: bug#76841: Acknowledgement ([PATCH] gnu: icu4c: Fix uri
 procedure.)
Date: Fri, 7 Mar 2025 15:38:27 -0500
On Fri, Mar 7, 2025 at 3:23 PM GNU bug Tracking System
<help-debbugs <at> gnu.org> wrote:
>
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> Your message has been sent to the package maintainer(s):
>  guix-patches <at> gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 76841 <at> debbugs.gnu.org.
>
> Please do not send mail to help-debbugs <at> gnu.org unless you wish
> to report a problem with the Bug-tracking system.
>
> --
> 76841: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=76841
> GNU Bug Tracking System
> Contact help-debbugs <at> gnu.org with problems

Fixed by 57171c3243eb30f87a0583e3f554c3cc6c3dd2d0




Information forwarded to guix-patches <at> gnu.org:
bug#76841; Package guix-patches. (Fri, 07 Mar 2025 21:38:01 GMT) Full text and rfc822 format available.

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

From: Greg Hogan <code <at> greghogan.com>
To: Ian Eure <ian <at> retrospec.tv>
Cc: 76841 <at> debbugs.gnu.org
Subject: Re: [bug#76841] [PATCH] gnu: icu4c: Fix uri procedure.
Date: Fri, 7 Mar 2025 16:36:43 -0500
On Fri, Mar 7, 2025 at 3:32 PM Ian Eure <ian <at> retrospec.tv> wrote:
>
> Hi Greg,
>
> I just pushed #76841, which duplicates this fix.

I saw it. Thanks!




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 05 Apr 2025 11:24:20 GMT) Full text and rfc822 format available.

This bug report was last modified 75 days ago.

Previous Next


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