From: "Patrick Lauer" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/monit/
Date: Wed, 19 Feb 2025 14:50:56 +0000 (UTC) [thread overview]
Message-ID: <1739976654.ad1396e31cd0fb7391f85890c095b69ddc478d6d.patrick@gentoo> (raw)
commit: ad1396e31cd0fb7391f85890c095b69ddc478d6d
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 19 14:42:42 2025 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Wed Feb 19 14:50:54 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad1396e3
app-admin/monit: drop 5.33.0, 5.34.2
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>
app-admin/monit/Manifest | 2 --
app-admin/monit/monit-5.33.0.ebuild | 60 -------------------------------------
app-admin/monit/monit-5.34.2.ebuild | 59 ------------------------------------
3 files changed, 121 deletions(-)
diff --git a/app-admin/monit/Manifest b/app-admin/monit/Manifest
index 34d922c45455..f8b104642362 100644
--- a/app-admin/monit/Manifest
+++ b/app-admin/monit/Manifest
@@ -1,5 +1,3 @@
-DIST monit-5.33.0.tar.gz 1502487 BLAKE2B 770474f010067fe6388622e764a0d032495589dad24873dabd87ab0aa8edcff34d7a014a72c1c05aaa47104b12daf3dc542aa1d2d823d267814c9b5fd139e747 SHA512 f84edfc03a7386bb712c3d1e1e74801c5deea596f533bd898f342c8435e4b9f4225ec24a4daee11c4d23a5742e9f8a9c666ebaa1ba56f13842ac7214d1d70d4f
DIST monit-5.34.0.tar.gz 1486962 BLAKE2B e49e271f981d76b5d1f71818b7e6e1b1a2de56d8b1f856931c9abec053358dc6557e58fe3c37c5af9cf0f4e2c667ead5cff2ac96c6d8a2c70155cf301c6ffb44 SHA512 7e966b4437233a9be25c517620d77400bb865278975d62f6edc7d42a88d1780cbd233ce20f48da9a026b84a77d47796fb4f528409f064a99d08243ff3f3d2472
-DIST monit-5.34.2.tar.gz 1490776 BLAKE2B d4e5587299a44697d0c7d26b0fcc1a7fe4330693de188cf82301e4ab8fa8b2aea141f3aaa99bd1c598655ba993c616faf0a559dbb9c538d2d9421c6791f36880 SHA512 aa3579bd08099ef19b92dfbb172bbdbacaac1c29ecd08e3d201cb043c1423e16a8c79ee02999c32ba1954b4f069a3200b628ad3d4d224167945205e530a22359
DIST monit-5.34.3.tar.gz 1518592 BLAKE2B 444bc0918fefc59214f9513fa134d4abea9cb0bbfc3e71fa4c3d76d9134821a54e1949bf89a4dc483593862a629a03ac347df9c12f07476c1fcbf2c2e2d4d507 SHA512 77a3837dec02c2008a7d460f553da18691c1e42f2c0f1baa34b7e1547d0dccadd38cd67c827ea380e26c5e15a89e87439c26ae52b4266d944898ce25153a2fa5
DIST monit-5.34.4.tar.gz 1664299 BLAKE2B a61a63eab320cb39d9d90a877fa6d2f9c326e9629847c235cb44061ad69d9ae561d1c05c5ca0b50e263d3539ed39db64602741e88aa20697209c62bdb53f7516 SHA512 e9ff0c5e5823542fd60ff25ecd53850cc37c1b76c2108e9c09c4eeb137a1b7a844b4cbe0075eaf13a5d28991e1214d3ab08bf2902f375e3118af0b98fd879d98
diff --git a/app-admin/monit/monit-5.33.0.ebuild b/app-admin/monit/monit-5.33.0.ebuild
deleted file mode 100644
index 8c444b2a8595..000000000000
--- a/app-admin/monit/monit-5.33.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit bash-completion-r1 pam systemd
-
-DESCRIPTION="Monitoring and managing daemons or similar programs running on a Unix system"
-HOMEPAGE="http://mmonit.com/monit/"
-SRC_URI="http://mmonit.com/monit/dist/${P}.tar.gz"
-
-LICENSE="AGPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 ~riscv x86 ~amd64-linux"
-IUSE="ipv6 pam ssl"
-
-RDEPEND="sys-libs/zlib:=
- virtual/libcrypt:=
- pam? ( sys-libs/pam )
- ssl? ( dev-libs/openssl:0= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- app-alternatives/yacc
- app-alternatives/lex
-"
-
-src_prepare() {
- default
- sed -i -e '/^INSTALL_PROG/s/-s//' Makefile.in || die
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_with ipv6)
- $(use_with pam)
- $(use_with ssl)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
-
- insinto /etc/logrotate.d
- newins "${FILESDIR}"/monit.logrotate monit
-
- insinto /etc; insopts -m600; doins monitrc
- newinitd "${FILESDIR}"/monit.initd-5.0-r1 monit
- systemd_dounit system/startup/${PN}.service
-
- use pam && newpamd "${FILESDIR}"/${PN}.pamd ${PN}
-
- dobashcomp system/bash/monit
-}
-
-pkg_postinst() {
- elog "Sample configurations are available at:"
- elog "http://mmonit.com/monit/documentation/"
-}
diff --git a/app-admin/monit/monit-5.34.2.ebuild b/app-admin/monit/monit-5.34.2.ebuild
deleted file mode 100644
index b64d7bf782e9..000000000000
--- a/app-admin/monit/monit-5.34.2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit bash-completion-r1 pam systemd
-
-DESCRIPTION="Monitoring and managing daemons or similar programs running on a Unix system"
-HOMEPAGE="http://mmonit.com/monit/"
-SRC_URI="http://mmonit.com/monit/dist/${P}.tar.gz"
-
-LICENSE="AGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux"
-IUSE="pam ssl"
-
-RDEPEND="sys-libs/zlib:=
- virtual/libcrypt:=
- pam? ( sys-libs/pam )
- ssl? ( dev-libs/openssl:0= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- app-alternatives/yacc
- app-alternatives/lex
-"
-
-src_prepare() {
- default
- sed -i -e '/^INSTALL_PROG/s/-s//' Makefile.in || die
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_with pam)
- $(use_with ssl)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
-
- insinto /etc/logrotate.d
- newins "${FILESDIR}"/monit.logrotate monit
-
- insinto /etc; insopts -m600; doins monitrc
- newinitd "${FILESDIR}"/monit.initd-5.0-r1 monit
- systemd_dounit system/startup/${PN}.service
-
- use pam && newpamd "${FILESDIR}"/${PN}.pamd ${PN}
-
- dobashcomp system/bash/monit
-}
-
-pkg_postinst() {
- elog "Sample configurations are available at:"
- elog "http://mmonit.com/monit/documentation/"
-}
next reply other threads:[~2025-02-19 14:51 UTC|newest]
Thread overview: 95+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-19 14:50 Patrick Lauer [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-08 16:42 [gentoo-commits] repo/gentoo:master commit in: app-admin/monit/ Arthur Zamarin
2025-03-08 15:33 Sam James
2025-03-08 14:34 Jakov Smolić
2025-02-19 14:50 Patrick Lauer
2024-12-28 11:03 Patrick Lauer
2024-11-01 8:05 Patrick Lauer
2024-10-27 4:05 Sam James
2024-10-27 2:53 Sam James
2024-10-27 2:53 Sam James
2024-07-11 4:41 Patrick Lauer
2024-07-11 4:41 Patrick Lauer
2024-07-11 4:41 Patrick Lauer
2024-07-10 6:19 Sam James
2024-07-10 6:19 Sam James
2024-07-10 6:19 Sam James
2023-03-14 15:48 罗百科
2022-03-24 17:21 Lars Wendler
2022-03-24 17:21 Lars Wendler
2022-02-11 7:01 Lars Wendler
2022-02-11 7:00 Lars Wendler
2022-01-13 18:40 Arthur Zamarin
2022-01-13 10:36 罗百科
2022-01-13 10:04 Jakov Smolić
2022-01-13 10:04 Jakov Smolić
2022-01-13 8:37 Lars Wendler
2021-12-21 3:39 Yixun Lan
2021-10-11 23:28 Sam James
2021-09-12 17:38 Sam James
2021-08-25 7:48 Lars Wendler
2021-08-25 7:48 Lars Wendler
2021-08-25 7:48 Lars Wendler
2021-07-30 18:15 Lars Wendler
2021-07-30 18:15 Lars Wendler
2021-04-30 16:00 Mikle Kolyada
2021-03-31 2:23 Sam James
2021-03-30 18:14 Sam James
2021-03-30 16:26 Thomas Deutschmann
2021-03-30 9:32 Lars Wendler
2021-03-30 9:32 Lars Wendler
2021-01-18 11:56 Lars Wendler
2021-01-18 11:56 Lars Wendler
2020-11-12 0:35 Thomas Deutschmann
2020-11-04 7:58 Sergei Trofimovich
2020-11-04 0:58 Sam James
2020-11-03 11:34 Sam James
2020-10-26 23:47 Sergei Trofimovich
2020-10-25 23:08 Thomas Deutschmann
2020-10-25 19:12 Lars Wendler
2020-06-30 7:21 Lars Wendler
2019-10-12 21:34 Mikle Kolyada
2019-07-08 6:58 Lars Wendler
2019-04-09 5:21 Lars Wendler
2019-03-16 19:39 Sergei Trofimovich
2019-03-10 13:44 Mikle Kolyada
2019-03-09 19:18 Thomas Deutschmann
2019-03-05 9:01 Lars Wendler
2019-03-05 9:01 Lars Wendler
2018-05-31 11:53 Lars Wendler
2018-05-30 8:22 Lars Wendler
2018-05-30 8:22 Lars Wendler
2018-05-29 18:04 Mikle Kolyada
2018-05-29 11:17 Thomas Deutschmann
2017-11-22 15:25 Lars Wendler
2017-11-22 15:25 Lars Wendler
2017-11-22 15:25 Lars Wendler
2017-11-07 19:33 Lars Wendler
2017-10-15 21:43 Thomas Deutschmann
2017-10-03 8:25 Sergei Trofimovich
2017-09-25 22:21 Lars Wendler
2017-09-25 22:21 Lars Wendler
2017-06-13 7:32 Lars Wendler
2017-06-13 7:32 Lars Wendler
2017-04-20 8:05 Lars Wendler
2017-03-08 9:47 Lars Wendler
2017-02-01 9:13 Aaron Bauman
2016-11-04 8:24 Agostino Sarubbo
2016-11-04 8:21 Agostino Sarubbo
2016-10-22 21:54 Lars Wendler
2016-10-22 21:54 Lars Wendler
2016-08-08 18:09 Lars Wendler
2016-08-08 18:09 Lars Wendler
2016-05-26 18:38 Lars Wendler
2016-05-26 18:38 Lars Wendler
2016-03-21 21:36 Anthony G. Basile
2016-03-07 19:40 Lars Wendler
2016-03-04 7:57 Lars Wendler
2016-03-04 7:57 Lars Wendler
2016-02-07 14:45 Lars Wendler
2015-12-26 10:36 Agostino Sarubbo
2015-12-26 1:08 Anthony G. Basile
2015-12-25 16:20 Agostino Sarubbo
2015-12-25 15:13 Agostino Sarubbo
2015-10-23 5:33 Lars Wendler
2015-10-23 5:33 Lars Wendler
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=1739976654.ad1396e31cd0fb7391f85890c095b69ddc478d6d.patrick@gentoo \
--to=patrick@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