mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 12:58:16 -07:00
dev-java/sux4j: Remove old unused package
This commit is contained in:
@@ -1 +0,0 @@
|
||||
DIST sux4j-2.0-src.tar.gz 103997 SHA256 232845b79e5652ff0fc6e29d06ea0627ba26d9b2f646fae3cb4e6451732f7e35 SHA512 b52e07ea1f4721ad20daf95a02f5c1b79300ce91316696227c04a4af51b9d6d8cecaae0a0abecafb8414157dc1e43659e34402f853466b4ef8040b5dbdd1fc81 WHIRLPOOL d58eb1a9b7d95179679949c4b3df1b109f2c218a469dfd8239dfcfffd37eaacd8848e9ac65f4623bc85938e78294f536d2194dcdde91e05afe9ac2a6472bd4ad
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>java@gentoo.org</email>
|
||||
<name>Java</name>
|
||||
</maintainer>
|
||||
<longdescription lang="en">
|
||||
Sux in an umbrella nickname for the results of my fiddling with the implementation of basic succinct data strucures.
|
||||
|
||||
The resulting code is rather sparse. The main highlights are:
|
||||
|
||||
* a novel, broadword-based implementation of rank/select queries for up to 264 bits that is highly competitive with known 32-bit implementations on 64-bit architectures (additional space required is 25% for ranking and 12.5%-37.5% for selection);
|
||||
* several Java structures using the Elias–Fano representation of monotone sequences for storing pointers, variable-length bit arrays, etc.
|
||||
* Java code implementing minimal perfect hashing using around 2.65 bits per element (also using some broadword ideas);
|
||||
* a few Java implementation of monotone minimal perfect hashing.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
@@ -1,49 +0,0 @@
|
||||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="2"
|
||||
JAVA_PKG_IUSE="doc source"
|
||||
|
||||
inherit java-pkg-2 java-ant-2
|
||||
|
||||
DESCRIPTION="Sux: Implementing Succinct Data Structures"
|
||||
HOMEPAGE="http://sux.dsi.unimi.it/"
|
||||
SRC_URI="http://sux.dsi.unimi.it/${P}-src.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE=""
|
||||
|
||||
COMMON_DEP="dev-java/fastutil:5.0
|
||||
dev-java/commons-io:1
|
||||
dev-java/colt:0
|
||||
dev-java/dsiutils:0
|
||||
dev-java/log4j:0
|
||||
dev-java/commons-collections:0
|
||||
dev-java/commons-configuration:0
|
||||
dev-java/jsap:0
|
||||
dev-java/commons-lang:2.1
|
||||
dev-java/junit:0"
|
||||
|
||||
RDEPEND=">=virtual/jre-1.5
|
||||
${COMMON_DEP}"
|
||||
DEPEND=">=virtual/jdk-1.5
|
||||
app-arch/unzip
|
||||
${COMMON_DEP}"
|
||||
|
||||
src_unpack() {
|
||||
unpack ${A}
|
||||
cd "${S}"
|
||||
java-ant_rewrite-classpath
|
||||
}
|
||||
|
||||
EANT_GENTOO_CLASSPATH="fastutil-5.0,commons-io-1,colt,dsiutils,log4j,commons-collections,commons-configuration,jsap,commons-lang-2.1,junit"
|
||||
|
||||
src_install() {
|
||||
java-pkg_newjar "${P}.jar"
|
||||
use doc && java-pkg_dojavadoc docs
|
||||
use source && java-pkg_dosrc src
|
||||
}
|
||||
Reference in New Issue
Block a user