Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/istack-commons-runtime: ChangeLog istack-commons-runtime-20090620.ebuild
Date: Sun, 21 Jun 2009 02:47:11
Message-Id: E1MID5E-0001iw-1U@stork.gentoo.org
1 robbat2 09/06/21 02:47:04
2
3 Modified: ChangeLog
4 Added: istack-commons-runtime-20090620.ebuild
5 Log:
6 Add new istack-commons (upstream pom.xml tag is 1.1-SNAPSHOT) in a new slot, needed for jersey.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.9 dev-java/istack-commons-runtime/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/istack-commons-runtime/ChangeLog?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/istack-commons-runtime/ChangeLog?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/istack-commons-runtime/ChangeLog?r1=1.8&r2=1.9
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-java/istack-commons-runtime/ChangeLog,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -p -w -b -B -u -u -r1.8 -r1.9
22 --- ChangeLog 12 Oct 2008 21:22:10 -0000 1.8
23 +++ ChangeLog 21 Jun 2009 02:47:03 -0000 1.9
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-java/istack-commons-runtime
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-java/istack-commons-runtime/ChangeLog,v 1.8 2008/10/12 21:22:10 serkan Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-java/istack-commons-runtime/ChangeLog,v 1.9 2009/06/21 02:47:03 robbat2 Exp $
30 +
31 +*istack-commons-runtime-20090620 (21 Jun 2009)
32 +
33 + 21 Jun 2009; Robin H. Johnson <robbat2@g.o>
34 + +istack-commons-runtime-20090620.ebuild:
35 + Add new istack-commons (upstream pom.xml tag is 1.1-SNAPSHOT) in a new
36 + slot, needed for jersey.
37
38 *istack-commons-runtime-20070122-r1 (12 Oct 2008)
39
40
41
42
43 1.1 dev-java/istack-commons-runtime/istack-commons-runtime-20090620.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/istack-commons-runtime/istack-commons-runtime-20090620.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/istack-commons-runtime/istack-commons-runtime-20090620.ebuild?rev=1.1&content-type=text/plain
47
48 Index: istack-commons-runtime-20090620.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-java/istack-commons-runtime/istack-commons-runtime-20090620.ebuild,v 1.1 2009/06/21 02:47:03 robbat2 Exp $
53
54 JAVA_PKG_IUSE="source"
55 EAPI=2
56
57 inherit java-pkg-2 java-ant-2
58
59 DESCRIPTION="istack-commons"
60 HOMEPAGE="https://istack-commons.dev.java.net/"
61 PROJ_PN="istack-commons"
62 PROJ_P="${PROJ_PN}-${PV}"
63 SRC_FILE="${PROJ_P}-src.tar.bz2"
64 SRC_URI="mirror://gentoo/${SRC_FILE}"
65
66 LICENSE="CDDL"
67 SLOT="1.1"
68 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
69 IUSE=""
70
71 COMMON_DEP="java-virtuals/jaf"
72
73 DEPEND=">=virtual/jdk-1.5
74 ${COMMON_DEP}"
75 RDEPEND=">=virtual/jre-1.5
76 ${COMMON_DEP}"
77
78 S="${WORKDIR}/${PROJ_P}"
79
80 # Helper to generate the tarball :-)
81 # ( PN=istack-commons-runtime ; PV=20090620 ; P="${PN}-${PV}" ; . ${P}.ebuild ; src_tarball )
82 src_tarball() {
83 CVSROOT=':pserver:guest@××××××××××××.net:/cvs'
84 PROJ_PN='istack-commons'
85 cvs -d "${CVSROOT}" \
86 export -D $PV -d "${PROJ_P}" \
87 "${PROJ_PN}/${PROJ_PN}" && \
88 tar cvjf "${SRC_FILE}" \
89 --exclude '*.zip' \
90 --exclude '*.jar' \
91 "${PROJ_P}" \
92 && \
93 echo "New tarball located at ${SRC_FILE}"
94 }
95
96 java_prepare() {
97 java-ant_bsfix_one "${S}/build-common.xml"
98 java-pkg_jarfrom --into "${S}/runtime/lib" --virtual jaf
99 }
100
101 EANT_BUILD_XML="runtime/build.xml"
102
103 src_install() {
104 java-pkg_dojar runtime/build/istack-commons-runtime.jar
105 use source && java-pkg_dosrc runtime/src/*
106 }