Gentoo Archives: gentoo-commits

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