public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-analyzer/fail2ban: fail2ban-0.8.10.ebuild ChangeLog
@ 2013-06-13  4:08 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2013-06-13  4:08 UTC (permalink / raw
  To: gentoo-commits

jer         13/06/13 04:08:32

  Modified:             ChangeLog
  Added:                fail2ban-0.8.10.ebuild
  Log:
  Version bump (bug #473118).
  
  (Portage version: 2.2.0_alpha179/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.100                net-analyzer/fail2ban/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	7 Jun 2013 14:43:47 -0000	1.99
+++ ChangeLog	13 Jun 2013 04:08:32 -0000	1.100
@@ -1,6 +1,11 @@
 # ChangeLog for net-analyzer/fail2ban
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.99 2013/06/07 14:43:47 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.100 2013/06/13 04:08:32 jer Exp $
+
+*fail2ban-0.8.10 (13 Jun 2013)
+
+  13 Jun 2013; Jeroen Roovers <jer@gentoo.org> +fail2ban-0.8.10.ebuild:
+  Version bump (bug #473118).
 
   07 Jun 2013; Jeroen Roovers <jer@gentoo.org> fail2ban-0.8.9.ebuild:
   Inform users of dev-python/pyinotify and app-admin/gamin as alternative file



1.1                  net-analyzer/fail2ban/fail2ban-0.8.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?rev=1.1&content-type=text/plain

Index: fail2ban-0.8.10.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild,v 1.1 2013/06/13 04:08:32 jer Exp $

EAPI=5
PYTHON_COMPAT=( python2_{5,6,7} )
DISTUTILS_SINGLE_IMPL=yes

inherit distutils-r1 eutils vcs-snapshot

DESCRIPTION="Bans IP that make too many password failures"
HOMEPAGE="http://www.fail2ban.org/"
SRC_URI="https://github.com/${PN}/${PN}/tarball/${PV} -> ${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="selinux"

DEPEND="selinux? ( sec-policy/selinux-fail2ban )"
RDEPEND="net-misc/whois
	virtual/mta
	virtual/logger
	net-firewall/iptables
	selinux? ( sec-policy/selinux-fail2ban )"

src_prepare() {
	sed -i -e 's|/var\(/run/fail2ban\)|\1|g' $( find . -type f ) || die
}

src_test() {
	./fail2ban-testcases-all
}

DOCS=( ChangeLog DEVELOP README.md THANKS TODO doc/run-rootless.txt )

src_install() {
	distutils-r1_src_install

	rm -rf "${D}"/usr/share/doc/fail2ban

	# not FILESDIR
	newconfd files/gentoo-confd fail2ban
	newinitd files/gentoo-initd fail2ban
	doman man/*.1

	# Use INSTALL_MASK  if you do not want to touch /etc/logrotate.d.
	# See http://thread.gmane.org/gmane.linux.gentoo.devel/35675
	insinto /etc/logrotate.d
	newins files/${PN}-logrotate ${PN}
}

pkg_preinst() {
	has_version "<${CATEGORY}/${PN}-0.7"
	previous_less_than_0_7=$?
}

pkg_postinst() {
	if [[ $previous_less_than_0_7 = 0 ]] ; then
		elog
		elog "Configuration files are now in /etc/fail2ban/"
		elog "You probably have to manually update your configuration"
		elog "files before restarting Fail2ban!"
		elog
		elog "Fail2ban is not installed under /usr/lib anymore. The"
		elog "new location is under /usr/share."
		elog
		elog "You are upgrading from version 0.6.x, please see:"
		elog "http://www.fail2ban.org/wiki/index.php/HOWTO_Upgrade_from_0.6_to_0.8"
	fi
	if ! has_version ${CATEGORY}/${PN} && \
		! has_version dev-python/pyinotify && ! has_version app-admin/gamin; then
		elog "For most jail.conf configurations, it is recommended you install either"
		elog "dev-python/pyinotify or app-admin/gamin (in order of preference)"
		elog "to control how log file modifications are detected"
	fi
}





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/fail2ban: fail2ban-0.8.10.ebuild ChangeLog
@ 2013-06-14 18:27 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-14 18:27 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/14 18:27:39

  Modified:             fail2ban-0.8.10.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #473118
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  net-analyzer/fail2ban/fail2ban-0.8.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?r1=1.2&r2=1.3

Index: fail2ban-0.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fail2ban-0.8.10.ebuild	14 Jun 2013 14:26:13 -0000	1.2
+++ fail2ban-0.8.10.ebuild	14 Jun 2013 18:27:39 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild,v 1.2 2013/06/14 14:26:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild,v 1.3 2013/06/14 18:27:39 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_{5,6,7} )
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="selinux"
 
 DEPEND="selinux? ( sec-policy/selinux-fail2ban )"



1.104                net-analyzer/fail2ban/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?r1=1.103&r2=1.104

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog	14 Jun 2013 14:37:33 -0000	1.103
+++ ChangeLog	14 Jun 2013 18:27:39 -0000	1.104
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/fail2ban
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.103 2013/06/14 14:37:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.104 2013/06/14 18:27:39 ago Exp $
+
+  14 Jun 2013; Agostino Sarubbo <ago@gentoo.org> fail2ban-0.8.10.ebuild:
+  Stable for amd64, wrt bug #473118
 
   14 Jun 2013; Jeroen Roovers <jer@gentoo.org> -fail2ban-0.8.9.ebuild
   fail2ban-0.8.10.ebuild:





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/fail2ban: fail2ban-0.8.10.ebuild ChangeLog
@ 2013-06-14 18:28 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-14 18:28 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/14 18:28:11

  Modified:             fail2ban-0.8.10.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #473118
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  net-analyzer/fail2ban/fail2ban-0.8.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?r1=1.3&r2=1.4

Index: fail2ban-0.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- fail2ban-0.8.10.ebuild	14 Jun 2013 18:27:39 -0000	1.3
+++ fail2ban-0.8.10.ebuild	14 Jun 2013 18:28:11 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild,v 1.3 2013/06/14 18:27:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild,v 1.4 2013/06/14 18:28:11 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_{5,6,7} )
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 hppa ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="selinux"
 
 DEPEND="selinux? ( sec-policy/selinux-fail2ban )"



1.105                net-analyzer/fail2ban/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?r1=1.104&r2=1.105

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog	14 Jun 2013 18:27:39 -0000	1.104
+++ ChangeLog	14 Jun 2013 18:28:11 -0000	1.105
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/fail2ban
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.104 2013/06/14 18:27:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.105 2013/06/14 18:28:11 ago Exp $
+
+  14 Jun 2013; Agostino Sarubbo <ago@gentoo.org> fail2ban-0.8.10.ebuild:
+  Stable for x86, wrt bug #473118
 
   14 Jun 2013; Agostino Sarubbo <ago@gentoo.org> fail2ban-0.8.10.ebuild:
   Stable for amd64, wrt bug #473118





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/fail2ban: fail2ban-0.8.10.ebuild ChangeLog
@ 2013-06-14 18:28 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-14 18:28 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/14 18:28:25

  Modified:             fail2ban-0.8.10.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #473118
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  net-analyzer/fail2ban/fail2ban-0.8.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?r1=1.4&r2=1.5

Index: fail2ban-0.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fail2ban-0.8.10.ebuild	14 Jun 2013 18:28:11 -0000	1.4
+++ fail2ban-0.8.10.ebuild	14 Jun 2013 18:28:25 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild,v 1.4 2013/06/14 18:28:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild,v 1.5 2013/06/14 18:28:25 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_{5,6,7} )
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 hppa ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 hppa ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="selinux"
 
 DEPEND="selinux? ( sec-policy/selinux-fail2ban )"



1.106                net-analyzer/fail2ban/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?r1=1.105&r2=1.106

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	14 Jun 2013 18:28:11 -0000	1.105
+++ ChangeLog	14 Jun 2013 18:28:25 -0000	1.106
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/fail2ban
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.105 2013/06/14 18:28:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.106 2013/06/14 18:28:25 ago Exp $
+
+  14 Jun 2013; Agostino Sarubbo <ago@gentoo.org> fail2ban-0.8.10.ebuild:
+  Stable for ppc, wrt bug #473118
 
   14 Jun 2013; Agostino Sarubbo <ago@gentoo.org> fail2ban-0.8.10.ebuild:
   Stable for x86, wrt bug #473118





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/fail2ban: fail2ban-0.8.10.ebuild ChangeLog
@ 2013-06-14 18:28 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-14 18:28 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/14 18:28:36

  Modified:             fail2ban-0.8.10.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #473118
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  net-analyzer/fail2ban/fail2ban-0.8.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild?r1=1.5&r2=1.6

Index: fail2ban-0.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- fail2ban-0.8.10.ebuild	14 Jun 2013 18:28:25 -0000	1.5
+++ fail2ban-0.8.10.ebuild	14 Jun 2013 18:28:36 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild,v 1.5 2013/06/14 18:28:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10.ebuild,v 1.6 2013/06/14 18:28:36 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_{5,6,7} )
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 hppa ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 hppa ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="selinux"
 
 DEPEND="selinux? ( sec-policy/selinux-fail2ban )"



1.107                net-analyzer/fail2ban/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?r1=1.106&r2=1.107

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog	14 Jun 2013 18:28:25 -0000	1.106
+++ ChangeLog	14 Jun 2013 18:28:36 -0000	1.107
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/fail2ban
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.106 2013/06/14 18:28:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.107 2013/06/14 18:28:36 ago Exp $
+
+  14 Jun 2013; Agostino Sarubbo <ago@gentoo.org> fail2ban-0.8.10.ebuild:
+  Stable for ppc64, wrt bug #473118
 
   14 Jun 2013; Agostino Sarubbo <ago@gentoo.org> fail2ban-0.8.10.ebuild:
   Stable for ppc, wrt bug #473118





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-06-14 18:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-14 18:28 [gentoo-commits] gentoo-x86 commit in net-analyzer/fail2ban: fail2ban-0.8.10.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-06-14 18:28 Agostino Sarubbo (ago)
2013-06-14 18:28 Agostino Sarubbo (ago)
2013-06-14 18:27 Agostino Sarubbo (ago)
2013-06-13  4:08 Jeroen Roovers (jer)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox