Update josm
more/packages/java.scm
34 | 34 | (define-public josm | |
35 | 35 | (package | |
36 | 36 | (name "josm") | |
37 | - | (version "c86ae64ca82a5bb9dd1972c7023797eb9a2577f5") | |
37 | + | (version "d977155fb5b1f54ab76140345633356475f7beee") | |
38 | 38 | (source (origin | |
39 | 39 | (method git-fetch) | |
40 | 40 | (uri (git-reference | |
… | |||
42 | 42 | (commit version))) | |
43 | 43 | (sha256 | |
44 | 44 | (base32 | |
45 | - | "07z2q4csq9gdpg4lp1zpvcl5z5sqn0fnqah94ya3sirm6bh4k74j")) | |
45 | + | "17ih97kf6g6ly8gz6dbc3jzh22gamra4anbwcsxivhq7dw5z3a6n")) | |
46 | 46 | (file-name (string-append name "-" version)))) | |
47 | 47 | (build-system ant-build-system) | |
48 | 48 | (arguments | |
… | |||
53 | 53 | (modify-phases %standard-phases | |
54 | 54 | (add-before 'build 'fix-compiler | |
55 | 55 | (lambda* _ | |
56 | + | (with-output-to-file "REVISION.XML" | |
57 | + | (lambda _ | |
58 | + | (display | |
59 | + | (string-append "<info><entry><commit revision=\"11885\">" | |
60 | + | "<date>1970-01-01 00:00:00 +0000</date>" | |
61 | + | "</commit></entry></info>")))) | |
56 | 62 | (substitute* "build.xml" | |
57 | - | (("UNKNOWN") "11639") | |
63 | + | (("UNKNOWN") "11885") | |
64 | + | (("<touch.*epsg.output.*") "<mkdir dir="${epsg.output}/.." /><touch file="${epsg.output}"/>\n") | |
58 | 65 | ((".*com.google.errorprone.ErrorProneAntCompilerAdapter.*") "") | |
59 | 66 | (("compiler=\"[^\"]*\" ") "")))) | |
60 | 67 | (replace 'install |