From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8C116138330 for ; Thu, 31 May 2018 11:53:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BB4BE087F; Thu, 31 May 2018 11:53:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6CC57E087F for ; Thu, 31 May 2018 11:53:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DE50C335C43 for ; Thu, 31 May 2018 11:53:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72D7A2A0 for ; Thu, 31 May 2018 11:53:08 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1527767584.a81eab6e099fc55682769d065ee7d1d913a63511.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/monit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/monit/monit-5.25.2-r1.ebuild app-admin/monit/monit-5.25.2.ebuild X-VCS-Directories: app-admin/monit/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: a81eab6e099fc55682769d065ee7d1d913a63511 X-VCS-Branch: master Date: Thu, 31 May 2018 11:53:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e7247f08-b91d-4aa5-b153-406683832b38 X-Archives-Hash: d9662bf60d778b020d21d04fa376f1ba commit: a81eab6e099fc55682769d065ee7d1d913a63511 Author: Lars Wendler gentoo org> AuthorDate: Thu May 31 11:52:37 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu May 31 11:53:04 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a81eab6e app-admin/monit: Revbump to install bash-completion file. Removed old Also added ipv6 USE flag. Package-Manager: Portage-2.3.40, Repoman-2.3.9 .../monit/{monit-5.25.2.ebuild => monit-5.25.2-r1.ebuild} | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/app-admin/monit/monit-5.25.2.ebuild b/app-admin/monit/monit-5.25.2-r1.ebuild similarity index 83% rename from app-admin/monit/monit-5.25.2.ebuild rename to app-admin/monit/monit-5.25.2-r1.ebuild index 43e22cd6648..8897263d608 100644 --- a/app-admin/monit/monit-5.25.2.ebuild +++ b/app-admin/monit/monit-5.25.2-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit pam systemd +inherit bash-completion-r1 pam systemd DESCRIPTION="Monitoring and managing daemons or similar programs running on a Unix system" HOMEPAGE="http://mmonit.com/monit/" @@ -11,7 +11,7 @@ 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" +IUSE="ipv6 libressl pam ssl" RDEPEND=" ssl? ( @@ -30,7 +30,12 @@ src_prepare() { } src_configure() { - econf $(use_with ssl) $(use_with pam) + local myeconfargs=( + $(use_with ipv6) + $(use_with pam) + $(use_with ssl) + ) + econf "${myeconfargs[@]}" } src_install() { @@ -43,6 +48,8 @@ src_install() { systemd_dounit "${FILESDIR}"/${PN}.service use pam && newpamd "${FILESDIR}"/${PN}.pamd ${PN} + + dobashcomp system/bash/monit } pkg_postinst() {