Gentoo Archives: gentoo-commits

From: "Ralph Sennhauser (sera)" <sera@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/ant-trax: ant-trax-1.8.4.ebuild ChangeLog
Date: Wed, 30 May 2012 08:33:05
Message-Id: 20120530083254.CC5552004B@flycatcher.gentoo.org
1 sera 12/05/30 08:32:54
2
3 Modified: ChangeLog
4 Added: ant-trax-1.8.4.ebuild
5 Log:
6 Security bump. CVE-2012-2098 #417909
7 src_postinst is pkg_postinst.
8 Add jdk dep for jar command.
9
10 (Portage version: 2.1.10.62/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.31 dev-java/ant-trax/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-trax/ChangeLog?rev=1.31&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-trax/ChangeLog?rev=1.31&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-trax/ChangeLog?r1=1.30&r2=1.31
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-trax/ChangeLog,v
22 retrieving revision 1.30
23 retrieving revision 1.31
24 diff -u -r1.30 -r1.31
25 --- ChangeLog 25 May 2012 11:22:46 -0000 1.30
26 +++ ChangeLog 30 May 2012 08:32:54 -0000 1.31
27 @@ -1,6 +1,13 @@
28 # ChangeLog for dev-java/ant-trax
29 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-trax/ChangeLog,v 1.30 2012/05/25 11:22:46 ago Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-trax/ChangeLog,v 1.31 2012/05/30 08:32:54 sera Exp $
32 +
33 +*ant-trax-1.8.4 (30 May 2012)
34 +
35 + 30 May 2012; Ralph Sennhauser <sera@g.o> +ant-trax-1.8.4.ebuild:
36 + Security bump. CVE-2012-2098 #417909
37 + src_postinst is pkg_postinst.
38 + Add jdk dep for jar command.
39
40 25 May 2012; Agostino Sarubbo <ago@g.o> ant-trax-1.8.2.ebuild:
41 Stable for amd64, wrt bug #417403
42
43
44
45 1.1 dev-java/ant-trax/ant-trax-1.8.4.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-trax/ant-trax-1.8.4.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-trax/ant-trax-1.8.4.ebuild?rev=1.1&content-type=text/plain
49
50 Index: ant-trax-1.8.4.ebuild
51 ===================================================================
52 # Copyright 1999-2012 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-java/ant-trax/ant-trax-1.8.4.ebuild,v 1.1 2012/05/30 08:32:54 sera Exp $
55
56 EAPI="4"
57
58 ANT_TASK_DEPNAME=""
59 ANT_TASK_DISABLE_VM_DEPS="true"
60
61 inherit ant-tasks
62
63 DESCRIPTION="Apache Ant .jar with optional tasks depending on XML transformer (Deprecated!)"
64 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
65 IUSE=""
66
67 DEPEND=">=virtual/jdk-1.4" #jar
68
69 src_compile() {
70 # the classes were moved to ant-core in 1.8.1, this is just for compatibility
71 mkdir -p build/lib/empty && cd build/lib/empty || die
72 jar -cf ../${PN}.jar .
73 }
74
75 pkg_postinst() {
76 elog "Upstream has removed ant-trax.jar as of 1.8.1 and moved the classes to ant.jar"
77 elog "This package thus installs an empty jar for compatibility"
78 elog "and will be removed once reverse dependencies are transitioned."
79 }