[arch-commits] Commit in fwknop/repos (8 files)

Levente Polyak anthraxx at archlinux.org
Mon Jan 4 18:15:34 UTC 2016


    Date: Monday, January 4, 2016 @ 19:15:34
  Author: anthraxx
Revision: 155467

archrelease: copy trunk to community-i686, community-x86_64

Added:
  fwknop/repos/community-i686/
  fwknop/repos/community-i686/PKGBUILD
    (from rev 155466, fwknop/trunk/PKGBUILD)
  fwknop/repos/community-i686/fwknop.install
    (from rev 155466, fwknop/trunk/fwknop.install)
  fwknop/repos/community-i686/fwknopd.service
    (from rev 155466, fwknop/trunk/fwknopd.service)
  fwknop/repos/community-x86_64/
  fwknop/repos/community-x86_64/PKGBUILD
    (from rev 155466, fwknop/trunk/PKGBUILD)
  fwknop/repos/community-x86_64/fwknop.install
    (from rev 155466, fwknop/trunk/fwknop.install)
  fwknop/repos/community-x86_64/fwknopd.service
    (from rev 155466, fwknop/trunk/fwknopd.service)

----------------------------------+
 community-i686/PKGBUILD          |   41 +++++++++++++++++++++++++++++++++++++
 community-i686/fwknop.install    |   11 +++++++++
 community-i686/fwknopd.service   |   10 +++++++++
 community-x86_64/PKGBUILD        |   41 +++++++++++++++++++++++++++++++++++++
 community-x86_64/fwknop.install  |   11 +++++++++
 community-x86_64/fwknopd.service |   10 +++++++++
 6 files changed, 124 insertions(+)

Copied: fwknop/repos/community-i686/PKGBUILD (from rev 155466, fwknop/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-01-04 18:15:34 UTC (rev 155467)
@@ -0,0 +1,41 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Florian Pritz <f-p at gmx.at>
+# Contributor: Xyne <xyne at archlinux dot us>
+# Contributor: thiagoc
+# Contributor: Chris <chris at christopherjones dot us>
+# Contributor: henning mueller <henning at orgizm.net>
+# Contributor: Fabiano Furtado <fusca14 at gmail dot com>
+
+pkgname=fwknop
+pkgver=2.6.8
+pkgrel=2
+pkgdesc='FireWall KNock OPerator: Single Packet Authorization and Port Knocking'
+url='https://www.cipherdyne.org/fwknop'
+arch=('i686' 'x86_64')
+license=('GPL2')
+backup=(etc/${pkgname}/access.conf
+        etc/${pkgname}/fwknopd.conf)
+depends=('gpgme' 'iptables' 'libpcap' 'wget')
+options=('!libtool')
+install=fwknop.install
+source=(https://cipherdyne.org/fwknop/download/fwknop-${pkgver}.tar.bz2{,.asc}
+        fwknopd.service)
+sha512sums=('a9652d65a425a816cdd8677a1a2dac030e545b8ec38b6e7189870a7bf354e3a779d111bc1af8f032ec2fe3abb08aa5c7eec345f9f8094bc555c933541dc0d26b'
+            'SKIP'
+            'a171682a054495bb10315e98a300ddbe4adf1f653b719d3344ecb6cfb8ccd15043cffbbd28304c4f15569a12ddcd9733409448d596f0c706e48d4fda2c877a6a')
+validpgpkeys=('4D6644A9DA036904BDA2CB90E6C9E3350D3E7410') # Michael Rash (Signing key for cipherdyne.org projects) <mbr at cipherdyne.org>
+
+build() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fiv
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 755 "${srcdir}/fwknopd.service" "${pkgdir}/usr/lib/systemd/system/fwknopd.service"
+}
+
+# vim: ts=2 sw=2 et:

Copied: fwknop/repos/community-i686/fwknop.install (from rev 155466, fwknop/trunk/fwknop.install)
===================================================================
--- community-i686/fwknop.install	                        (rev 0)
+++ community-i686/fwknop.install	2016-01-04 18:15:34 UTC (rev 155467)
@@ -0,0 +1,11 @@
+infodir=/usr/share/info
+
+post_install() {
+  install-info ${infodir}/libfko.info.gz ${infodir}/dir 2> /dev/null
+}
+
+pre_remove() {
+  install-info --delete ${infodir}/libfko.info.gz ${infodir}/dir 2> /dev/null
+}
+
+# vim: ts=2 sw=2 et:

