Gentoo Archives: gentoo-commits

From: "Petteri Raty (betelgeuse)" <betelgeuse@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/commons-transaction: ChangeLog commons-transaction-1.0.1-r2.ebuild
Date: Sun, 03 Aug 2008 22:32:57
Message-Id: E1KPm8E-0006u7-4V@stork.gentoo.org
1 betelgeuse 08/08/03 22:32:54
2
3 Modified: ChangeLog
4 Added: commons-transaction-1.0.1-r2.ebuild
5 Log:
6 Migrate to transaction-api virtual.
7 (Portage version: 2.2_rc6/cvs/Linux 2.6.26-gentoo i686)
8
9 Revision Changes Path
10 1.6 dev-java/commons-transaction/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-transaction/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-transaction/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-transaction/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-transaction/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 5 Jan 2008 17:57:50 -0000 1.5
23 +++ ChangeLog 3 Aug 2008 22:32:53 -0000 1.6
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-java/commons-transaction
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-transaction/ChangeLog,v 1.5 2008/01/05 17:57:50 betelgeuse Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-transaction/ChangeLog,v 1.6 2008/08/03 22:32:53 betelgeuse Exp $
29 +
30 +*commons-transaction-1.0.1-r2 (03 Aug 2008)
31 +
32 + 03 Aug 2008; Petteri Räty <betelgeuse@g.o>
33 + +commons-transaction-1.0.1-r2.ebuild:
34 + Migrate to transaction-api virtual.
35
36 05 Jan 2008; Petteri Räty <betelgeuse@g.o> metadata.xml,
37 commons-transaction-1.0.1-r1.ebuild:
38
39
40
41 1.1 dev-java/commons-transaction/commons-transaction-1.0.1-r2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-transaction/commons-transaction-1.0.1-r2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-transaction/commons-transaction-1.0.1-r2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: commons-transaction-1.0.1-r2.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-java/commons-transaction/commons-transaction-1.0.1-r2.ebuild,v 1.1 2008/08/03 22:32:53 betelgeuse Exp $
51
52 JAVA_PKG_IUSE="doc source"
53
54 inherit java-pkg-2 java-ant-2
55
56 DESCRIPTION="A library of utility classes commonly used in transactional Java programming."
57 HOMEPAGE="http://jakarta.apache.org/commons/transaction/"
58 SRC_URI="mirror://apache/jakarta/commons/transaction/source/${P}-src.tgz"
59
60 LICENSE="Apache-2.0"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE=""
64
65 RDEPEND=">=virtual/jre-1.4
66 dev-java/commons-codec
67 java-virtuals/transaction-api
68 dev-java/log4j"
69 DEPEND=">=virtual/jdk-1.4
70 ${RDEPEND}"
71
72 S="${WORKDIR}"
73
74 src_unpack() {
75 unpack ${A}
76 rm -v *.jar || die
77 cd "${S}/lib"
78 rm -v *.jar || die
79 }
80
81 JAVA_ANT_REWRITE_CLASSPATH="true"
82 EANT_GENTOO_CLASSPATH="commons-codec,log4j,transaction-api"
83 EANT_DOC_TARGET="javadocs"
84
85 src_install() {
86 java-pkg_newjar dist/lib/${P}.jar ${PN}.jar
87
88 dodoc NOTICE.txt README.txt RELEASE-NOTES.txt || die
89 dohtml -r xdocs/* || die
90 use doc && java-pkg_dojavadoc build/doc/apidocs
91 use source && java-pkg_dosrc src/java/*
92 }