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: dev-java/piccolo2d/
Date: Fri, 29 Jan 2016 22:58:04
Message-Id: 1454108251.dd3656cd98dfa29a1b6c806bb52fc5e203831836.chewi@gentoo
1 commit: dd3656cd98dfa29a1b6c806bb52fc5e203831836
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 29 22:56:55 2016 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 29 22:57:31 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd3656cd
7
8 dev-java/piccolo2d: Remove old
9
10 This drops the only stable version but it doesn't build at all now
11 (was sun.dc part of the JDK before?) and it currently has no revdeps.
12
13 The new version should probably have been put in a different SLOT but
14 that doesn't matter now that the old version is going.
15
16 Package-Manager: portage-2.2.27
17
18 dev-java/piccolo2d/Manifest | 1 -
19 dev-java/piccolo2d/piccolo2d-1.2.1-r2.ebuild | 53 ----------------------------
20 2 files changed, 54 deletions(-)
21
22 diff --git a/dev-java/piccolo2d/Manifest b/dev-java/piccolo2d/Manifest
23 index 2b8a3c2..e055113 100644
24 --- a/dev-java/piccolo2d/Manifest
25 +++ b/dev-java/piccolo2d/Manifest
26 @@ -1,2 +1 @@
27 -DIST Piccolo2D.Java-1.2.1.zip 1886765 SHA256 3ba041d458226f8f54170cd82b76d2868a943f3b6d18c602ffacb8887598a621 SHA512 00e8119148abfe2b399ca252eda97c0199bdc03584e08b34438b16cf3c27bb103eb04c6afe9bf4c07832fe2a95147f53a4a536abe81a2f3116c332678f2dd919 WHIRLPOOL d4da92c931c65a26b5f5925c9557aa4a7af4c0cc009a9a49b01853b74e3a63bbde110e30d2464a2bb39fbce6058a73a0a76d1d7778370abe122ef06baaeb98ac
28 DIST piccolo2d-3.0.zip 786064 SHA256 acfc9a8b6baf12a22d1307a0fd0dfa8abb160bd1aef7cade63158d65ba939b33 SHA512 c57d0e86ea36e662027559c63c8e300629361849d4526d9271ea1ed3c8d55296ab1fab846c7a475c5d831fc6330052fa897ba8d3f89a196bca752a7ae802aa2a WHIRLPOOL 547ee6e23986f0cee9c5c65819c6da910a1e6931f5961d8e417476b0c62346fbb647b498fd63db28bdfe92248cd3e9f3b856f18741690486ff1ff1d552f4d628
29
30 diff --git a/dev-java/piccolo2d/piccolo2d-1.2.1-r2.ebuild b/dev-java/piccolo2d/piccolo2d-1.2.1-r2.ebuild
31 deleted file mode 100644
32 index 87ce59c..0000000
33 --- a/dev-java/piccolo2d/piccolo2d-1.2.1-r2.ebuild
34 +++ /dev/null
35 @@ -1,53 +0,0 @@
36 -# Copyright 1999-2010 Gentoo Foundation
37 -# Distributed under the terms of the GNU General Public License v2
38 -# $Id$
39 -
40 -EAPI=2
41 -JAVA_PKG_IUSE="doc examples source"
42 -
43 -inherit eutils java-pkg-2 java-ant-2
44 -
45 -MY_PN="piccolo"
46 -DESCRIPTION="A Structured 2D Graphics Framework"
47 -HOMEPAGE="http://piccolo2d.info/community.html"
48 -SRC_URI="https://piccolo2d.googlecode.com/files/Piccolo2D.Java-${PV}.zip"
49 -
50 -LICENSE="BSD"
51 -SLOT="0"
52 -KEYWORDS="amd64 x86"
53 -IUSE=""
54 -
55 -COMMON_DEPS="
56 - dev-java/swt:3.5
57 - java-virtuals/jdk-with-com-sun
58 - "
59 -RDEPEND=">=virtual/jre-1.4
60 - ${COMMON_DEPS}"
61 -DEPEND=">=virtual/jdk-1.4
62 - app-arch/unzip
63 - ${COMMON_DEPS}"
64 -
65 -S="${WORKDIR}/${MY_PN}-${PV}"
66 -
67 -# Needs X11
68 -RESTRICT="test"
69 -
70 -java_prepare() {
71 - find -name '*.jar' -print -delete
72 - epatch "${FILESDIR}/1.2.1-font-api.patch"
73 -}
74 -
75 -JAVA_ANT_REWRITE_CLASSPATH="true"
76 -EANT_GENTOO_CLASSPATH="swt-3.5,jdk-with-com-sun"
77 -EANT_BUILD_TARGET="${MY_PN} extras"
78 -EANT_GENTOO_CLASSPATH_EXTRA="build/${MY_PN}.jar:build/${MY_PN}x.jar"
79 -EANT_DOC_TARGET="api"
80 -EANT_TEST_TARGET="runtests"
81 -
82 -src_install() {
83 - java-pkg_dojar build/*.jar
84 - dodoc Readme.txt ReleaseNotes.txt || die
85 - use doc && java-pkg_dojavadoc doc/api
86 - use source && java-pkg_dosrc extras/edu src/edu
87 - use examples && java-pkg_doexamples examples
88 -}