Gentoo Archives: gentoo-commits

From: "Miroslav Sulc (fordfrog)" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/jgrapht: ChangeLog jgrapht-0.8.2.ebuild
Date: Sun, 25 Dec 2011 21:15:26
Message-Id: 20111225211511.9E7A82004B@flycatcher.gentoo.org
1 fordfrog 11/12/25 21:15:11
2
3 Modified: ChangeLog
4 Added: jgrapht-0.8.2.ebuild
5 Log:
6 dev-java/jgrapht: version bump
7
8 (Portage version: 2.1.10.43/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 dev-java/jgrapht/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jgrapht/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jgrapht/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jgrapht/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-java/jgrapht/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 23 Jan 2011 17:03:27 -0000 1.6
24 +++ ChangeLog 25 Dec 2011 21:15:11 -0000 1.7
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-java/jgrapht
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-java/jgrapht/ChangeLog,v 1.6 2011/01/23 17:03:27 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-java/jgrapht/ChangeLog,v 1.7 2011/12/25 21:15:11 fordfrog Exp $
30 +
31 +*jgrapht-0.8.2 (25 Dec 2011)
32 +
33 + 25 Dec 2011; Miroslav Šulc <fordfrog@g.o> +jgrapht-0.8.2.ebuild,
34 + +files/DOTExporter-nullpointer.patch:
35 + Version bump (thanks to Elliott Rezny <erezny@×××××.com> for the ebuild)
36
37 23 Jan 2011; Kacper Kowalik <xarthisius@g.o> jgrapht-0.7.3.ebuild:
38 Mark ~ppc wrt #301239
39
40
41
42 1.1 dev-java/jgrapht/jgrapht-0.8.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jgrapht/jgrapht-0.8.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jgrapht/jgrapht-0.8.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: jgrapht-0.8.2.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-java/jgrapht/jgrapht-0.8.2.ebuild,v 1.1 2011/12/25 21:15:11 fordfrog Exp $
52
53 EAPI="2"
54 JAVA_PKG_IUSE="doc source"
55
56 inherit java-pkg-2 java-ant-2 eutils
57
58 DESCRIPTION="Graph library that is a simpler and faster alternative to JGraph"
59 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
60 HOMEPAGE="http://jgrapht.sourceforge.net"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 SLOT="0"
63 LICENSE="LGPL-2.1"
64 IUSE="test"
65
66 CDEPEND="dev-java/touchgraph-graphlayout:0
67 dev-java/jgraph:0"
68
69 DEPEND="${CDEPEND}
70 >=virtual/jdk-1.6
71 test? ( dev-java/ant-junit
72 dev-java/xmlunit:1 )"
73
74 RDEPEND="${CDEPEND}
75 >=virtual/jre-1.6"
76
77 JAVA_ANT_REWRITE_CLASSPATH="true"
78 EANT_GENTOO_CLASSPATH="touchgraph-graphlayout jgraph"
79 EANT_DOC_TARGET="javadoc"
80
81 java_prepare() {
82 rm -rf "${S}/lib" || die
83 rm -v "${S}"/*.jar || die
84 epatch "${FILESDIR}"/DOTExporter-nullpointer.patch
85 }
86
87 src_install() {
88 java-pkg_newjar ${PN}*.jar || die
89
90 dohtml README.html || die
91 use doc && java-pkg_dojavadoc javadoc
92 use source && java-pkg_dosrc src/org
93 }
94
95 src_test() {
96 EANT_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH} xmlunit:1" ANT_TASKS="ant-junit" eant test
97 }