diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-11-17 23:13:02 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-11-17 23:18:50 +0100 |
commit | 8710d4dd737c50de9f1a3085dd2233ed2a7183d6 (patch) | |
tree | 0790cdd97bd4adf292c2c2b6ccdc2e01a5a73974 /gnu/packages/java.scm | |
parent | d72f76df11f290045e427e6a74a368098e1ad227 (diff) | |
download | patches-8710d4dd737c50de9f1a3085dd2233ed2a7183d6.tar patches-8710d4dd737c50de9f1a3085dd2233ed2a7183d6.tar.gz |
gnu: java-swt: Update to 4.7.1a.
* gnu/packages/java.scm (java-swt): Update to 4.7.1a.
[arguments]: Build with icedtea-8.
[inputs]: Remove "icecat".
Diffstat (limited to 'gnu/packages/java.scm')
-rw-r--r-- | gnu/packages/java.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index cc42d4bb1a..81c521de57 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -1930,15 +1930,15 @@ API and version 2.1 of the Java ServerPages API.") (define-public java-swt (package (name "java-swt") - (version "4.6") + (version "4.7.1a") (source ;; The types of many variables and procedures differ in the sources ;; dependent on whether the target architecture is a 32-bit system or a ;; 64-bit system. Instead of patching the sources on demand in a build ;; phase we download either the 32-bit archive (which mostly uses "int" ;; types) or the 64-bit archive (which mostly uses "long" types). - (let ((hash32 "0jmx1h65wqxsyjzs64i2z6ryiynllxzm13cq90fky2qrzagcw1ir") - (hash64 "0wnd01xssdq9pgx5xqh5lfiy3dmk60dzzqdxzdzf883h13692lgy") + (let ((hash32 "09q0cbh90d90q3a7dx9430kc4m6bijrkr4lajrmzzvi0jjdpq4v9") + (hash64 "17k5hs75a87ssmc5xhwdfdm2gn4zba0r837l2455za01krnkaa2q") (file32 "x86") (file64 "x86_64")) (let-values (((hash file) @@ -1948,13 +1948,14 @@ API and version 2.1 of the Java ServerPages API.") (origin (method url-fetch) (uri (string-append - "http://ftp-stud.fht-esslingen.de/pub/Mirrors/" - "eclipse/eclipse/downloads/drops4/R-" version - "-201606061100/swt-" version "-gtk-linux-" file ".zip")) + "http://download.eclipse.org/eclipse/downloads/drops4/" + "R-" version "-201710090410/swt-" version + "-gtk-linux-" file ".zip")) (sha256 (base32 hash)))))) (build-system ant-build-system) (arguments `(#:jar-name "swt.jar" + #:jdk ,icedtea-8 #:tests? #f ; no "check" target #:phases (modify-phases %standard-phases @@ -1988,8 +1989,7 @@ API and version 2.1 of the Java ServerPages API.") (find-files "." "\\.so$")) #t)))))) (inputs - `(("xulrunner" ,icecat) - ("gtk" ,gtk+-2) + `(("gtk" ,gtk+-2) ("libxtst" ,libxtst) ("libxt" ,libxt) ("mesa" ,mesa) |