Gentoo Archives: gentoo-commits

From: "Johann Schmitz (ercpe)" <ercpe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/xp: xp-0.5-r2.ebuild ChangeLog
Date: Sat, 21 Jun 2014 07:04:45
Message-Id: 20140621070440.E496B2004F@flycatcher.gentoo.org
1 ercpe 14/06/21 07:04:40
2
3 Modified: ChangeLog
4 Added: xp-0.5-r2.ebuild
5 Log:
6 EAPI bump; ebuild QA; fixed compilation error with jdk 1.7 (#514070)
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 77C501ED)
9
10 Revision Changes Path
11 1.12 dev-java/xp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xp/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xp/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xp/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-java/xp/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 16 Nov 2012 09:37:10 -0000 1.11
24 +++ ChangeLog 21 Jun 2014 07:04:40 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-java/xp
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-java/xp/ChangeLog,v 1.11 2012/11/16 09:37:10 ulm Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-java/xp/ChangeLog,v 1.12 2014/06/21 07:04:40 ercpe Exp $
31 +
32 +*xp-0.5-r2 (21 Jun 2014)
33 +
34 + 21 Jun 2014; Johann Schmitz <ercpe@g.o>
35 + +files/0.5-fix-jdk-1.7-enum.patch, +xp-0.5-r2.ebuild:
36 + EAPI bump; ebuild QA; fixed compilation error with jdk 1.7 (#514070)
37
38 16 Nov 2012; Ulrich Müller <ulm@g.o> xp-0.5-r1.ebuild:
39 Update LICENSE, this is exactly the MIT/X11 license, only with different
40 @@ -40,4 +46,3 @@
41 14 Nov 2004; Thomas Matthijs <axxo@g.o> +files/build.xml,
42 +xp-0.5.ebuild:
43 initial import, submitted by Jan Brinkmann <lucky@×××××××××××××.de>
44 -
45
46
47
48 1.1 dev-java/xp/xp-0.5-r2.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xp/xp-0.5-r2.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xp/xp-0.5-r2.ebuild?rev=1.1&content-type=text/plain
52
53 Index: xp-0.5-r2.ebuild
54 ===================================================================
55 # Copyright 1999-2014 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/dev-java/xp/xp-0.5-r2.ebuild,v 1.1 2014/06/21 07:04:40 ercpe Exp $
58
59 EAPI=5
60
61 JAVA_PKG_IUSE="doc source"
62
63 inherit java-pkg-2 java-ant-2
64
65 DESCRIPTION="XP is an XML 1.0 parser written in Java"
66 HOMEPAGE="http://www.jclark.com/xml/xp"
67 SRC_URI="ftp://ftp.jclark.com/pub/xml/xp.zip"
68
69 LICENSE="MIT"
70 SLOT="0"
71 KEYWORDS="~amd64 ~ppc ~x86"
72 IUSE=""
73
74 DEPEND=">=virtual/jdk-1.4
75 app-arch/unzip"
76 RDEPEND=">=virtual/jre-1.4"
77
78 S="${WORKDIR}"
79
80 java_prepare() {
81 rm -v xp.jar || die
82 cp "${FILESDIR}/build.xml" . || die
83 epatch "${FILESDIR}"/${PV}-*.patch
84 }
85
86 #premade javadocs
87 EANT_DOC_TARGET=""
88
89 src_install() {
90 java-pkg_dojar xp.jar
91 dodoc docs/copying.txt
92 #has index.html and javadocs here
93 use doc && java-pkg_dohtml -r docs/*
94 use source && java-pkg_dosrc com
95 }