Gentoo Archives: gentoo-commits

From: "Krzysztof Pawlik (nelchael)" <nelchael@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/tomcat-servlet-api: ChangeLog tomcat-servlet-api-6.0.29.ebuild
Date: Tue, 31 Aug 2010 15:12:23
Message-Id: 20100831151217.EC68220051@flycatcher.gentoo.org
1 nelchael 10/08/31 15:12:17
2
3 Modified: ChangeLog
4 Added: tomcat-servlet-api-6.0.29.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.80 dev-java/tomcat-servlet-api/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-servlet-api/ChangeLog?rev=1.80&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-servlet-api/ChangeLog?rev=1.80&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-servlet-api/ChangeLog?r1=1.79&r2=1.80
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-java/tomcat-servlet-api/ChangeLog,v
19 retrieving revision 1.79
20 retrieving revision 1.80
21 diff -u -r1.79 -r1.80
22 --- ChangeLog 10 Jul 2010 18:48:52 -0000 1.79
23 +++ ChangeLog 31 Aug 2010 15:12:17 -0000 1.80
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-java/tomcat-servlet-api
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-servlet-api/ChangeLog,v 1.79 2010/07/10 18:48:52 betelgeuse Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-servlet-api/ChangeLog,v 1.80 2010/08/31 15:12:17 nelchael Exp $
29 +
30 +*tomcat-servlet-api-6.0.29 (31 Aug 2010)
31 +
32 + 31 Aug 2010; Krzysztof Pawlik <nelchael@g.o>
33 + +tomcat-servlet-api-6.0.29.ebuild:
34 + Version bump.
35
36 *tomcat-servlet-api-6.0.28 (10 Jul 2010)
37
38
39
40
41 1.1 dev-java/tomcat-servlet-api/tomcat-servlet-api-6.0.29.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-servlet-api/tomcat-servlet-api-6.0.29.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-servlet-api/tomcat-servlet-api-6.0.29.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tomcat-servlet-api-6.0.29.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-servlet-api/tomcat-servlet-api-6.0.29.ebuild,v 1.1 2010/08/31 15:12:17 nelchael Exp $
51
52 EAPI="2"
53 JAVA_PKG_IUSE="source"
54
55 inherit eutils java-pkg-2 java-ant-2
56
57 MY_A="apache-${P}-src"
58 MY_P="${MY_A/-servlet-api/}"
59 DESCRIPTION="Tomcat's Servlet API 2.5/JSP API 2.1 implementation"
60 HOMEPAGE="http://tomcat.apache.org/"
61 SRC_URI="mirror://apache/tomcat/tomcat-6/v${PV/_/-}/src/${MY_P}.tar.gz"
62
63 LICENSE="Apache-2.0"
64 SLOT="2.5"
65 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
66 IUSE=""
67
68 DEPEND=">=virtual/jdk-1.5"
69 RDEPEND=">=virtual/jre-1.5"
70
71 S="${WORKDIR}/${MY_P}/"
72
73 java_prepare() {
74 cp "${FILESDIR}/${SLOT}-build.xml" build.xml || die "Could not replace build.xml"
75 rm */*/build.xml
76 }
77
78 src_install() {
79 java-pkg_dojar "${S}"/output/build/lib/*.jar
80 use source && java-pkg_dosrc java/javax/servlet/
81 }