Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-daemon/
Date: Sat, 30 Apr 2016 20:34:20
Message-Id: 1462047438.5c13336c0c23554f49c5b38d4fd305c0722508a7.monsieurp@gentoo
1 commit: 5c13336c0c23554f49c5b38d4fd305c0722508a7
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 30 20:17:18 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 30 20:17:18 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c13336c
7
8 dev-java/commons-daemon: Stable for amd64. Retroactively mark stable for the remaining arches using the ALLARCHES policy.
9
10 Package-Manager: portage-2.2.26
11
12 dev-java/commons-daemon/commons-daemon-1.0.15.ebuild | 20 ++++++++++++--------
13 1 file changed, 12 insertions(+), 8 deletions(-)
14
15 diff --git a/dev-java/commons-daemon/commons-daemon-1.0.15.ebuild b/dev-java/commons-daemon/commons-daemon-1.0.15.ebuild
16 index 235c8f0..21a6c2c 100644
17 --- a/dev-java/commons-daemon/commons-daemon-1.0.15.ebuild
18 +++ b/dev-java/commons-daemon/commons-daemon-1.0.15.ebuild
19 @@ -2,12 +2,13 @@
20 # Distributed under the terms of the GNU General Public License v2
21 # $Id$
22
23 -EAPI="5"
24 +EAPI=5
25
26 WANT_AUTOCONF=2.5
27 +
28 JAVA_PKG_IUSE="doc examples source"
29
30 -inherit eutils autotools java-pkg-2 java-ant-2
31 +inherit autotools java-pkg-2 java-ant-2
32
33 DESCRIPTION="Tools to allow Java programs to run as UNIX daemons"
34 SRC_URI="mirror://apache/commons/daemon/source/${P}-src.tar.gz"
35 @@ -15,16 +16,19 @@ HOMEPAGE="http://commons.apache.org/daemon/"
36
37 LICENSE="Apache-2.0"
38 SLOT="0"
39 -KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
40 +KEYWORDS="amd64 ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
41 IUSE="kernel_linux"
42
43 -COMMON_DEP="kernel_linux? ( sys-libs/libcap )"
44 +CDEPEND="kernel_linux? ( sys-libs/libcap )"
45
46 -DEPEND="${COMMON_DEP}
47 - >=virtual/jdk-1.4"
48 +DEPEND="
49 + ${CDEPEND}
50 + >=virtual/jdk-1.6
51 + source? ( app-arch/zip )"
52
53 -RDEPEND="${COMMON_DEP}
54 - >=virtual/jre-1.4"
55 +RDEPEND="
56 + ${CDEPEND}
57 + >=virtual/jre-1.6"
58
59 S="${WORKDIR}/${P}-src"