[arch-commits] Commit in ipset/repos/extra-x86_64 (4 files)

Sébastien Luttringer seblu at archlinux.org
Tue Apr 17 22:36:59 UTC 2018


    Date: Tuesday, April 17, 2018 @ 22:36:58
  Author: seblu
Revision: 322015

archrelease: copy trunk to extra-x86_64

Added:
  ipset/repos/extra-x86_64/PKGBUILD
    (from rev 322014, ipset/trunk/PKGBUILD)
  ipset/repos/extra-x86_64/ipset.service
    (from rev 322014, ipset/trunk/ipset.service)
Deleted:
  ipset/repos/extra-x86_64/PKGBUILD
  ipset/repos/extra-x86_64/ipset.service

---------------+
 PKGBUILD      |  118 ++++++++++++++++++++++++++++----------------------------
 ipset.service |   28 ++++++-------
 2 files changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-04-17 22:36:51 UTC (rev 322014)
+++ PKGBUILD	2018-04-17 22:36:58 UTC (rev 322015)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgname=ipset
-pkgver=6.36
-pkgrel=1
-pkgdesc='Administration tool for IP sets'
-arch=('x86_64')
-url='http://ipset.netfilter.org/'
-license=('GPL2')
-depends=('glibc' 'libmnl')
-backup=("etc/$pkgname.conf")
-source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2"
-        "$pkgname.service")
-md5sums=('fda041afefd581464e445b87beeb0681'
-         'e20fe62881993078591f1bb8b2fa22bb')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-    if [[ "$filename" =~ \.patch$ ]]; then
-      msg2 "Applying patch ${filename##*/}"
-      patch -p1 -N -i "$srcdir/${filename##*/}"
-    fi
-  done
-  :
-  # needed because we patch configure.ac (TO BE REMOVED)
-  ./autogen.sh
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no
-  make
-}
-
-check() {
-  $pkgname-$pkgver/src/ipset version
-}
-
-package() {
-  pushd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  # install doc
-  install -dm755 "$pkgdir/usr/share/doc/$pkgname"
-  install -m644 README UPGRADE ChangeLog "$pkgdir/usr/share/doc/$pkgname"
-  # install pkgconfig file
-  install -Dm644 lib/libipset.pc "$pkgdir/usr/lib/pkgconfig/libipset.pc"
-  popd
-  # systemd
-  install -Dm 644 $pkgname.service \
-    "$pkgdir/usr/lib/systemd/system/$pkgname.service"
-  # default config file
-  install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ipset/repos/extra-x86_64/PKGBUILD (from rev 322014, ipset/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-04-17 22:36:58 UTC (rev 322015)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=ipset
+pkgver=6.38
+pkgrel=1
+pkgdesc='Administration tool for IP sets'
+arch=('x86_64')
+url='http://ipset.netfilter.org/'
+license=('GPL2')
+depends=('glibc' 'libmnl')
+backup=("etc/$pkgname.conf")
+source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2"
+        "$pkgname.service")
+md5sums=('0e5d9c85f6b78e7dff0c996e2900574b'
+         'e20fe62881993078591f1bb8b2fa22bb')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+    if [[ "$filename" =~ \.patch$ ]]; then
+      msg2 "Applying patch ${filename##*/}"
+      patch -p1 -N -i "$srcdir/${filename##*/}"
+    fi
+  done
+  :
+  # needed because we patch configure.ac (TO BE REMOVED)
+  ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no
+  make
+}
+
+check() {
+  $pkgname-$pkgver/src/ipset version
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # install doc
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname"
+  install -m644 README UPGRADE ChangeLog "$pkgdir/usr/share/doc/$pkgname"
+  # install pkgconfig file
+  install -Dm644 lib/libipset.pc "$pkgdir/usr/lib/pkgconfig/libipset.pc"
+  popd
+  # systemd
+  install -Dm 644 $pkgname.service \
+    "$pkgdir/usr/lib/systemd/system/$pkgname.service"
+  # default config file
+  install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: ipset.service
===================================================================
--- ipset.service	2018-04-17 22:36:51 UTC (rev 322014)
+++ ipset.service	2018-04-17 22:36:58 UTC (rev 322015)
@@ -1,14 +0,0 @@
-[Unit]
-Description=Loading IP Sets
-Before=network-pre.target iptables.service ip6tables.service
-Wants=network-pre.target
-
-[Service]
-Type=oneshot
-RemainAfterExit=yes
-ExecStart=/usr/bin/ipset -f /etc/ipset.conf restore
-ExecReload=/usr/bin/ipset -f /etc/ipset.conf restore
-ExecStop=/usr/bin/ipset destroy
-
-[Install]
-WantedBy=multi-user.target

Copied: ipset/repos/extra-x86_64/ipset.service (from rev 322014, ipset/trunk/ipset.service)
===================================================================
--- ipset.service	                        (rev 0)
+++ ipset.service	2018-04-17 22:36:58 UTC (rev 322015)
@@ -0,0 +1,14 @@
+[Unit]
+Description=Loading IP Sets
+Before=network-pre.target iptables.service ip6tables.service
+Wants=network-pre.target
+
+[Service]
+Type=oneshot
+RemainAfterExit=yes
+ExecStart=/usr/bin/ipset -f /etc/ipset.conf restore
+ExecReload=/usr/bin/ipset -f /etc/ipset.conf restore
+ExecStop=/usr/bin/ipset destroy
+
+[Install]
+WantedBy=multi-user.target



More information about the arch-commits mailing list