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/commons-beanutils: ChangeLog commons-beanutils-1.8.3.ebuild
Date: Wed, 26 Jan 2011 14:35:48
Message-Id: 20110126143539.3EB1320054@flycatcher.gentoo.org
1 fordfrog 11/01/26 14:35:39
2
3 Modified: ChangeLog
4 Added: commons-beanutils-1.8.3.ebuild
5 Log:
6 dev-java/commons-beanutils: version bump
7
8 (Portage version: 2.1.9.35/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.53 dev-java/commons-beanutils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-beanutils/ChangeLog?rev=1.53&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-beanutils/ChangeLog?rev=1.53&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-beanutils/ChangeLog?r1=1.52&r2=1.53
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-beanutils/ChangeLog,v
20 retrieving revision 1.52
21 retrieving revision 1.53
22 diff -u -r1.52 -r1.53
23 --- ChangeLog 16 Feb 2010 14:43:30 -0000 1.52
24 +++ ChangeLog 26 Jan 2011 14:35:39 -0000 1.53
25 @@ -1,6 +1,14 @@
26 # ChangeLog for dev-java/commons-beanutils
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-beanutils/ChangeLog,v 1.52 2010/02/16 14:43:30 caster Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-beanutils/ChangeLog,v 1.53 2011/01/26 14:35:39 fordfrog Exp $
31 +
32 +*commons-beanutils-1.8.3 (26 Jan 2011)
33 +
34 + 26 Jan 2011; Miroslav Ć ulc <fordfrog@g.o>
35 + +commons-beanutils-1.8.3.ebuild:
36 + Version bump. Cleaned up obsolete restrictions from dependencies.
37 + MemoryLeakTestCase is enabled again as it works for me, though it takes
38 + around 10 minutes to finish.
39
40 16 Feb 2010; Vlastimil Babka <caster@g.o>
41 -commons-beanutils-1.7.0-r2.ebuild, -commons-beanutils-1.7.0-r3.ebuild:
42
43
44
45 1.1 dev-java/commons-beanutils/commons-beanutils-1.8.3.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-beanutils/commons-beanutils-1.8.3.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-beanutils/commons-beanutils-1.8.3.ebuild?rev=1.1&content-type=text/plain
49
50 Index: commons-beanutils-1.8.3.ebuild
51 ===================================================================
52 # Copyright 1999-2011 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-java/commons-beanutils/commons-beanutils-1.8.3.ebuild,v 1.1 2011/01/26 14:35:39 fordfrog Exp $
55
56 EAPI="4"
57 JAVA_PKG_IUSE="doc source test"
58
59 inherit java-pkg-2 java-ant-2
60
61 DESCRIPTION="Provides easy-to-use wrappers around Reflection and Introspection APIs"
62 HOMEPAGE="http://commons.apache.org/beanutils/"
63 SRC_URI="mirror://apache/commons/beanutils/source/${P}-src.tar.gz"
64
65 LICENSE="Apache-2.0"
66 SLOT="1.7"
67 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
68 IUSE=""
69
70 COMMON_DEP="
71 dev-java/commons-collections:0
72 dev-java/commons-logging:0"
73 RDEPEND=">=virtual/jre-1.5
74 ${COMMON_DEP}"
75 DEPEND=">=virtual/jdk-1.5
76 test? (
77 dev-java/ant-junit
78 dev-java/junit:0
79 dev-java/commons-collections[test-framework]
80 )
81 ${COMMON_DEP}"
82
83 S="${WORKDIR}/${P}-src"
84
85 java_prepare() {
86 rm -vr src/main/java/org/apache/commons/collections/ || die
87 # from pom.xml:
88 # <!-- This test case is known to fail, and there isn't any proposed fix
89 # - so we will just exclude it until someone comes up with a solution.
90 # -->
91 JAVA_ANT_CLASSPATH_TAGS="javac java" java-ant_rewrite-classpath
92 }
93
94 EANT_GENTOO_CLASSPATH="commons-logging,commons-collections"
95
96 src_test() {
97 EANT_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},junit"
98 ANT_TASKS="ant-junit" eant \
99 -Dcommons-collections.jar=$(java-pkg_getjar commons-collections commons-collections.jar) \
100 -Dcommons-collections-testframework.jar=$(java-pkg_getjar commons-collections commons-collections-testframework.jar) \
101 -Dcommons-logging.jar=$(java-pkg_getjar commons-logging commons-logging.jar) \
102 test
103 }
104
105 src_install() {
106 java-pkg_newjar dist/${P}.jar
107 java-pkg_newjar dist/${PN}-core-${PV}.jar ${PN}-core.jar
108 java-pkg_newjar dist/${PN}-bean-collections-${PV}.jar ${PN}-bean-collections.jar
109
110 dodoc README.txt RELEASE-NOTES.txt || die
111
112 use doc && java-pkg_dojavadoc dist/docs/api
113 use source && java-pkg_dosrc src/main/java/org
114 }