Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
ali_bush 09/03/04 10:27:11
Modified: ChangeLog
Added: maven-bin-2.0.10.ebuild
Log:
Version Bump.
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Revision Changes Path
1.54 dev-java/maven-bin/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/maven-bin/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/maven-bin/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/maven-bin/ChangeLog?r1=1.53&r2=1.54
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/maven-bin/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog 25 Oct 2008 16:59:57 -0000 1.53
+++ ChangeLog 4 Mar 2009 10:27:11 -0000 1.54
@@ -1,6 +1,11 @@
# ChangeLog for dev-java/maven-bin
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/maven-bin/ChangeLog,v 1.53 2008/10/25 16:59:57 nixnut Exp $
+# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/maven-bin/ChangeLog,v 1.54 2009/03/04 10:27:11 ali_bush Exp $
+
+*maven-bin-2.0.10 (04 Mar 2009)
+
+ 04 Mar 2009; Alistair Bush <ali_bush@g.o> +maven-bin-2.0.10.ebuild:
+ Version Bump.
25 Oct 2008; nixnut <nixnut@g.o> maven-bin-2.0.9.ebuild:
Stable on ppc wrt bug 242982
1.1 dev-java/maven-bin/maven-bin-2.0.10.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/maven-bin/maven-bin-2.0.10.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/maven-bin/maven-bin-2.0.10.ebuild?rev=1.1&content-type=text/plain
Index: maven-bin-2.0.10.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/maven-bin/maven-bin-2.0.10.ebuild,v 1.1 2009/03/04 10:27:11 ali_bush Exp $
inherit java-pkg-2
MY_PN=apache-${PN%%-bin}
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Project Management and Comprehension Tool for Java"
SRC_URI="mirror://apache/maven/binaries/${MY_P}-bin.tar.bz2"
HOMEPAGE="http://maven.apache.org/"
LICENSE="Apache-2.0"
SLOT="2.0"
KEYWORDS="~amd64 ~ppc ~x86"
RDEPEND=">=virtual/jdk-1.4"
IUSE=""
S="${WORKDIR}/${MY_P}"
MAVEN=${PN}-${SLOT}
MAVEN_SHARE="/usr/share/${MAVEN}"
src_unpack() {
unpack ${A}
rm -v "${S}"/bin/*.bat || die
}
# TODO we should use jars from packages, instead of what is bundled
src_install() {
dodir "${MAVEN_SHARE}"
cp -Rp bin boot conf lib "${D}/${MAVEN_SHARE}" || die "failed to copy"
java-pkg_regjar "${D}/${MAVEN_SHARE}"/lib/*.jar
dodoc NOTICE.txt README.txt || die
dodir /usr/bin
dosym "${MAVEN_SHARE}/bin/mvn" /usr/bin/mvn
}
|
|