From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/monit/
Date: Mon, 18 Jan 2021 11:56:02 +0000 (UTC) [thread overview]
Message-ID: <1610970960.3e85eb9a786a79658e0abdb357f92f06ebf2a154.polynomial-c@gentoo> (raw)
commit: 3e85eb9a786a79658e0abdb357f92f06ebf2a154
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 18 11:04:23 2021 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Jan 18 11:56:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e85eb9a
app-admin/monit: Removed old
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
app-admin/monit/Manifest | 3 --
app-admin/monit/monit-5.25.3.ebuild | 59 -------------------------------------
app-admin/monit/monit-5.26.0.ebuild | 59 -------------------------------------
app-admin/monit/monit-5.27.0.ebuild | 57 -----------------------------------
4 files changed, 178 deletions(-)
diff --git a/app-admin/monit/Manifest b/app-admin/monit/Manifest
index 1e7cc414374..84646233f13 100644
--- a/app-admin/monit/Manifest
+++ b/app-admin/monit/Manifest
@@ -1,5 +1,2 @@
-DIST monit-5.25.3.tar.gz 1355925 BLAKE2B f1c4775ad82ccea262fa5d9c3c9396e634cb3742c59ff9d8b3c87552501ee749a829932570b8d2836fe77a14fb42fea2ee42cab1aa355ca09df6dccda9aa5f51 SHA512 9030b8e6a02eeaf497382f14f7cf855a96599ab060130f077208edd5db35fee1b74f9166df4deff87b4a1954c8d4fff83b5465166938a3f8aea8d4d4c0371e90
-DIST monit-5.26.0.tar.gz 1371327 BLAKE2B eb130c36ad9df0b042fc241fde540ea12945ff1d63d14925da8435e88586141f5ebc116ad5a540a4fbfa507e0101d4cf4ef8a4435fd638f39d5472ba0d6e12d5 SHA512 ae5bfc9f2e8cf2d2efa7a121f3bb865dc5b66b647e23e005349799f3f4384dfa1534ed88d0767ca41dac4cea2674fb82cfb51098129d350b470143df548c6900
-DIST monit-5.27.0.tar.gz 1455341 BLAKE2B a2eeab81dacf506cdb336ba5e116f18d947b206ab791b4ee9f3ec54dcbbb973c31074f5a46bf32397fa4306cc6b11eca80b4c92770ae412baf1b610483e8259f SHA512 34461572ad809917f13672613bd37546ec2b5ebaf5a93a52d669c7c67b102a592ed5e88012feb53c9fe310ea9437a169f8822eac06d7b6f42a1801f710365785
DIST monit-5.27.1.tar.gz 1459360 BLAKE2B ef8030112c401ab08653692c702f2ec6d34c11605c2f6fbb5310f8e08d7fb238cf1b2d0271358b7160e05ad8dae3931d458329c422ae826681c11fe46fac01b4 SHA512 1e71a529a920a37576242a99fe8067d9b88f64136b111c152527aca4aa5d3cac3c32c1f58a793a56361b8e286f025bfb1f063f4c38d25ebafc7927fbf9170673
DIST monit-5.27.2.tar.gz 1463790 BLAKE2B f00733261fd941f47ec04e63ed9e3617991cd8a069a14e59941e85d3a342537892019864d4716f821428adb57979aa270fcba9d57f573d49e897dfcd77cc133a SHA512 a45cbbf0905b165767e21d66103b460ea48948824d043881aba3de752e34a67bfb3b97f75153e3672d87a34a702d66ceee28160110654aa52fb82c668aa135b9
diff --git a/app-admin/monit/monit-5.25.3.ebuild b/app-admin/monit/monit-5.25.3.ebuild
deleted file mode 100644
index f64d0e3989d..00000000000
--- a/app-admin/monit/monit-5.25.3.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-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 ppc ~ppc64 x86 ~amd64-linux"
-IUSE="ipv6 libressl pam ssl"
-
-RDEPEND="
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )"
-DEPEND="${RDEPEND}
- pam? ( sys-libs/pam )"
-BDEPEND="
- sys-devel/flex
- sys-devel/bison
-"
-
-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
-
- dodoc README
-
- insinto /etc; insopts -m600; doins monitrc
- newinitd "${FILESDIR}"/monit.initd-5.0-r1 monit
- systemd_dounit "${FILESDIR}"/${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.26.0.ebuild b/app-admin/monit/monit-5.26.0.ebuild
deleted file mode 100644
index 7bbf46381a9..00000000000
--- a/app-admin/monit/monit-5.26.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-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 ~ppc ~ppc64 ~x86 ~amd64-linux"
-IUSE="ipv6 libressl pam ssl"
-
-RDEPEND="
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )"
-DEPEND="${RDEPEND}
- pam? ( sys-libs/pam )"
-BDEPEND="
- sys-devel/flex
- sys-devel/bison
-"
-
-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
-
- dodoc README
-
- insinto /etc; insopts -m600; doins monitrc
- newinitd "${FILESDIR}"/monit.initd-5.0-r1 monit
- systemd_dounit "${FILESDIR}"/${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.27.0.ebuild b/app-admin/monit/monit-5.27.0.ebuild
deleted file mode 100644
index b5d4e9fca1a..00000000000
--- a/app-admin/monit/monit-5.27.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-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 ppc ~ppc64 x86 ~amd64-linux"
-IUSE="ipv6 libressl pam ssl"
-
-RDEPEND="
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )"
-DEPEND="${RDEPEND}
- pam? ( sys-libs/pam )"
-BDEPEND="
- sys-devel/flex
- sys-devel/bison
-"
-
-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; insopts -m600; doins monitrc
- newinitd "${FILESDIR}"/monit.initd-5.0-r1 monit
- systemd_dounit "${FILESDIR}"/${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:[~2021-01-18 11:56 UTC|newest]
Thread overview: 98+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-18 11:56 Lars Wendler [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-06-16 9:22 [gentoo-commits] repo/gentoo:master commit in: app-admin/monit/ Patrick Lauer
2025-04-26 19:11 Arthur Zamarin
2025-04-26 15:01 Sam James
2025-03-08 16:42 Arthur Zamarin
2025-03-08 15:33 Sam James
2025-03-08 14:34 Jakov Smolić
2025-02-19 14:50 Patrick Lauer
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
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=1610970960.3e85eb9a786a79658e0abdb357f92f06ebf2a154.polynomial-c@gentoo \
--to=polynomial-c@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