Copied: fwknop/repos/community-i686/fwknopd.service (from rev 155466, fwknop/trunk/fwknopd.service)
===================================================================
--- community-i686/fwknopd.service	                        (rev 0)
+++ community-i686/fwknopd.service	2016-01-04 18:15:34 UTC (rev 155467)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Firewall Knock Operator Daemon
+After=network.target network-online.target iptables.service ip6tables.service
+
+[Service]
+Type=forking
+ExecStart=/usr/sbin/fwknopd
+
+[Install]
+WantedBy=multi-user.target

Copied: fwknop/repos/community-x86_64/PKGBUILD (from rev 155466, fwknop/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-01-04 18:15:34 UTC (rev 155467)
@@ -0,0 +1,41 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Florian Pritz <f-p at gmx.at>
+# Contributor: Xyne <xyne at archlinux dot us>
+# Contributor: thiagoc
+# Contributor: Chris <chris at christopherjones dot us>
+# Contributor: henning mueller <henning at orgizm.net>
+# Contributor: Fabiano Furtado <fusca14 at gmail dot com>
+
+pkgname=fwknop
+pkgver=2.6.8
+pkgrel=2
+pkgdesc='FireWall KNock OPerator: Single Packet Authorization and Port Knocking'
+url='https://www.cipherdyne.org/fwknop'
+arch=('i686' 'x86_64')
+license=('GPL2')
+backup=(etc/${pkgname}/access.conf
+        etc/${pkgname}/fwknopd.conf)
+depends=('gpgme' 'iptables' 'libpcap' 'wget')
+options=('!libtool')
+install=fwknop.install
+source=(https://cipherdyne.org/fwknop/download/fwknop-${pkgver}.tar.bz2{,.asc}
+        fwknopd.service)
+sha512sums=('a9652d65a425a816cdd8677a1a2dac030e545b8ec38b6e7189870a7bf354e3a779d111bc1af8f032ec2fe3abb08aa5c7eec345f9f8094bc555c933541dc0d26b'
+            'SKIP'
+            'a171682a054495bb10315e98a300ddbe4adf1f653b719d3344ecb6cfb8ccd15043cffbbd28304c4f15569a12ddcd9733409448d596f0c706e48d4fda2c877a6a')
+validpgpkeys=('4D6644A9DA036904BDA2CB90E6C9E3350D3E7410') # Michael Rash (Signing key for cipherdyne.org projects) <mbr at cipherdyne.org>
+
+build() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fiv
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 755 "${srcdir}/fwknopd.service" "${pkgdir}/usr/lib/systemd/system/fwknopd.service"
+}
+
+# vim: ts=2 sw=2 et:

Copied: fwknop/repos/community-x86_64/fwknop.install (from rev 155466, fwknop/trunk/fwknop.install)
===================================================================
--- community-x86_64/fwknop.install	                        (rev 0)
+++ community-x86_64/fwknop.install	2016-01-04 18:15:34 UTC (rev 155467)
@@ -0,0 +1,11 @@
+infodir=/usr/share/info
+
+post_install() {
+  install-info ${infodir}/libfko.info.gz ${infodir}/dir 2> /dev/null
+}
+
+pre_remove() {
+  install-info --delete ${infodir}/libfko.info.gz ${infodir}/dir 2> /dev/null
+}
+
+# vim: ts=2 sw=2 et:

Copied: fwknop/repos/community-x86_64/fwknopd.service (from rev 155466, fwknop/trunk/fwknopd.service)
===================================================================
--- community-x86_64/fwknopd.service	                        (rev 0)
+++ community-x86_64/fwknopd.service	2016-01-04 18:15:34 UTC (rev 155467)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Firewall Knock Operator Daemon
+After=network.target network-online.target iptables.service ip6tables.service
+
+[Service]
+Type=forking
+ExecStart=/usr/sbin/fwknopd
+
+[Install]
+WantedBy=multi-user.target



More information about the arch-commits mailing list