From: "Jeroen Roovers" <jer@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/sshguard/
Date: Wed, 26 Oct 2016 08:20:31 +0000 (UTC) [thread overview]
Message-ID: <1477470025.52cacf5d7c43e0c7715af4d1696dad77f440cdac.jer@gentoo> (raw)
commit: 52cacf5d7c43e0c7715af4d1696dad77f440cdac
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 26 08:16:36 2016 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Wed Oct 26 08:20:25 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52cacf5d
app-admin/sshguard: Version bump.
Package-Manager: portage-2.3.2
app-admin/sshguard/Manifest | 1 +
app-admin/sshguard/sshguard-1.7.1.ebuild | 67 ++++++++++++++++++++++++++++++++
2 files changed, 68 insertions(+)
diff --git a/app-admin/sshguard/Manifest b/app-admin/sshguard/Manifest
index 2ac4e66..09b9324 100644
--- a/app-admin/sshguard/Manifest
+++ b/app-admin/sshguard/Manifest
@@ -2,3 +2,4 @@ DIST sshguard-1.5.tar.bz2 303767 SHA256 b537f8765455fdf8424f87d4bd695e5b675b88e5
DIST sshguard-1.6.2.tar.xz 405092 SHA256 57f56724f475e81bbe5fc75dfcb573213bf7e446d7dd039dcf5ba8fa5bc2cb2b SHA512 2819ef9270474c8b3f1d4c997818cf654aaf06089f3112a24a840df7708822a3d66189f5c7a4e4dba06d7c25bf011c43377f3f9aa97de4f9e664fe97464a5c57 WHIRLPOOL b25ae60deadb771623a6d09a75844fb42815dcdeba239a65c565942bd70586ea661428b38e76e413ff1305aa39387c0117c4d205a8b4a8694575a811cab23799
DIST sshguard-1.6.4.tar.gz 546934 SHA256 654d5412ed010e500e2715ddeebfda57ab23c47a2bd30dfdc1e68c4f04c912a9 SHA512 ac8eeb7c303757cfd8ebfa69425afa1a1c6f07998cbb49ee91649c23ff2693f66f315ca6cd04b2011a4d1951f10d69be0db9bbc05b8814d85376eeb3a3f294ee WHIRLPOOL bc4e678d1f2a9d153d105308bd70bd5801560ada691596601c6358145cd1684ff4403913a63af023a62c590b4a9bdde6bc2afe547d93e58dcc1e43ae347e26b6
DIST sshguard-1.7.0.tar.gz 769779 SHA256 5ce784bc25dc9801fbfadc4117669ee02397526c420170ae1145ada96df8cd59 SHA512 876789ee0a457b656f9d9488043f0d4f59cb2ba5a6fc3243f6f05e64995c6cf719bffa01bea7f96897b7092946e441507f2ced4f372fb475dfd7ec0cd70bda55 WHIRLPOOL 7ade8de747f398c7552b17bc3b6ce8c9400e169757072cd10147b2f0ca2e67c427a09e4761a63d9bcc24caca499464301388b4d8b709a4f8cc4325e57dbb312d
+DIST sshguard-1.7.1.tar.gz 832220 SHA256 2e527589c9b33219222d827dff63974229d044de945729aa47271c4a29aaa195 SHA512 205f45f0f1260ebf2a1efabe5b4391b23c219f37df096383d87c220e7392cf58827a4e509be65287bac5b2af49fa0fc390775e1472cff4fb28f2323821f00fd1 WHIRLPOOL 2810c8c77d623dd21baace30bcd4c20efe1f7544e0db3a8abe84ca823e4cc391ecde072d56e63e10c2a490d1417e18fcd9cae16692ac72fffbf216a23036798e
diff --git a/app-admin/sshguard/sshguard-1.7.1.ebuild b/app-admin/sshguard/sshguard-1.7.1.ebuild
new file mode 100644
index 00000000..aeed93f
--- /dev/null
+++ b/app-admin/sshguard/sshguard-1.7.1.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit flag-o-matic
+
+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 ~x86 ~x86-fbsd"
+IUSE="ipfilter kernel_FreeBSD kernel_linux"
+
+CDEPEND="
+ kernel_linux? ( net-firewall/iptables )
+ kernel_FreeBSD? ( !ipfilter? ( sys-freebsd/freebsd-pf ) )
+"
+DEPEND="
+ ${CDEPEND}
+ sys-devel/flex
+"
+RDEPEND="
+ ${CDEPEND}
+ sys-apps/openrc
+ virtual/logger
+"
+
+DOCS=(
+ CHANGELOG.rst
+ README.rst
+ examples/sshguard.service
+ examples/whitelistfile.example
+)
+
+src_prepare() {
+ default
+
+ sed -i -e '/OPTIMIZER_CFLAGS=/d' configure || die
+}
+
+src_configure() {
+ # Needed for usleep(3), see "nasty" in src/sshguard_logsuck.c
+ append-cppflags -D_DEFAULT_SOURCE
+
+ local myconf
+ if use kernel_linux; then
+ myconf="--with-firewall=iptables"
+ elif use kernel_FreeBSD; then
+ if use ipfilter; then
+ myconf="--with-firewall=ipfw"
+ else
+ myconf="--with-firewall=pf"
+ fi
+ fi
+
+ econf ${myconf}
+}
+
+src_install() {
+ default
+
+ newinitd "${FILESDIR}"/${PN}.initd ${PN}
+ newconfd "${FILESDIR}"/${PN}.confd ${PN}
+}
next reply other threads:[~2016-10-26 8:20 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-26 8:20 Jeroen Roovers [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-09-21 0:08 [gentoo-commits] repo/gentoo:master commit in: app-admin/sshguard/ Yixun Lan
2023-09-20 16:30 Arthur Zamarin
2023-09-20 16:30 Arthur Zamarin
2023-08-09 13:03 Yixun Lan
2023-08-09 13:03 Yixun Lan
2023-06-17 6:12 Sam James
2021-12-02 0:53 Jonas Stein
2021-10-12 8:12 Yixun Lan
2021-10-12 7:10 Agostino Sarubbo
2021-10-11 5:12 Sam James
2021-08-04 7:35 Yixun Lan
2021-03-30 15:26 Yixun Lan
2021-02-16 12:26 Sam James
2021-02-16 2:38 Yixun Lan
2021-02-15 10:05 Yixun Lan
2021-02-13 16:15 Yixun Lan
2021-02-13 16:15 Yixun Lan
2021-02-04 7:58 Agostino Sarubbo
2021-02-03 23:55 Thomas Deutschmann
2020-08-01 6:37 Jeroen Roovers
2019-08-08 7:14 Jeroen Roovers
2019-08-08 7:14 Jeroen Roovers
2019-06-12 7:26 Jeroen Roovers
2019-06-12 7:25 Jeroen Roovers
2019-04-23 7:12 Jeroen Roovers
2019-01-02 13:03 Jeroen Roovers
2019-01-02 13:03 Jeroen Roovers
2018-12-17 20:42 Jeroen Roovers
2018-07-16 18:15 Jeroen Roovers
2018-04-13 14:18 Jeroen Roovers
2018-03-13 19:03 Mikle Kolyada
2018-03-13 18:08 Markus Meier
2018-03-11 15:07 Thomas Deutschmann
2017-11-01 9:33 Jeroen Roovers
2017-10-11 8:33 Jeroen Roovers
2017-03-08 4:48 Jeroen Roovers
2017-03-08 4:48 Jeroen Roovers
2017-01-29 20:40 Jeroen Roovers
2017-01-29 20:40 Jeroen Roovers
2017-01-04 9:22 Jeroen Roovers
2017-01-04 8:31 Jeroen Roovers
2017-01-04 8:23 Jeroen Roovers
2017-01-04 8:23 Jeroen Roovers
2016-12-29 10:05 Agostino Sarubbo
2016-12-17 14:18 Aaron Bauman
2016-10-26 8:20 Jeroen Roovers
2016-08-10 7:20 Jeroen Roovers
2016-05-08 7:09 Jeroen Roovers
2016-05-08 7:03 Jeroen Roovers
2015-12-16 8:19 Jeroen Roovers
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=1477470025.52cacf5d7c43e0c7715af4d1696dad77f440cdac.jer@gentoo \
--to=jer@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