[arch-commits] Commit in fail2ban/repos/community-any (8 files)

Bartłomiej Piotrowski bpiotrowski at nymeria.archlinux.org
Tue May 14 20:22:24 UTC 2013


    Date: Tuesday, May 14, 2013 @ 22:22:24
  Author: bpiotrowski
Revision: 90847

archrelease: copy trunk to community-any

Added:
  fail2ban/repos/community-any/PKGBUILD
    (from rev 90846, fail2ban/trunk/PKGBUILD)
  fail2ban/repos/community-any/fail2ban.install
    (from rev 90846, fail2ban/trunk/fail2ban.install)
  fail2ban/repos/community-any/service
    (from rev 90846, fail2ban/trunk/service)
  fail2ban/repos/community-any/tmpfiles.conf
    (from rev 90846, fail2ban/trunk/tmpfiles.conf)
Deleted:
  fail2ban/repos/community-any/PKGBUILD
  fail2ban/repos/community-any/fail2ban.install
  fail2ban/repos/community-any/service
  fail2ban/repos/community-any/tmpfiles.conf

------------------+
 PKGBUILD         |   69 +++++++++++++++++++++++++++--------------------------
 fail2ban.install |    6 ++--
 service          |   26 +++++++++----------
 tmpfiles.conf    |    2 -
 4 files changed, 53 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2013-05-14 20:22:08 UTC (rev 90846)
+++ PKGBUILD	2013-05-14 20:22:24 UTC (rev 90847)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
-# Contributor: Geoffroy Carrier <geoffroy.carrier at koon.fr>
-# Contributor: michalzxc
-# Contributor: nbags <neilbags at gmail.com>
-
-pkgname=fail2ban
-pkgver=0.8.8
-pkgrel=2
-pkgdesc='Bans IPs after too many failed authentification attempts against common daemons'
-url='http://www.fail2ban.org/'
-license=('GPL')
-arch=('any')
-depends=('python2' 'iptables')
-backup=(etc/fail2ban/fail2ban.conf
-        etc/fail2ban/jail.conf)
-install=fail2ban.install
-source=(https://nodeload.github.com/$pkgname/$pkgname/legacy.tar.gz/$pkgver
-        service tmpfiles.conf)
-md5sums=('352f41692cc731297b078923e46d3aea'
-         'b4af226eb2d3029241a70e005ec7b3ac'
-         '88d51ecc760ad2e017a165c632f49892')
-
-package() {
-  cd $pkgname-$pkgname-*
-  python2 setup.py install --root "$pkgdir"
-
-  install -Dm644 "$srcdir"/service "$pkgdir"/usr/lib/systemd/system/$pkgname.service
-  install -Dm644 "$srcdir"/tmpfiles.conf "$pkgdir"/usr/lib/tmpfiles.d/$pkgname.conf
-
-  # avoid conflict with filesystem>=2012.06
-  rm -r "$pkgdir"/var/run
-}

Copied: fail2ban/repos/community-any/PKGBUILD (from rev 90846, fail2ban/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2013-05-14 20:22:24 UTC (rev 90847)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
+# Contributor: Geoffroy Carrier <geoffroy.carrier at koon.fr>
+# Contributor: michalzxc
+# Contributor: nbags <neilbags at gmail.com>
+
+pkgname=fail2ban
+pkgver=0.8.8
+pkgrel=3
+pkgdesc='Bans IPs after too many failed authentification attempts against common daemons'
+url='http://www.fail2ban.org/'
+license=('GPL')
+arch=('any')
+depends=('python2' 'iptables')
+backup=(etc/fail2ban/fail2ban.conf
+        etc/fail2ban/jail.conf)
+install=fail2ban.install
+source=(https://nodeload.github.com/$pkgname/$pkgname/legacy.tar.gz/$pkgver
+        service tmpfiles.conf)
+md5sums=('352f41692cc731297b078923e46d3aea'
+         'b4af226eb2d3029241a70e005ec7b3ac'
+         '88d51ecc760ad2e017a165c632f49892')
+
+package() {
+  cd $pkgname-$pkgname-*
+  python2 setup.py install --root "$pkgdir"
+
+  install -Dm644 "$srcdir"/service "$pkgdir"/usr/lib/systemd/system/$pkgname.service
+  install -Dm644 "$srcdir"/tmpfiles.conf "$pkgdir"/usr/lib/tmpfiles.d/$pkgname.conf
+
+  # avoid conflict with filesystem>=2012.06
+  rm -r "$pkgdir"/var/run
+
+  # fix sendmail location
+  sed -i 's/sbin/bin/g' "$pkgdir"/etc/fail2ban/action.d/sendmail*.conf
+}

Deleted: fail2ban.install
===================================================================
--- fail2ban.install	2013-05-14 20:22:08 UTC (rev 90846)
+++ fail2ban.install	2013-05-14 20:22:24 UTC (rev 90847)
@@ -1,3 +0,0 @@
-post_install() {
-  usr/bin/systemd-tmpfiles --create fail2ban.conf
-}

Copied: fail2ban/repos/community-any/fail2ban.install (from rev 90846, fail2ban/trunk/fail2ban.install)
===================================================================
--- fail2ban.install	                        (rev 0)
+++ fail2ban.install	2013-05-14 20:22:24 UTC (rev 90847)
@@ -0,0 +1,3 @@
+post_install() {
+  usr/bin/systemd-tmpfiles --create fail2ban.conf
+}

Deleted: service
===================================================================
--- service	2013-05-14 20:22:08 UTC (rev 90846)
+++ service	2013-05-14 20:22:24 UTC (rev 90847)
@@ -1,13 +0,0 @@
-[Unit]
-Description=Ban IPs that make too many password failures
-After=syslog.target network.target
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/fail2ban-client start
-ExecReload=/usr/bin/fail2ban-client reload
-ExecStop=/usr/bin/fail2ban-client stop
-PIDFile=/var/run/fail2ban/fail2ban.pid
-
-[Install]
-WantedBy=multi-user.target

Copied: fail2ban/repos/community-any/service (from rev 90846, fail2ban/trunk/service)
===================================================================
--- service	                        (rev 0)
+++ service	2013-05-14 20:22:24 UTC (rev 90847)
@@ -0,0 +1,13 @@
+[Unit]
+Description=Ban IPs that make too many password failures
+After=syslog.target network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/fail2ban-client start
+ExecReload=/usr/bin/fail2ban-client reload
+ExecStop=/usr/bin/fail2ban-client stop
+PIDFile=/var/run/fail2ban/fail2ban.pid
+
+[Install]
+WantedBy=multi-user.target

Deleted: tmpfiles.conf
===================================================================
--- tmpfiles.conf	2013-05-14 20:22:08 UTC (rev 90846)
+++ tmpfiles.conf	2013-05-14 20:22:24 UTC (rev 90847)
@@ -1 +0,0 @@
-d /run/fail2ban 0755 root root - -

Copied: fail2ban/repos/community-any/tmpfiles.conf (from rev 90846, fail2ban/trunk/tmpfiles.conf)
===================================================================
--- tmpfiles.conf	                        (rev 0)
+++ tmpfiles.conf	2013-05-14 20:22:24 UTC (rev 90847)
@@ -0,0 +1 @@
+d /run/fail2ban 0755 root root - -




More information about the arch-commits mailing list