[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/44: gnu: Add java-javaewah.
From: |
Ricardo Wurmus |
Subject: |
02/44: gnu: Add java-javaewah. |
Date: |
Sun, 9 Jul 2017 11:09:08 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit eb270ecfdd577ce40511e698becc58c178bc155e
Author: Ricardo Wurmus <address@hidden>
Date: Fri May 19 07:52:20 2017 +0200
gnu: Add java-javaewah.
* gnu/packages/java.scm (java-javaewah): New variable.
---
gnu/packages/java.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 572a227..d8f5eac 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -4121,6 +4121,36 @@ for your architecture which is provided by the jsvc
package.
This is a part of the Apache Commons Project.")
(license license:asl2.0)))
+(define-public java-javaewah
+ (package
+ (name "java-javaewah")
+ (version "1.1.6")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/lemire/javaewah/"
+ "archive/JavaEWAH-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1n7j1r1h24wlhwv9zdcj6yqjrhma2ixwyzm15l5vrv6yqjs6753b"))))
+ (build-system ant-build-system)
+ (arguments `(#:jar-name "javaewah.jar"))
+ (inputs
+ `(("java-junit" ,java-junit)
+ ("java-hamcrest-core" ,java-hamcrest-core)))
+ (home-page "https://github.com/lemire/javaewah")
+ (synopsis "Compressed alternative to the Java @code{BitSet} class")
+ (description "This is a word-aligned compressed variant of the Java
address@hidden class. It provides both a 64-bit and a 32-bit RLE-like
+compression scheme. It can be used to implement bitmap indexes.
+
+The goal of word-aligned compression is not to achieve the best compression,
+but rather to improve query processing time. Hence, JavaEWAH tries to save CPU
+cycles, maybe at the expense of storage. However, the EWAH scheme is always
+more efficient storage-wise than an uncompressed bitmap (as implemented in the
address@hidden class by Sun).")
+ ;; GPL2.0 derivates are explicitly allowed.
+ (license license:asl2.0)))
+
(define-public antlr2
(package
(name "antlr2")
- branch master updated (efd5a84 -> a20608a), Ricardo Wurmus, 2017/07/09
- 02/44: gnu: Add java-javaewah.,
Ricardo Wurmus <=
- 07/44: gnu: deeptools: Update to 2.5.1., Ricardo Wurmus, 2017/07/09
- 03/44: gnu: Add java-slf4j-api., Ricardo Wurmus, 2017/07/09
- 10/44: gnu: texlive-latex-base: Fix xetex and xelatex formats., Ricardo Wurmus, 2017/07/09
- 09/44: build-system: texlive: Build union in configure phase., Ricardo Wurmus, 2017/07/09
- 05/44: gnu: Add java-jgit-4.2., Ricardo Wurmus, 2017/07/09
- 06/44: gnu: Add python-py2bit., Ricardo Wurmus, 2017/07/09
- 08/44: build-system: texlive: Only build packages in the current directory., Ricardo Wurmus, 2017/07/09
- 01/44: gnu: Add java-classpathx-servletapi, Ricardo Wurmus, 2017/07/09
- 04/44: gnu: Add java-jgit., Ricardo Wurmus, 2017/07/09
- 12/44: gnu: texlive-generic-ifxetex: Fix description., Ricardo Wurmus, 2017/07/09