guix_mirror_bot pushed a commit to branch master
in repository guix.

commit e426045c098e90131fa3fdd3755f4da90d465f3b
Author: Hartmut Goebel <[email protected]>
AuthorDate: Fri Jan 9 12:01:25 2026 +0100

    gnu: Fix source-url for some java packages.
    
    For the apache updater to find the updates, the path-part of the source-url
    must start with a single slash.
    
    * gnu/packages/java.scm (java-apache-ivy,
      java-httpcomponents-httpcore)[source]: Fix url.
---
 gnu/packages/java.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index fd693b1e44..9490c50b7c 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -6723,7 +6723,7 @@ it records all mock invocations, including methods 
arguments.")
     (version "4.4.6")
     (source (origin
               (method url-fetch)
-              (uri (string-append "mirror://apache//httpcomponents/httpcore/"
+              (uri (string-append "mirror://apache/httpcomponents/httpcore/"
                                   "source/httpcomponents-core-"
                                   version "-src.tar.gz"))
               (sha256
@@ -13436,7 +13436,7 @@ jsch-agent-proxy with JSch.")))
     (version "2.4.0")
     (source (origin
               (method url-fetch)
-              (uri (string-append "mirror://apache//ant/ivy/" version
+              (uri (string-append "mirror://apache/ant/ivy/" version
                                   "/apache-ivy-" version "-src.tar.gz"))
               (sha256
                (base32

Reply via email to