diff options
author | Julien Lepiller <julien@lepiller.eu> | 2022-10-15 23:15:09 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2022-11-03 15:11:32 +0100 |
commit | 82d9fcd9b7cfdde047ef2299e6f4a3f0d8798620 (patch) | |
tree | b2bd9bb8679b2cb4bcb12a64b98543cf81b6bd91 /gnu/packages/geo.scm | |
parent | 622042110c30fbf28d88940758e8b444b985de4a (diff) | |
download | guix-82d9fcd9b7cfdde047ef2299e6f4a3f0d8798620.tar.gz |
gnu: java-opening-hours-parser: Update to 0.27.0.
* gnu/packages/geo.scm (java-opening-hours-parser): Update to 0.27.0.
Diffstat (limited to 'gnu/packages/geo.scm')
-rw-r--r-- | gnu/packages/geo.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 5e484c6e1c..faec60ebcc 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -1664,7 +1664,7 @@ an independent project by the JOSM team.") (define-public java-opening-hours-parser (package (name "java-opening-hours-parser") - (version "0.23.0") + (version "0.27.0") (source (origin (method git-fetch) (uri (git-reference @@ -1673,11 +1673,12 @@ an independent project by the JOSM team.") (file-name (git-file-name name version)) (sha256 (base32 - "0yhbd2ix6h506aljh0jkrnp28m4xcqdcdpnqm30fn08kawdgxgsh")))) + "1sw5ccxqw4ly5hzxnnljjqx4876gyvagi10sg8r9w25n211lq0x4")))) (build-system ant-build-system) (arguments `(#:jar-name "java-opening-hours-parser.jar" #:source-dir "src/main/java" + #:test-exclude (list "**/IndividualTest.java") #:phases (modify-phases %standard-phases (add-before 'build 'copy-resources @@ -1692,8 +1693,7 @@ an independent project by the JOSM team.") "-DEBUG_TOKEN_MANAGER=false" "-JDK_VERSION=1.8" "-GRAMMAR_ENCODING=UTF-8" (string-append "-OUTPUT_DIRECTORY=" dir) - file)) - #t))))) + file))))))) (inputs (list java-jetbrains-annotations)) (native-inputs |