* [bug#72822] gnu: josm: Update to 19160.
@ 2024-08-26 17:56 Julien Lepiller
2024-08-26 18:18 ` [bug#72822] [PATCH 1/2] gnu: java-jmapviewer: Update to 2.20 Julien Lepiller
0 siblings, 1 reply; 5+ messages in thread
From: Julien Lepiller @ 2024-08-26 17:56 UTC (permalink / raw)
To: 72822
Hi Guix!
this small patch series updates JOSM to the latest version. This
requires an update to jmapviewer, whose development stopped in 2022. It
is now maintained by JOSM developpers, hence the source change.
The new version had an issue when starting, where it was not able to
load projections. This is because the generate-epsg phase failed
silently. Creating another empty file was enough (not just renaming the
file, as only one empty file failed differently). When starting, it
showed a message asking to add some options to the java command line,
which I did in this patch.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#72822] [PATCH 1/2] gnu: java-jmapviewer: Update to 2.20.
2024-08-26 17:56 [bug#72822] gnu: josm: Update to 19160 Julien Lepiller
@ 2024-08-26 18:18 ` Julien Lepiller
2024-08-26 18:18 ` [bug#72822] [PATCH 2/2] gnu: josm: Update to 19160 Julien Lepiller
0 siblings, 1 reply; 5+ messages in thread
From: Julien Lepiller @ 2024-08-26 18:18 UTC (permalink / raw)
To: 72822; +Cc: Andreas Enge, Eric Bavier, Sharlatan Hellseher
* gnu/packages/geo.scm (java-jmapviewer): Update to 2.20.
[source]: Update URL.
Change-Id: I75fdb48601854bdda4fd5f7357a2c4c7ce2f54c5
---
gnu/packages/geo.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 954a4ad4a0..70dc127c1d 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -2121,15 +2121,15 @@ (define-public python-rtree
(define-public java-jmapviewer
(package
(name "java-jmapviewer")
- (version "2.13")
+ (version "2.20")
(source (origin
(method url-fetch)
- (uri (string-append "https://svn.openstreetmap.org/applications/"
- "viewer/jmapviewer/releases/" version
- "/JMapViewer-" version "-Source.zip"))
+ (uri (string-append "https://josm.openstreetmap.de/osmsvn/"
+ "/applications/viewer/jmapviewer/releases/"
+ version "/JMapViewer-" version "-Source.zip"))
(sha256
(base32
- "0sy6r5fkbb9bclw0is6gwnbzz627m7pjfnsqydxz58pbndakkhrv"))))
+ "02cvmmvvlqpbwn022w3m60xkq4gh4jh9lajs6yjgvjf2hnwxll31"))))
(build-system ant-build-system)
(native-inputs
(list unzip))
base-commit: 4b011ee4abaa9199700b30cd83abadb7f9a66d2d
--
2.45.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#72822] [PATCH 2/2] gnu: josm: Update to 19160.
2024-08-26 18:18 ` [bug#72822] [PATCH 1/2] gnu: java-jmapviewer: Update to 2.20 Julien Lepiller
@ 2024-08-26 18:18 ` Julien Lepiller
2024-09-13 10:42 ` Andreas Enge
0 siblings, 1 reply; 5+ messages in thread
From: Julien Lepiller @ 2024-08-26 18:18 UTC (permalink / raw)
To: 72822; +Cc: Andreas Enge, Eric Bavier, Sharlatan Hellseher
* gnu/packages/geo.scm (josm): Update to 19160.
[arguments]: Update phases accordingly. Update launcher following josm
advice.
Change-Id: Ic168cb04cf4248167b0724faecba8f2b2d238527
---
gnu/packages/geo.scm | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 70dc127c1d..171821fe4d 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -2200,7 +2200,7 @@ (define-public java-opening-hours-parser
(define-public josm
(package
(name "josm")
- (version "18907")
+ (version "19160")
(source (origin
(method svn-fetch)
(uri (svn-reference
@@ -2209,7 +2209,7 @@ (define-public josm
(recursive? #f)))
(sha256
(base32
- "0vkczijw537f4y1b7hfxa45k3ww6nf2cf485b19dnbgh9ab6mnjl"))
+ "06m6rg9czs7mhkh0byd3c8n8y1gbzqqw2iy7qyn4084al4mdrw2z"))
(file-name (string-append name "-" version "-checkout"))
(modules '((guix build utils)))
(snippet
@@ -2280,6 +2280,9 @@ (define-public josm
(lambda _
(system* "javac" "scripts/BuildProjectionDefinitions.java"
"-cp" "build/classes")
+ (mkdir-p "resources/data/projection")
+ (with-output-to-file "resources/data/projection/custom-epsg"
+ (lambda _ (display "")))
(mkdir-p "data/projection")
(with-output-to-file "data/projection/custom-epsg"
(lambda _ (display "")))
@@ -2342,6 +2345,9 @@ (define-public josm
(not (string-contains jar "-javacc-"))))
(string-split (getenv "CLASSPATH") #\:))
":")
+ " --add-exports=java.base/sun.security.action=ALL-UNNAMED"
+ " --add-exports=java.desktop/com.sun.imageio.plugins.jpeg=ALL-UNNAMED"
+ " --add-exports=java.desktop/com.sun.imageio.spi=ALL-UNNAMED"
" org.openstreetmap.josm.gui.MainApplication"))))
(chmod (string-append bin "/josm") #o755))
#t)))))
--
2.45.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#72822] [PATCH 2/2] gnu: josm: Update to 19160.
2024-08-26 18:18 ` [bug#72822] [PATCH 2/2] gnu: josm: Update to 19160 Julien Lepiller
@ 2024-09-13 10:42 ` Andreas Enge
2024-09-14 16:53 ` bug#72822: " Julien Lepiller
0 siblings, 1 reply; 5+ messages in thread
From: Andreas Enge @ 2024-09-13 10:42 UTC (permalink / raw)
To: Julien Lepiller; +Cc: 72822, Sharlatan Hellseher, Eric Bavier
Hello Julien,
the patches look good to me. Given the delay in QA, I think you can push them.
Andreas
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#72822: [PATCH 2/2] gnu: josm: Update to 19160.
2024-09-13 10:42 ` Andreas Enge
@ 2024-09-14 16:53 ` Julien Lepiller
0 siblings, 0 replies; 5+ messages in thread
From: Julien Lepiller @ 2024-09-14 16:53 UTC (permalink / raw)
To: Andreas Enge; +Cc: 72822-done, Sharlatan Hellseher, Eric Bavier
Le Fri, 13 Sep 2024 12:42:54 +0200,
Andreas Enge <andreas@enge.fr> a écrit :
> Hello Julien,
>
> the patches look good to me. Given the delay in QA, I think you can
> push them.
>
> Andreas
>
Pushed to master as 5fb9e04b6de24d5ff6478c9e4abe88a3a21fc43a and
e48426b45421eb8199a0dadbcd0eef3f14511e27, thanks!
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-09-14 16:54 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-26 17:56 [bug#72822] gnu: josm: Update to 19160 Julien Lepiller
2024-08-26 18:18 ` [bug#72822] [PATCH 1/2] gnu: java-jmapviewer: Update to 2.20 Julien Lepiller
2024-08-26 18:18 ` [bug#72822] [PATCH 2/2] gnu: josm: Update to 19160 Julien Lepiller
2024-09-13 10:42 ` Andreas Enge
2024-09-14 16:53 ` bug#72822: " Julien Lepiller
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).