Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/biojava/
Date: Sun, 06 Mar 2016 13:02:00
Message-Id: 1457269302.2307172a14e00538f1f06a89d2e629cc42483dbb.chewi@gentoo
1 commit: 2307172a14e00538f1f06a89d2e629cc42483dbb
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 6 12:55:18 2016 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 6 13:01:42 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2307172a
7
8 sci-biology/biojava: Remove outdated unmaintained package
9
10 sci-biology/biojava/Manifest | 2 -
11 sci-biology/biojava/biojava-1.6.ebuild | 73 ----------------------------------
12 sci-biology/biojava/biojava-1.7.ebuild | 73 ----------------------------------
13 sci-biology/biojava/metadata.xml | 12 ------
14 4 files changed, 160 deletions(-)
15
16 diff --git a/sci-biology/biojava/Manifest b/sci-biology/biojava/Manifest
17 deleted file mode 100644
18 index 3a20f1c..0000000
19 --- a/sci-biology/biojava/Manifest
20 +++ /dev/null
21 @@ -1,2 +0,0 @@
22 -DIST biojava-1.6-all.jar 24571007 SHA256 2d10334fe6022d1b64219505ba4d2a32027ab7218d775878506d3e7c00f6ce7e SHA512 300bd6e02fe052c810c52cb2cc4255628bee704af187ad746b97e57941778dc3a1996b3917db021d74db8c716f94c90c94c5a5e2d4bc212c06259381045f3034 WHIRLPOOL e5a52aaa6e9a9d6780d5f55b6d164db07388e9c595296d4e4a11dc241aa0745fa726279d19a0c97d1966b0a14c06af2b9b588873ad522aeeff881534f0871f10
23 -DIST biojava-1.7-all.jar 28062592 SHA256 5c5e7fc66bc79a07494fb7d935164ec2aab50dc2effb7644f89bfa4fc907bb3f SHA512 867862b45f014bcd1afd37691e91b948ede05e96f84c7051953d32dad49908781235aad80301e22a15fa8b4145e80c78cf3935d6e581a2e60b56c9308f8adaa8 WHIRLPOOL 5669293ce362e82562454c5902d523e69f64d90e117e75b5de844e0ef5866d250507b86f78245ac82f19932ad9aa196ad17d96a3f703187a3ab2daf00893af9b
24
25 diff --git a/sci-biology/biojava/biojava-1.6.ebuild b/sci-biology/biojava/biojava-1.6.ebuild
26 deleted file mode 100644
27 index edfadac..0000000
28 --- a/sci-biology/biojava/biojava-1.6.ebuild
29 +++ /dev/null
30 @@ -1,73 +0,0 @@
31 -# Copyright 1999-2015 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -# $Id$
34 -
35 -# TODO:
36 -# -Fix javadoc generation OutOfMemoryError
37 -# -Add launchers for 2 apps in biojava-apps.jar
38 -# -Decide on demo packaging. (Whether to install its jar as done or sources by examples USE flag)
39 -
40 -EAPI=2
41 -
42 -#JAVA_PKG_IUSE="doc source test"
43 -JAVA_PKG_IUSE="source test"
44 -
45 -inherit eutils java-pkg-2 java-ant-2
46 -
47 -DESCRIPTION="A Java framework for processing biological data"
48 -HOMEPAGE="http://biojava.org"
49 -SRC_URI="http://www.biojava.org/download/bj16/all/${P}-all.jar"
50 -LICENSE="LGPL-2.1"
51 -SLOT="0"
52 -KEYWORDS="~amd64"
53 -IUSE=""
54 -
55 -COMMON_DEPEND="dev-java/jgrapht:0
56 - dev-java/commons-cli:1
57 - dev-java/commons-dbcp:0
58 - dev-java/commons-pool:0
59 - dev-java/bytecode:0"
60 -
61 -RDEPEND=">=virtual/jre-1.5
62 - ${COMMON_DEPEND}"
63 -DEPEND=">=virtual/jdk-1.5
64 - app-arch/unzip
65 - ${COMMON_DEPEND}
66 - test?
67 - (
68 - dev-java/junit:4
69 - dev-java/ant-junit4
70 - )"
71 -
72 -S="${WORKDIR}/biojava-live_${PV}"
73 -
74 -JAVA_ANT_IGNORE_SYSTEM_CLASSES="true"
75 -
76 -src_prepare() {
77 - einfo "Removing budled jars."
78 - find . -name "*.jar" -print -delete
79 - rm -r doc/*
80 - java-pkg_jar-from jgrapht jgrapht.jar jgrapht-jdk1.5.jar
81 - java-pkg_jar-from commons-cli-1
82 - java-pkg_jar-from commons-dbcp commons-dbcp.jar commons-dbcp-1.1.jar
83 - java-pkg_jar-from commons-pool commons-pool.jar commons-pool-1.1.jar
84 - java-pkg_jar-from bytecode
85 -}
86 -
87 -src_compile() {
88 - #ANT_OPTS="${ANT_OPTS} -Xmx512m"
89 - eant package-biojava package-biojava package-demos package-apps #$(use_doc javadocs-all)
90 -}
91 -
92 -src_install() {
93 - java-pkg_newjar ant-build/biojava.jar ${PN}.jar
94 - java-pkg_newjar ant-build/apps.jar ${PN}-apps.jar
95 - java-pkg_newjar ant-build/demos.jar ${PN}-demos.jar
96 - #use doc && java-pkg_dojavadoc ant-build/doc/{biojava,apps,demos}
97 - use source && java-pkg_dosrc {src,apps,demos}/org
98 -}
99 -
100 -src_test() {
101 - java-pkg_jar-from junit-4 junit.jar junit-4.4.jar
102 - ANT_TASKS="ant-junit4" eant runtests
103 -}
104
105 diff --git a/sci-biology/biojava/biojava-1.7.ebuild b/sci-biology/biojava/biojava-1.7.ebuild
106 deleted file mode 100644
107 index 77ff74c..0000000
108 --- a/sci-biology/biojava/biojava-1.7.ebuild
109 +++ /dev/null
110 @@ -1,73 +0,0 @@
111 -# Copyright 1999-2015 Gentoo Foundation
112 -# Distributed under the terms of the GNU General Public License v2
113 -# $Id$
114 -
115 -# TODO:
116 -# -Fix javadoc generation OutOfMemoryError
117 -# -Add launchers for 2 apps in biojava-apps.jar
118 -# -Decide on demo packaging. (Whether to install its jar as done or sources by examples USE flag)
119 -
120 -EAPI=2
121 -
122 -#JAVA_PKG_IUSE="doc source test"
123 -JAVA_PKG_IUSE="source test"
124 -
125 -inherit eutils java-pkg-2 java-ant-2
126 -
127 -DESCRIPTION="A Java framework for processing biological data"
128 -HOMEPAGE="http://biojava.org"
129 -SRC_URI="http://www.biojava.org/download/bj17/all/${P}-all.jar"
130 -LICENSE="LGPL-2.1"
131 -SLOT="0"
132 -KEYWORDS="~amd64 ~x86"
133 -IUSE=""
134 -
135 -COMMON_DEPEND="dev-java/jgrapht:0
136 - dev-java/commons-cli:1
137 - dev-java/commons-dbcp:0
138 - dev-java/commons-pool:0
139 - dev-java/commons-collections:0
140 - dev-java/bytecode:0"
141 -
142 -RDEPEND=">=virtual/jre-1.5
143 - ${COMMON_DEPEND}"
144 -DEPEND=">=virtual/jdk-1.5
145 - app-arch/unzip
146 - ${COMMON_DEPEND}
147 - test?
148 - (
149 - dev-java/junit:4
150 - dev-java/ant-junit4
151 - )"
152 -
153 -S="${WORKDIR}/biojava-${PV}"
154 -
155 -JAVA_ANT_IGNORE_SYSTEM_CLASSES="true"
156 -
157 -src_prepare() {
158 - einfo "Removing bundled jars..."
159 - find . -name "*.jar" -print -delete
160 - java-pkg_jar-from jgrapht jgrapht.jar jgrapht-jdk1.5.jar
161 - java-pkg_jar-from commons-cli-1
162 - java-pkg_jar-from commons-dbcp commons-dbcp.jar commons-dbcp-1.1.jar
163 - java-pkg_jar-from commons-pool commons-pool.jar commons-pool-1.1.jar
164 - java-pkg_jar-from bytecode
165 -}
166 -
167 -src_compile() {
168 - #ANT_OPTS="${ANT_OPTS} -Xmx512m"
169 - eant package-biojava package-biojava package-demos package-apps #$(use_doc javadocs-all)
170 -}
171 -
172 -src_install() {
173 - java-pkg_newjar ant-build/biojava.jar ${PN}.jar
174 - java-pkg_newjar ant-build/apps.jar ${PN}-apps.jar
175 - java-pkg_newjar ant-build/demos.jar ${PN}-demos.jar
176 - #use doc && java-pkg_dojavadoc ant-build/doc/{biojava,apps,demos}
177 - use source && java-pkg_dosrc {src,apps,demos}/org
178 -}
179 -
180 -src_test() {
181 - java-pkg_jar-from junit-4 junit.jar junit-4.4.jar
182 - ANT_TASKS="ant-junit4" eant runtests
183 -}
184
185 diff --git a/sci-biology/biojava/metadata.xml b/sci-biology/biojava/metadata.xml
186 deleted file mode 100644
187 index 15eb934..0000000
188 --- a/sci-biology/biojava/metadata.xml
189 +++ /dev/null
190 @@ -1,12 +0,0 @@
191 -<?xml version="1.0" encoding="UTF-8"?>
192 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
193 -<pkgmetadata>
194 - <maintainer type="project">
195 - <email>sci-biology@g.o</email>
196 - <name>Gentoo Biology Project</name>
197 - </maintainer>
198 -<maintainer type="project">
199 - <email>java@g.o</email>
200 - <name>Java</name>
201 - </maintainer>
202 -</pkgmetadata>