mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-29 22:28:08 -07:00
dev-java/{mg4j,webgraph}: Removal. Fixes bug 161440.
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
This commit is contained in:
@@ -1 +0,0 @@
|
||||
DIST mg4j-0.9.1-src.tar.gz 169529 SHA256 8ca5c99facd9be71af57f0e71f746e83af98018774afe37d2a7a83aa356dc828 SHA512 b9831ed28360836a1828011bd9bf6474303f2125e1643fcb600a14aa8851468785d60739f85c1cfd9762e1744765a17827b334f194169786f54419d6b1f711c3 WHIRLPOOL 43fb4f7b8b786f66aa84b86cdcdcb758e9da727a5c88c0fb6f755c71a450f671be80901c1b5bde4486dab4a8621f0aa8f75c59bacf59b5c1a54b68b81c624759
|
||||
@@ -1,56 +0,0 @@
|
||||
diff -uprN mg4j-0.9.orig/build.xml mg4j-0.9/build.xml
|
||||
--- mg4j-0.9.orig/build.xml 2004-09-01 12:04:18.000000000 +0200
|
||||
+++ mg4j-0.9/build.xml 2004-11-17 00:30:41.879119728 +0100
|
||||
@@ -39,25 +39,34 @@
|
||||
includes="it/unimi/dsi/mg4j/query/parser/**"
|
||||
nowarn="on"
|
||||
debug="on"
|
||||
- optimize="on"
|
||||
+ optimize="on"
|
||||
destdir="${build}"
|
||||
- source="1.4"
|
||||
- />
|
||||
+ source="1.4"
|
||||
+ target="1.4">
|
||||
+
|
||||
+ <classpath>
|
||||
+ <pathelement path="lib/jal.jar;lib/fastutil.jar;lib/gnu.getopt.jar;lib/libreadline-java.jar;lib/colt.jar" />
|
||||
+ </classpath>
|
||||
+ </javac>
|
||||
</target>
|
||||
|
||||
<target name="compile" depends="init,compile-parser">
|
||||
<javac srcdir="${src}"
|
||||
debug="on"
|
||||
- optimize="on"
|
||||
+ optimize="on"
|
||||
destdir="${build}"
|
||||
- source="1.4"
|
||||
- />
|
||||
+ source="1.4"
|
||||
+ target="1.4">
|
||||
+
|
||||
+ <classpath>
|
||||
+ <pathelement path="lib/jal.jar;lib/fastutil.jar;lib/gnu.getopt.jar;lib/libreadline-java.jar;lib/colt.jar" />
|
||||
+ </classpath>
|
||||
+ </javac>
|
||||
</target>
|
||||
|
||||
<target name="jar" depends="compile">
|
||||
<jar jarfile="mg4j-${version}.jar"
|
||||
- basedir="${build}"
|
||||
- />
|
||||
+ basedir="${build}" />
|
||||
</target>
|
||||
|
||||
|
||||
@@ -69,8 +78,7 @@
|
||||
sourcepath="${src}"
|
||||
private="off"
|
||||
source="1.4"
|
||||
- windowtitle="MG4J ${version}"
|
||||
- >
|
||||
+ windowtitle="MG4J ${version}">
|
||||
<link href="${j2se.apiurl}"/>
|
||||
<link href="${fastutil.apiurl}"/>
|
||||
<link href="${colt.apiurl}"/>
|
||||
@@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
|
||||
<pkgmetadata>
|
||||
<herd>java</herd>
|
||||
|
||||
<longdescription>
|
||||
|
||||
MG4J (Managing Gigabytes for Java) is a collaborative effort aimed at providing
|
||||
a free Java implementation of inverted-index compression techniques; as a
|
||||
by-product, it offers several general-purpose optimised classes, including fast
|
||||
& compact mutable strings, bit-level I/O, fast unsychronised buffered
|
||||
streams, (possibly signed) minimal perfect hashing for very large strings
|
||||
collections, etc.
|
||||
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
@@ -1,45 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="4"
|
||||
|
||||
JAVA_PKG_IUSE="doc source"
|
||||
|
||||
inherit eutils java-pkg-2 java-ant-2
|
||||
|
||||
DESCRIPTION="A free Java implementation of inverted-index compression technique"
|
||||
SRC_URI="http://mg4j.dsi.unimi.it/${P}-src.tar.gz"
|
||||
HOMEPAGE="http://mg4j.dsi.unimi.it"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0.9"
|
||||
KEYWORDS="amd64 ~ppc x86"
|
||||
IUSE=""
|
||||
|
||||
COMMON_DEP="
|
||||
dev-java/colt:0
|
||||
dev-java/fastutil:4.3
|
||||
dev-java/jal:0
|
||||
dev-java/java-getopt:1
|
||||
dev-java/libreadline-java:0"
|
||||
RDEPEND="${COMMON_DEP}
|
||||
>=virtual/jre-1.5"
|
||||
DEPEND="${COMMON_DEP}
|
||||
>=virtual/jdk-1.5
|
||||
dev-java/javacc:0"
|
||||
|
||||
java_prepare() {
|
||||
epatch "${FILESDIR}/mg4j-build.patch"
|
||||
}
|
||||
|
||||
JAVA_ANT_REWRITE_CLASSPATH="yes"
|
||||
|
||||
EANT_GENTOO_CLASSPATH="colt,fastutil-4.3,jal,java-getopt-1,libreadline-java"
|
||||
|
||||
src_install() {
|
||||
java-pkg_newjar ${P}.jar
|
||||
|
||||
use doc && java-pkg_dojavadoc docs
|
||||
use source && java-pkg_dosrc java/it
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
DIST webgraph-1.4.1-src.tar.gz 55467 SHA256 a91402ae46c60234f8234a9b05078feb7d23bfa12a68447ef410e24ceb4dc133 SHA512 6c7ae24ad1a3f05d547bd49b83446f42177d50b86db60815208a18fe86129dc1264c9c2d67f6992dd930333e7150b952e27d8cc510179fd362879c719900d5cb WHIRLPOOL 34ba6c65f7051a400eb2de07ff0eaec3cf20fe3b3cb10db927249a3ca269206be990cdb2018101c4695a77e5b8892f77ca18d25e1bd38b4b50d46c9dc30bd666
|
||||
@@ -1,36 +0,0 @@
|
||||
--- build.xml.orig 2005-04-15 14:36:14.000000000 +0200
|
||||
+++ build.xml 2005-04-15 14:38:45.000000000 +0200
|
||||
@@ -19,6 +19,14 @@
|
||||
<property name="jar.base" value="/usr/share/java"/>
|
||||
<property name="javadoc.base" value="/usr/share/javadoc"/>
|
||||
|
||||
+ <path id="compile.classpath">
|
||||
+ <pathelement location="lib/jal.jar" />
|
||||
+ <pathelement location="lib/colt.jar" />
|
||||
+ <pathelement location="lib/fastutil.jar" />
|
||||
+ <pathelement location="lib/gnu.getopt.jar" />
|
||||
+ <pathelement location="lib/mg4j.jar" />
|
||||
+ </path>
|
||||
+
|
||||
<!--
|
||||
Groovy and Cobertura need different versions of asm.
|
||||
Due to the delegation-based class-loading model used
|
||||
@@ -119,7 +127,9 @@
|
||||
<target name="all" depends="jar,javadoc"/>
|
||||
|
||||
<target name="compile" depends="init" description="Compile standard sources (not test files)">
|
||||
- <javac srcdir="${src}" includes="**${subdir}" excludes="test/**" debug="on" optimize="on" destdir="${build}" source="1.4"/>
|
||||
+ <javac srcdir="${src}" includes="**${subdir}" excludes="test/**" debug="on" optimize="on" destdir="${build}" source="1.4" target="1.4">
|
||||
+ <classpath refid="compile.classpath" />
|
||||
+ </javac>
|
||||
</target>
|
||||
|
||||
<target name="jar" depends="compile" description="Creates jar (without tests)">
|
||||
@@ -144,6 +154,7 @@
|
||||
<link href="${colt.apiurl}"/>
|
||||
<link href="${jal.apiurl}"/>
|
||||
<link href="${mg4j.apiurl}"/>
|
||||
+ <classpath refid="compile.classpath" />
|
||||
</javadoc>
|
||||
</target>
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
|
||||
<pkgmetadata>
|
||||
<herd>java</herd>
|
||||
|
||||
<longdescription>
|
||||
WebGraph is a framework to study the web graph. It provides simple ways to
|
||||
manage very large graphs, exploiting modern compression techniques.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
@@ -1,53 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
JAVA_PKG_IUSE="doc source"
|
||||
|
||||
inherit eutils java-pkg-2 java-ant-2
|
||||
|
||||
DESCRIPTION="WebGraph is a framework to study the web graph"
|
||||
SRC_URI="http://webgraph.dsi.unimi.it/${P}-src.tar.gz"
|
||||
HOMEPAGE="http://webgraph.dsi.unimi.it"
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="1.4"
|
||||
KEYWORDS="amd64 ~ppc x86"
|
||||
IUSE=""
|
||||
|
||||
COMMON_DEP="=dev-java/java-getopt-1.0*
|
||||
=dev-java/fastutil-4.4*
|
||||
=dev-java/colt-1*
|
||||
>=dev-java/jal-20031117
|
||||
=dev-java/mg4j-0.9*"
|
||||
|
||||
RDEPEND=">=virtual/jre-1.4
|
||||
${COMMON_DEP}"
|
||||
DEPEND=">=virtual/jdk-1.4
|
||||
${COMMON_DEP}"
|
||||
|
||||
src_unpack() {
|
||||
|
||||
unpack ${A}
|
||||
|
||||
cd "${S}"
|
||||
epatch "${FILESDIR}/${P}-gentoo.patch"
|
||||
|
||||
mkdir lib/ && cd lib/
|
||||
java-pkg_jar-from java-getopt-1
|
||||
java-pkg_jar-from fastutil-4.4
|
||||
java-pkg_jar-from colt colt.jar
|
||||
java-pkg_jar-from jal jal.jar
|
||||
java-pkg_jar-from mg4j-0.9
|
||||
|
||||
}
|
||||
|
||||
src_install() {
|
||||
|
||||
java-pkg_newjar ${P}.jar ${PN}.jar
|
||||
|
||||
dodoc CHANGES
|
||||
|
||||
use doc && java-pkg_dojavadoc docs
|
||||
use source && java-pkg_dosrc java/it
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user