Gentoo Archives: gentoo-commits

From: "Tom Wijsman (tomwij)" <tomwij@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/ant-nodeps: ant-nodeps-1.9.2.ebuild ChangeLog
Date: Wed, 28 Aug 2013 22:21:44
Message-Id: 20130828222140.40BDE2004C@flycatcher.gentoo.org
1 tomwij 13/08/28 22:21:40
2
3 Modified: ChangeLog
4 Added: ant-nodeps-1.9.2.ebuild
5 Log:
6 Version bump to 1.9.2. Fixes security bug #476958.
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
9
10 Revision Changes Path
11 1.42 dev-java/ant-nodeps/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-nodeps/ChangeLog?rev=1.42&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-nodeps/ChangeLog?rev=1.42&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-nodeps/ChangeLog?r1=1.41&r2=1.42
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-nodeps/ChangeLog,v
20 retrieving revision 1.41
21 retrieving revision 1.42
22 diff -u -r1.41 -r1.42
23 --- ChangeLog 5 Jul 2013 14:22:09 -0000 1.41
24 +++ ChangeLog 28 Aug 2013 22:21:40 -0000 1.42
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-java/ant-nodeps
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-nodeps/ChangeLog,v 1.41 2013/07/05 14:22:09 tomwij Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-nodeps/ChangeLog,v 1.42 2013/08/28 22:21:40 tomwij Exp $
30 +
31 +*ant-nodeps-1.9.2 (28 Aug 2013)
32 +
33 + 28 Aug 2013; Tom Wijsman <TomWij@g.o> +ant-nodeps-1.9.2.ebuild:
34 + Version bump to 1.9.2. Fixes security bug #476958.
35
36 *ant-nodeps-1.9.1 (05 Jul 2013)
37
38
39
40
41 1.1 dev-java/ant-nodeps/ant-nodeps-1.9.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-nodeps/ant-nodeps-1.9.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-nodeps/ant-nodeps-1.9.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ant-nodeps-1.9.2.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-java/ant-nodeps/ant-nodeps-1.9.2.ebuild,v 1.1 2013/08/28 22:21:40 tomwij Exp $
51
52 EAPI="5"
53
54 ANT_TASK_DEPNAME=""
55 ANT_TASK_DISABLE_VM_DEPS="true"
56
57 inherit ant-tasks
58
59 DESCRIPTION="Formerly Ant's optional tasks w/o external deps, now compat empty jar"
60 KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
61
62 # Dependency needed for jar.
63 DEPEND=">=virtual/jdk-1.4"
64
65 src_compile() {
66 # The classes were moved to ant-core in 1.8.2, this is just for compatibility.
67 mkdir -p build/lib/empty && cd build/lib/empty || die
68 jar -cf ../${PN}.jar . || die
69 }
70
71 pkg_postinst() {
72 elog "Upstream has removed ant-nodeps.jar as of 1.8.2 and moved the classes to ant.jar"
73 elog "This package thus installs an empty jar for compatibility"
74 elog "and will be removed once reverse dependencies are transitioned."
75 }