Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-daemon/
Date: Mon, 30 May 2022 08:44:18
Message-Id: 1653900033.79208fe716eddf58b20f4f37695a44f2ba746f7b.flow@gentoo
1 commit: 79208fe716eddf58b20f4f37695a44f2ba746f7b
2 Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
3 AuthorDate: Tue May 24 08:45:36 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Mon May 30 08:40:33 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79208fe7
7
8 dev-java/commons-daemon: add 1.3.1
9
10 Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
11 Closes: https://github.com/gentoo/gentoo/pull/25617
12 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
13
14 dev-java/commons-daemon/Manifest | 1 +
15 .../commons-daemon/commons-daemon-1.3.1.ebuild | 59 ++++++++++++++++++++++
16 2 files changed, 60 insertions(+)
17
18 diff --git a/dev-java/commons-daemon/Manifest b/dev-java/commons-daemon/Manifest
19 index 49470d61307c..b9b13542b265 100644
20 --- a/dev-java/commons-daemon/Manifest
21 +++ b/dev-java/commons-daemon/Manifest
22 @@ -1 +1,2 @@
23 DIST commons-daemon-1.2.4-src.tar.gz 281929 BLAKE2B 877f1c31024a2f3e4796abdd11059bd636444f5c856b998a39761fb0b221467e986586fef43463a4d01b4d4f7a562f9f8c658b94a124cd356b0a70cc185c0030 SHA512 36e9cb3153ca763bfaaa71575a1584610254f1ce4c0f666ff7bbc628311405430536413525c9c777e4364eea62a247fb084750d837e84a62d9fce92a61909d56
24 +DIST commons-daemon-1.3.1-src.tar.gz 287642 BLAKE2B 02e85a5534af7f804a0374789506ee25ee8313987c68153974aa938b983745ae44d579f17deb362764d1a03b04bc552115bd69ef28b4f7d3bbb06f3bb4199814 SHA512 b810ac152f8296d980a4fb3786eff9d147b234dc2377df5fe1bded0824c694c9e82a7ef50b0a63c3e6432dfc4684a3aa2ce8d583aacb740bd4664c3dfb8b8f16
25
26 diff --git a/dev-java/commons-daemon/commons-daemon-1.3.1.ebuild b/dev-java/commons-daemon/commons-daemon-1.3.1.ebuild
27 new file mode 100644
28 index 000000000000..7822d682f36a
29 --- /dev/null
30 +++ b/dev-java/commons-daemon/commons-daemon-1.3.1.ebuild
31 @@ -0,0 +1,59 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +# Skeleton command:
36 +# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri mirror://apache/commons/daemon/source/commons-daemon-1.2.4-src.tar.gz --slot 0 --keywords "~amd64 ~ppc64 ~x86" --ebuild commons-daemon-1.2.4.ebuild
37 +
38 +EAPI=8
39 +
40 +JAVA_PKG_IUSE="doc source"
41 +MAVEN_ID="commons-daemon:commons-daemon:1.3.1"
42 +# JAVA_TESTING_FRAMEWORKS="junit-4"
43 +
44 +inherit java-pkg-2 java-pkg-simple toolchain-funcs
45 +
46 +DESCRIPTION="Tools to allow Java programs to run as UNIX daemons"
47 +HOMEPAGE="https://commons.apache.org/proper/commons-daemon/"
48 +SRC_URI="mirror://apache/commons/daemon/source/${P}-src.tar.gz"
49 +
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~ppc64 ~x86"
53 +
54 +DEPEND="
55 + >=virtual/jdk-1.8:*
56 +"
57 +
58 +RDEPEND="
59 + >=virtual/jre-1.8:*
60 +"
61 +
62 +DOCS=( {CONTRIBUTING,README}.md {HOWTO-RELEASE,NOTICE,RELEASE-NOTES}.txt )
63 +HTML_DOCS=( PROPOSAL.html )
64 +
65 +S="${WORKDIR}/${P}-src"
66 +
67 +JAVA_ENCODING="iso-8859-1"
68 +
69 +JAVA_SRC_DIR="src/main/java"
70 +
71 +# There is only org/apache/commons/daemon/SimpleDaemon.java
72 +# which is not even run upstream ( mvn test ).
73 +# JAVA_TEST_GENTOO_CLASSPATH="junit-4"
74 +# JAVA_TEST_SRC_DIR="src/test/java"
75 +
76 +src_compile() {
77 + java-pkg-simple_src_compile
78 +
79 + pushd src/native/unix || die
80 + ./configure
81 + emake AR="$(tc-getAR)"
82 + popd
83 +}
84 +
85 +src_install() {
86 + default # https://bugs.gentoo.org/789582
87 + java-pkg-simple_src_install
88 +
89 + dobin src/native/unix/jsvc
90 +}