gnu: java-javaewah: Don't use unstable tarball.
* gnu/packages/java.scm (java-javaewah)[source]: Download using git-fetch.
This commit is contained in:
		
							parent
							
								
									242af2954e
								
							
						
					
					
						commit
						2876b23345
					
				
					 1 changed files with 7 additions and 5 deletions
				
			
		| 
						 | 
					@ -6742,12 +6742,14 @@ This is a part of the Apache Commons Project.")
 | 
				
			||||||
    (name "java-javaewah")
 | 
					    (name "java-javaewah")
 | 
				
			||||||
    (version "1.1.6")
 | 
					    (version "1.1.6")
 | 
				
			||||||
    (source (origin
 | 
					    (source (origin
 | 
				
			||||||
              (method url-fetch)
 | 
					              (method git-fetch)
 | 
				
			||||||
              (uri (string-append "https://github.com/lemire/javaewah/"
 | 
					              (uri (git-reference
 | 
				
			||||||
                                  "archive/JavaEWAH-" version ".tar.gz"))
 | 
					                     (url "https://github.com/lemire/javaewah/")
 | 
				
			||||||
 | 
					                     (commit (string-append "JavaEWAH-" version))))
 | 
				
			||||||
 | 
					              (file-name (git-file-name name version))
 | 
				
			||||||
              (sha256
 | 
					              (sha256
 | 
				
			||||||
               (base32
 | 
					               (base32
 | 
				
			||||||
                "1n7j1r1h24wlhwv9zdcj6yqjrhma2ixwyzm15l5vrv6yqjs6753b"))))
 | 
					                "1m8qcb1py76v7avbjjrkvyy6fhr5dk2ywy73gbsxqry04gkm2nhw"))))
 | 
				
			||||||
    (build-system ant-build-system)
 | 
					    (build-system ant-build-system)
 | 
				
			||||||
    (arguments `(#:jar-name "javaewah.jar"))
 | 
					    (arguments `(#:jar-name "javaewah.jar"))
 | 
				
			||||||
    (inputs
 | 
					    (inputs
 | 
				
			||||||
| 
						 | 
					@ -6760,7 +6762,7 @@ This is a part of the Apache Commons Project.")
 | 
				
			||||||
compression scheme.  It can be used to implement bitmap indexes.
 | 
					compression scheme.  It can be used to implement bitmap indexes.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
The goal of word-aligned compression is not to achieve the best compression,
 | 
					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
 | 
					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
 | 
					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
 | 
					more efficient storage-wise than an uncompressed bitmap (as implemented in the
 | 
				
			||||||
@code{BitSet} class by Sun).")
 | 
					@code{BitSet} class by Sun).")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue