diff options
author | Julien Lepiller <julien@lepiller.eu> | 2025-06-25 20:12:57 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-26 11:21:01 +0100 |
commit | 80d79573849cb6857bf84ba8dcaf45fb666496d5 (patch) | |
tree | e22f9d0798ef1e6099e41df55e011cb6616274f3 | |
parent | c9114277ec557fc624814857fb0e622c0b0eba22 (diff) |
gnu: Update josm to 19412.
* gnu/packages/geo.scm (josm): Update to 19412.
[arguments] <jdk>: Use openjdk17.
[inputs]: Remove openjdk11; add openjdk17.
Change-Id: I4258b402b5cb2fc2aff49c6d7ac9b4625d64bc88
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/geo.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index ee292a431d..655cfbaf13 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -1878,7 +1878,7 @@ extension.") (base32 "1nqzlrzxwhvm7z2pl70bwlr37fz95hcm0n8v7y503krh5x4xl9r3")))) (build-system pyproject-build-system) (arguments - (list + (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'udunits-path @@ -2694,7 +2694,7 @@ to the OSM opening hours specification.") (define-public josm (package (name "josm") - (version "19253") + (version "19412") (source (origin (method svn-fetch) (uri (svn-reference @@ -2703,7 +2703,7 @@ to the OSM opening hours specification.") (recursive? #f))) (sha256 (base32 - "1k5v591mkh0xkyfj66qmv1mamqsqw347nhax5hlwyg8hgfk7a6xr")) + "152pf0ww16jj5cv94ywlv5nb8pvnyqmvmnwsy3w0lf094faqkv5d")) (file-name (string-append name "-" version "-checkout")) (modules '((guix build utils))) (snippet @@ -2726,11 +2726,11 @@ to the OSM opening hours specification.") java-parsson ; runtime dependency java-signpost-core java-svg-salamander - openjdk11)) + openjdk17)) (arguments `(#:tests? #f #:jar-name "josm.jar" - #:jdk ,openjdk11 + #:jdk ,openjdk17 #:phases (modify-phases %standard-phases (add-after 'unpack 'rm-build.xml |