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 1A2CA138331 for ; Thu, 12 Apr 2018 18:10:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A4F5E085D; Thu, 12 Apr 2018 18:10:37 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 231A4E085D for ; Thu, 12 Apr 2018 18:10:36 +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 A1A54335C79 for ; Thu, 12 Apr 2018 18:10:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EE63C286 for ; Thu, 12 Apr 2018 18:10:33 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1523556612.8fb481d8212bf775242329c6a6bc04b517bcd23d.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/sshguard/, app-admin/sshguard/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/sshguard/files/sshguard.initd-r1 app-admin/sshguard/sshguard-2.1.0-r2.ebuild X-VCS-Directories: app-admin/sshguard/files/ app-admin/sshguard/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: 8fb481d8212bf775242329c6a6bc04b517bcd23d X-VCS-Branch: master Date: Thu, 12 Apr 2018 18:10:33 +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: 96d1f9aa-b9fe-4819-936c-3639cf60ca71 X-Archives-Hash: 9b20769f26903361b199762787fb93ec commit: 8fb481d8212bf775242329c6a6bc04b517bcd23d Author: Patrick McLean gentoo org> AuthorDate: Thu Apr 12 18:08:56 2018 +0000 Commit: Patrick McLean gentoo org> CommitDate: Thu Apr 12 18:10:12 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fb481d8 app-admin/sshguard: Revision bump to 2.1.0-r2, rework init script The old init script did not pass --interpreted to start-stop-daemon which caused sshguard to always show up as "crashed" in openrc. This fixes that and reworks the init script to be the more modern "declarative" format. Package-Manager: Portage-2.3.28, Repoman-2.3.9 app-admin/sshguard/files/sshguard.initd-r1 | 14 ++++++++++ app-admin/sshguard/sshguard-2.1.0-r2.ebuild | 40 +++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) diff --git a/app-admin/sshguard/files/sshguard.initd-r1 b/app-admin/sshguard/files/sshguard.initd-r1 new file mode 100644 index 00000000000..e7b5ca7428b --- /dev/null +++ b/app-admin/sshguard/files/sshguard.initd-r1 @@ -0,0 +1,14 @@ +#!/sbin/openrc-run +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +command="/usr/sbin/sshguard" +pidfile="${SSHGUARD_PIDFILE:-/var/run/${SVCNAME}.pid}" +command_args="-i \"${pidfile}\" ${SSHGUARD_OPTS}" +command_background=1 +start_stop_daemon_args="--wait ${SSHGUARD_WAIT:-999} --interpreted --quiet" + +depend() { + after iptables + use logger +} diff --git a/app-admin/sshguard/sshguard-2.1.0-r2.ebuild b/app-admin/sshguard/sshguard-2.1.0-r2.ebuild new file mode 100644 index 00000000000..7faed8b68c9 --- /dev/null +++ b/app-admin/sshguard/sshguard-2.1.0-r2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="protects hosts from brute force attacks against ssh" +HOMEPAGE="http://sshguard.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86 ~x86-fbsd" + +DEPEND=" + sys-devel/flex +" +RDEPEND=" + virtual/logger +" +DOCS=( + CHANGELOG.rst + CONTRIBUTING.rst + README.rst + examples/net.sshguard.plist + examples/sshguard.service + examples/whitelistfile.example +) +PATCHES=( + "${FILESDIR}"/${PN}-2.1.0-conf.patch +) + +src_install() { + default + + newinitd "${FILESDIR}"/${PN}.initd-r1 ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} + + insinto /etc + newins examples/sshguard.conf.sample sshguard.conf +}