diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-07-26 07:06:52 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-07-26 07:06:52 +0000 |
commit | c3c6d0518f1e5b0ccafd206020ec058bd505b34d (patch) | |
tree | 39fcb5e13c82bc88f387086e93cb5b3b3ef4cd5a /net-analyzer/fail2ban | |
parent | Fix minor ebuild issues and require gl (per configure). systemd is not a buil... (diff) | |
download | gentoo-2-c3c6d0518f1e5b0ccafd206020ec058bd505b34d.tar.gz gentoo-2-c3c6d0518f1e5b0ccafd206020ec058bd505b34d.tar.bz2 gentoo-2-c3c6d0518f1e5b0ccafd206020ec058bd505b34d.zip |
net-analyzer/fail2ban: Fix missing tmpfile for systemd
(Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'net-analyzer/fail2ban')
-rw-r--r-- | net-analyzer/fail2ban/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/fail2ban/fail2ban-0.8.10-r2.ebuild (renamed from net-analyzer/fail2ban/fail2ban-0.8.10-r1.ebuild) | 11 |
2 files changed, 13 insertions, 6 deletions
diff --git a/net-analyzer/fail2ban/ChangeLog b/net-analyzer/fail2ban/ChangeLog index f2331b70d6c1..c78b750c0115 100644 --- a/net-analyzer/fail2ban/ChangeLog +++ b/net-analyzer/fail2ban/ChangeLog @@ -1,6 +1,12 @@ # 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.109 2013/07/25 16:56:04 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.110 2013/07/26 07:06:52 jlec Exp $ + +*fail2ban-0.8.10-r2 (26 Jul 2013) + + 26 Jul 2013; Justin Lecher <jlec@gentoo.org> -fail2ban-0.8.10-r1.ebuild, + +fail2ban-0.8.10-r2.ebuild: + Fix missing tmpfile for systemd *fail2ban-0.8.10-r1 (25 Jul 2013) diff --git a/net-analyzer/fail2ban/fail2ban-0.8.10-r1.ebuild b/net-analyzer/fail2ban/fail2ban-0.8.10-r2.ebuild index 6562b41fdae7..c4c4f191e6dd 100644 --- a/net-analyzer/fail2ban/fail2ban-0.8.10-r1.ebuild +++ b/net-analyzer/fail2ban/fail2ban-0.8.10-r2.ebuild @@ -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-r1.ebuild,v 1.1 2013/07/25 16:56:04 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.10-r2.ebuild,v 1.1 2013/07/26 07:06:52 jlec Exp $ EAPI=5 PYTHON_COMPAT=( python2_{5,6,7} ) @@ -29,7 +29,7 @@ src_prepare() { } src_test() { - ./fail2ban-testcases-all + ./${PN}-testcases-all } DOCS=( ChangeLog DEVELOP README.md THANKS TODO doc/run-rootless.txt ) @@ -37,12 +37,13 @@ DOCS=( ChangeLog DEVELOP README.md THANKS TODO doc/run-rootless.txt ) src_install() { distutils-r1_src_install - rm -rf "${D}"/usr/share/doc/fail2ban + rm -rf "${D}"/usr/share/doc/${PN} # not FILESDIR - newconfd files/gentoo-confd fail2ban - newinitd files/gentoo-initd fail2ban + newconfd files/gentoo-confd ${PN} + newinitd files/gentoo-initd ${PN} systemd_dounit files/${PN}.service + systemd_dotmpfilesd files/${PN}-tmpfiles.conf doman man/*.1 # Use INSTALL_MASK if you do not want to touch /etc/logrotate.d. |