From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-daemon/
Date: Mon, 14 Oct 2024 09:22:33 +0000 (UTC) [thread overview]
Message-ID: <1728897727.fa5a5ceb226fb8c61daf2f4e3c7b0d848e8ea194.fordfrog@gentoo> (raw)
commit: fa5a5ceb226fb8c61daf2f4e3c7b0d848e8ea194
Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Sun Oct 13 21:06:13 2024 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Oct 14 09:22:07 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa5a5ceb
dev-java/commons-daemon: drop 1.3.4
Closes: https://bugs.gentoo.org/918912
Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/38836/commits/3748c796569d0e293c98d5defbd39222aab49ef7
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
dev-java/commons-daemon/Manifest | 2 -
.../commons-daemon/commons-daemon-1.3.4.ebuild | 55 ----------------------
2 files changed, 57 deletions(-)
diff --git a/dev-java/commons-daemon/Manifest b/dev-java/commons-daemon/Manifest
index 46a5084819ff..7b277908e194 100644
--- a/dev-java/commons-daemon/Manifest
+++ b/dev-java/commons-daemon/Manifest
@@ -1,4 +1,2 @@
-DIST commons-daemon-1.3.4-src.tar.gz 290834 BLAKE2B be57fbf89cad23fb4108e97b8e75d8380ff5b286068edfed65cd3539971375949ec80fd5aeece50a6498642f60e26498eb37ea3778f503d7498662ae79ecd14e SHA512 bb36d88bc21a5777245012b2a73ee0e764b85715731f54cc4ff09343e95ccb18fc6c68b3ae9c680fb45a60c7ef5ed0f9e40991c2c03246dd7f8dd65031eddf24
-DIST commons-daemon-1.3.4-src.tar.gz.asc 873 BLAKE2B f7886e67e2cfb0211d3271d79c251d07e5b0d7f7819566891e838619021ab9e3f468e3647f2f901d41a6d00f12b30adfa2d16f828ac5ce526666caab30ab8001 SHA512 eae6b01844bf5c49a95a60f4b59e0b989488728edb209252779f83e33ea3eeb53900a5fdeee5d953b231b241ba14a27c77967bdd3fe5acf2d9c6da50c225c79b
DIST commons-daemon-1.4.0-src.tar.gz 291610 BLAKE2B 3a13a00e209ad501a34ebef32a5e5bf9bd25de309434249d81a5ba96bad2e922a6cdae42624a7a8da64555838c9bb12cb54de4da59193f16d91f4869ff72a9eb SHA512 285f33ce36e2591f49b6067da16612ec1b49b23a8637d077618aefaae4452993dc2a31660665551ea761857390d940100e162e205fe7c0fad9c72374f2d15bb8
DIST commons-daemon-1.4.0-src.tar.gz.asc 833 BLAKE2B ac97dd01c02b4a52e2c3cdf4047504cc10b7b4bbfe70f86d442e301af48520c51513f2dae37eaa08648ac9a29e6212abb153b2e36cf85baf03245d8e528166b8 SHA512 8144068c97e76ca358850455d7b867ae106f04083223b43229cc1e05f21c99150c6734174e1b77e89eee93f94ec198831df57f3f53217f3416584509ca289fe1
diff --git a/dev-java/commons-daemon/commons-daemon-1.3.4.ebuild b/dev-java/commons-daemon/commons-daemon-1.3.4.ebuild
deleted file mode 100644
index fcc845ad0c9a..000000000000
--- a/dev-java/commons-daemon/commons-daemon-1.3.4.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-JAVA_PKG_IUSE="doc source test"
-MAVEN_ID="commons-daemon:commons-daemon:${PV}"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit java-pkg-2 java-pkg-simple toolchain-funcs verify-sig
-
-DESCRIPTION="Tools to allow Java programs to run as UNIX daemons"
-HOMEPAGE="https://commons.apache.org/proper/commons-daemon/"
-SRC_URI="mirror://apache/commons/daemon/source/${P}-src.tar.gz
- verify-sig? ( https://downloads.apache.org/commons/daemon/source/${P}-src.tar.gz.asc )"
-S="${WORKDIR}/${P}-src"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ppc64 x86"
-RESTRICT="test" #839681
-
-VERIFY_SIG_OPENPGP_KEY_PATH="/usr/share/openpgp-keys/commons.apache.org.asc"
-BDEPEND="verify-sig? ( sec-keys/openpgp-keys-apache-commons )"
-DEPEND=">=virtual/jdk-1.8:*
- test? ( dev-java/junit:5[migration-support] )"
-RDEPEND=">=virtual/jre-1.8:*"
-
-DOCS=( {CONTRIBUTING,README}.md {HOWTO-RELEASE,NOTICE,RELEASE-NOTES}.txt )
-HTML_DOCS=( PROPOSAL.html )
-PATCHES=( "${FILESDIR}/commons-daemon-1.3.1-Make.patch" )
-
-JAVA_ENCODING="iso-8859-1"
-JAVA_SRC_DIR="src/main/java"
-JAVA_TEST_GENTOO_CLASSPATH="junit-4 junit-5"
-JAVA_TEST_SRC_DIR="src/test/java"
-
-src_prepare() {
- default #780585
- java-pkg-2_src_prepare
-}
-
-src_compile() {
- java-pkg-simple_src_compile
-
- pushd src/native/unix || die
- ./configure
- emake AR="$(tc-getAR)"
- popd
-}
-
-src_install() {
- java-pkg-simple_src_install
- dobin src/native/unix/jsvc
-}
next reply other threads:[~2024-10-14 9:22 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-14 9:22 Miroslav Šulc [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-11 9:56 [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-daemon/ Arthur Zamarin
2024-10-11 9:56 Arthur Zamarin
2024-10-11 9:56 Arthur Zamarin
2024-09-11 7:50 Miroslav Šulc
2023-11-30 10:02 Miroslav Šulc
2023-11-29 11:04 Michał Górny
2023-11-24 9:32 Sam James
2023-11-24 9:32 Sam James
2023-10-25 8:21 Miroslav Šulc
2023-01-27 8:36 Miroslav Šulc
2023-01-26 21:49 Sam James
2023-01-26 21:49 Sam James
2023-01-26 20:55 Arthur Zamarin
2022-12-27 19:52 Florian Schmaus
2022-12-27 19:52 Florian Schmaus
2022-07-01 10:03 Sam James
2022-07-01 9:06 Sam James
2022-07-01 9:06 Sam James
2022-07-01 7:04 Arthur Zamarin
2022-05-30 8:44 Florian Schmaus
2022-03-12 17:14 Miroslav Šulc
2022-03-12 15:18 Arthur Zamarin
2022-03-10 10:25 Jakov Smolić
2022-03-10 10:15 Jakov Smolić
2022-03-10 10:10 Jakov Smolić
2022-02-19 5:17 Sam James
2022-02-18 8:46 Miroslav Šulc
2018-08-31 22:12 Patrice Clement
2018-03-01 8:39 Michał Górny
2018-01-05 22:07 David Seifert
2016-04-30 20:34 Patrice Clement
2016-04-30 20:34 Patrice Clement
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1728897727.fa5a5ceb226fb8c61daf2f4e3c7b0d848e8ea194.fordfrog@gentoo \
--to=fordfrog@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox