public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
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: Wed, 30 May 2018 08:22:38 +0000 (UTC)	[thread overview]
Message-ID: <1527668552.231c9df19fc0e5429e42abe50b863f00c2bb71f8.polynomial-c@gentoo> (raw)

commit:     231c9df19fc0e5429e42abe50b863f00c2bb71f8
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed May 30 08:21:27 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed May 30 08:22:32 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=231c9df1

app-admin/monit: Bump to version 5.25.2

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-admin/monit/Manifest            |  1 +
 app-admin/monit/monit-5.25.2.ebuild | 51 +++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/app-admin/monit/Manifest b/app-admin/monit/Manifest
index 7d52971cf6e..55cd2df767a 100644
--- a/app-admin/monit/Manifest
+++ b/app-admin/monit/Manifest
@@ -2,3 +2,4 @@ DIST monit-5.23.0.tar.gz 1298472 BLAKE2B 8cc580c1a9947e43703eff3593992d6ad533809
 DIST monit-5.24.0.tar.gz 1352660 BLAKE2B 6759d1c75adcd089a7e3a5e48150b1ea0fcd6ab7dd1f8f3018c0a48a5a2b648bc353a99785f140d7d4cc0715b1d3c4057d26a763ec268d6dce56f96f66071bbc SHA512 5260a1b543495c650e2e91ad38129c65253ce6649150e0e51d11b2902723cb7dd8e1a874c473bec3ba5b51721f2b61fdec92cf445f11cc217c1a6fcc0fab1a1e
 DIST monit-5.25.0.tar.gz 1353674 BLAKE2B a187ec1de14934f3e54bccaaf1dbf98eba57f8f06b6c43057060b63ed39f351732dd720f5026dd94bc814528a4bb685c0e342a9990f2e12f08399de4e0852a84 SHA512 6a0a3e81a97846420785026d108f2640986d0c24ecde55faf522dd7891ecdc2237c40667ec7b63a53358539c18870927cd75eb4c24cbb4b8ff73c54c267e70c5
 DIST monit-5.25.1.tar.gz 1353855 BLAKE2B 5abef9c97088b12ab376e67f2524534ad1b0e2e3dfa98d5f5fdd8a6fc2331ead57d77aa1d8229a0825cbb36871b063006b74dc98dd780baef8aaca1da5c6c74c SHA512 b21b18302aed602f9371f7dee29f7306dbccd355df333bc6d868acdb6c054cef877dee72e261383938fe1d10121cd07e820e040ea80ed70260fdda8b451f6ab1
+DIST monit-5.25.2.tar.gz 1354704 BLAKE2B 503660146edba988d0c52d1773dc3d3d6f495b3e3f0ae147be6a4297bf118ad6b5f7289868ad4b61226cf499bd8d6e3aed8f5fec91ff8ff699968f4262f1fd01 SHA512 e9b6ce60bf82c2564a084fc42b65ef432ee35855cad038fe6ae209047abaa1c54cabb4cd75c8a85c1102844a1b90c3c5f8ddbbd56711665b9bea616bcc02ec86

diff --git a/app-admin/monit/monit-5.25.2.ebuild b/app-admin/monit/monit-5.25.2.ebuild
new file mode 100644
index 00000000000..43e22cd6648
--- /dev/null
+++ b/app-admin/monit/monit-5.25.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit 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="libressl pam ssl"
+
+RDEPEND="
+	ssl? (
+		!libressl? ( dev-libs/openssl:0= )
+		libressl? ( dev-libs/libressl:0= )
+	)"
+DEPEND="${RDEPEND}
+	sys-devel/flex
+	sys-devel/bison
+	pam? ( virtual/pam )"
+
+src_prepare() {
+	default
+
+	sed -i -e '/^INSTALL_PROG/s/-s//' Makefile.in || die "sed failed in Makefile.in"
+}
+
+src_configure() {
+	econf $(use_with ssl) $(use_with pam)
+}
+
+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}
+}
+
+pkg_postinst() {
+	elog "Sample configurations are available at:"
+	elog "http://mmonit.com/monit/documentation/"
+}


             reply	other threads:[~2018-05-30  8:22 UTC|newest]

Thread overview: 97+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-30  8:22 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-26 19:11 [gentoo-commits] repo/gentoo:master commit in: app-admin/monit/ 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
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-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=1527668552.231c9df19fc0e5429e42abe50b863f00c2bb71f8.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