diff options
| author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2026-01-09 12:01:25 +0100 |
|---|---|---|
| committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2026-01-09 12:06:28 +0100 |
| commit | e426045c098e90131fa3fdd3755f4da90d465f3b (patch) | |
| tree | fbf0dca54e223080b8928c9fb19efeb693c8c15f /gnu/packages | |
| parent | 0cc4cf3fe9e271ffaba02510623f6a5c496c13d7 (diff) | |
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.
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/java.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index fd693b1e44e..9490c50b7c7 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 |
