[arch-commits] Commit in pdnsd/repos (10 files)

Sergej Pupykin spupykin at nymeria.archlinux.org
Mon May 13 14:33:27 UTC 2013


    Date: Monday, May 13, 2013 @ 16:33:26
  Author: spupykin
Revision: 90701

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

Added:
  pdnsd/repos/community-i686/PKGBUILD
    (from rev 90700, pdnsd/trunk/PKGBUILD)
  pdnsd/repos/community-i686/service
    (from rev 90700, pdnsd/trunk/service)
  pdnsd/repos/community-x86_64/PKGBUILD
    (from rev 90700, pdnsd/trunk/PKGBUILD)
  pdnsd/repos/community-x86_64/service
    (from rev 90700, pdnsd/trunk/service)
Deleted:
  pdnsd/repos/community-i686/PKGBUILD
  pdnsd/repos/community-i686/rc.d
  pdnsd/repos/community-i686/service
  pdnsd/repos/community-x86_64/PKGBUILD
  pdnsd/repos/community-x86_64/rc.d
  pdnsd/repos/community-x86_64/service

---------------------------+
 /PKGBUILD                 |   58 ++++++++++++++++++++++++++++++++++++++++++++
 /service                  |   18 +++++++++++++
 community-i686/PKGBUILD   |   33 -------------------------
 community-i686/rc.d       |   37 ----------------------------
 community-i686/service    |    9 ------
 community-x86_64/PKGBUILD |   33 -------------------------
 community-x86_64/rc.d     |   37 ----------------------------
 community-x86_64/service  |    9 ------
 8 files changed, 76 insertions(+), 158 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-05-13 14:33:09 UTC (rev 90700)
+++ community-i686/PKGBUILD	2013-05-13 14:33:26 UTC (rev 90701)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Henrik Nymann Jensen <h at henriknj.dk>
-
-pkgname=pdnsd
-pkgver=1.2.9.a
-_pkgver=${pkgver/.a/a}
-pkgrel=1
-pkgdesc="Proxy DNS server with permanent caching"
-arch=(i686 x86_64)
-url="http://members.home.nl/p.a.rombouts/pdnsd/"
-license=('GPL')
-depends=('glibc')
-source=(http://members.home.nl/p.a.rombouts/pdnsd/releases/pdnsd-$_pkgver-par.tar.gz
-		rc.d
-		service)
-md5sums=('2f3e705d59a0f9308ad9504b24400769'
-         '3670bd47c9303fbb655d9216715512de'
-         'fad5e518d126b29fc947941d57a0a494')
-
-build() {
-	cd $srcdir/$pkgname-$_pkgver
-	./configure --prefix=/usr --sysconfdir=/etc
-	make
-}
-
-package() {
-	cd $srcdir/$pkgname-$_pkgver
-	make DESTDIR=$pkgdir install
-
-	install -Dm0755 $srcdir/rc.d $pkgdir/etc/rc.d/pdnsd
-	install -Dm0644 $srcdir/service $pkgdir/usr/lib/systemd/system/pdnsd.service
-}

Copied: pdnsd/repos/community-i686/PKGBUILD (from rev 90700, pdnsd/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-05-13 14:33:26 UTC (rev 90701)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Henrik Nymann Jensen <h at henriknj.dk>
+
+pkgname=pdnsd
+pkgver=1.2.9.a
+_pkgver=${pkgver/.a/a}
+pkgrel=2
+pkgdesc="Proxy DNS server with permanent caching"
+arch=(i686 x86_64)
+url="http://members.home.nl/p.a.rombouts/pdnsd/"
+license=('GPL')
+depends=('glibc')
+source=(http://members.home.nl/p.a.rombouts/pdnsd/releases/pdnsd-$_pkgver-par.tar.gz
+	service)
+md5sums=('2f3e705d59a0f9308ad9504b24400769'
+         'fad5e518d126b29fc947941d57a0a494')
+
+build() {
+	cd $srcdir/$pkgname-$_pkgver
+	./configure --prefix=/usr --sysconfdir=/etc
+	make
+}
+
+package() {
+	cd $srcdir/$pkgname-$_pkgver
+	make DESTDIR=$pkgdir install
+	install -Dm0644 $srcdir/service $pkgdir/usr/lib/systemd/system/pdnsd.service
+}

Deleted: community-i686/rc.d
===================================================================
--- community-i686/rc.d	2013-05-13 14:33:09 UTC (rev 90700)
+++ community-i686/rc.d	2013-05-13 14:33:26 UTC (rev 90701)
@@ -1,37 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/pdnsd`
-case "$1" in
-  start)
-    stat_busy "Starting pdnsd Daemon"
-    if [ -z "$PID" ]; then 
-       /usr/sbin/pdnsd -d
-    fi
-    if [ ! -z "$PID" -o $? -gt 0 ]; then
-      stat_fail
-    else
-      add_daemon pdnsd
-      stat_done
-    fi
-    ;;
-  stop)
-    stat_busy "Stopping pdnsd Daemon"
-    [ ! -z "$PID" ]  && kill -TERM $PID &> /dev/null
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      rm_daemon pdnsd
-      stat_done
-    fi
-    ;;
-  restart)
-    $0 stop
-    sleep 1
-    $0 start
-    ;;
-  *)
-    echo "usage: $0 {start|stop|restart}"  
-esac

Deleted: community-i686/service
===================================================================
--- community-i686/service	2013-05-13 14:33:09 UTC (rev 90700)
+++ community-i686/service	2013-05-13 14:33:26 UTC (rev 90701)
@@ -1,9 +0,0 @@
-[Unit]
-Description=proxy name server
-After=network.target
-
-[Service]
-ExecStart=/usr/sbin/pdnsd
-
-[Install]
-WantedBy=multi-user.target

Copied: pdnsd/repos/community-i686/service (from rev 90700, pdnsd/trunk/service)
===================================================================
--- community-i686/service	                        (rev 0)
+++ community-i686/service	2013-05-13 14:33:26 UTC (rev 90701)
@@ -0,0 +1,9 @@
+[Unit]
+Description=proxy name server
+After=network.target
+
+[Service]
+ExecStart=/usr/sbin/pdnsd
+
+[Install]
+WantedBy=multi-user.target

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-05-13 14:33:09 UTC (rev 90700)
+++ community-x86_64/PKGBUILD	2013-05-13 14:33:26 UTC (rev 90701)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Henrik Nymann Jensen <h at henriknj.dk>
-
-pkgname=pdnsd
-pkgver=1.2.9.a
-_pkgver=${pkgver/.a/a}
-pkgrel=1
-pkgdesc="Proxy DNS server with permanent caching"
-arch=(i686 x86_64)
-url="http://members.home.nl/p.a.rombouts/pdnsd/"
-license=('GPL')
-depends=('glibc')
-source=(http://members.home.nl/p.a.rombouts/pdnsd/releases/pdnsd-$_pkgver-par.tar.gz
-		rc.d
-		service)
-md5sums=('2f3e705d59a0f9308ad9504b24400769'
-         '3670bd47c9303fbb655d9216715512de'
-         'fad5e518d126b29fc947941d57a0a494')
-
-build() {
-	cd $srcdir/$pkgname-$_pkgver
-	./configure --prefix=/usr --sysconfdir=/etc
-	make
-}
-
-package() {
-	cd $srcdir/$pkgname-$_pkgver
-	make DESTDIR=$pkgdir install
-
-	install -Dm0755 $srcdir/rc.d $pkgdir/etc/rc.d/pdnsd
-	install -Dm0644 $srcdir/service $pkgdir/usr/lib/systemd/system/pdnsd.service
-}

Copied: pdnsd/repos/community-x86_64/PKGBUILD (from rev 90700, pdnsd/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-05-13 14:33:26 UTC (rev 90701)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Henrik Nymann Jensen <h at henriknj.dk>
+
+pkgname=pdnsd
+pkgver=1.2.9.a
+_pkgver=${pkgver/.a/a}
+pkgrel=2
+pkgdesc="Proxy DNS server with permanent caching"
+arch=(i686 x86_64)
+url="http://members.home.nl/p.a.rombouts/pdnsd/"
+license=('GPL')
+depends=('glibc')
+source=(http://members.home.nl/p.a.rombouts/pdnsd/releases/pdnsd-$_pkgver-par.tar.gz
+	service)
+md5sums=('2f3e705d59a0f9308ad9504b24400769'
+         'fad5e518d126b29fc947941d57a0a494')
+
+build() {
+	cd $srcdir/$pkgname-$_pkgver
+	./configure --prefix=/usr --sysconfdir=/etc
+	make
+}
+
+package() {
+	cd $srcdir/$pkgname-$_pkgver
+	make DESTDIR=$pkgdir install
+	install -Dm0644 $srcdir/service $pkgdir/usr/lib/systemd/system/pdnsd.service
+}

Deleted: community-x86_64/rc.d
===================================================================
--- community-x86_64/rc.d	2013-05-13 14:33:09 UTC (rev 90700)
+++ community-x86_64/rc.d	2013-05-13 14:33:26 UTC (rev 90701)
@@ -1,37 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/pdnsd`
-case "$1" in
-  start)
-    stat_busy "Starting pdnsd Daemon"
-    if [ -z "$PID" ]; then 
-       /usr/sbin/pdnsd -d
-    fi
-    if [ ! -z "$PID" -o $? -gt 0 ]; then
-      stat_fail
-    else
-      add_daemon pdnsd
-      stat_done
-    fi
-    ;;
-  stop)
-    stat_busy "Stopping pdnsd Daemon"
-    [ ! -z "$PID" ]  && kill -TERM $PID &> /dev/null
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      rm_daemon pdnsd
-      stat_done
-    fi
-    ;;
-  restart)
-    $0 stop
-    sleep 1
-    $0 start
-    ;;
-  *)
-    echo "usage: $0 {start|stop|restart}"  
-esac

Deleted: community-x86_64/service
===================================================================
--- community-x86_64/service	2013-05-13 14:33:09 UTC (rev 90700)
+++ community-x86_64/service	2013-05-13 14:33:26 UTC (rev 90701)
@@ -1,9 +0,0 @@
-[Unit]
-Description=proxy name server
-After=network.target
-
-[Service]
-ExecStart=/usr/sbin/pdnsd
-
-[Install]
-WantedBy=multi-user.target

Copied: pdnsd/repos/community-x86_64/service (from rev 90700, pdnsd/trunk/service)
===================================================================
--- community-x86_64/service	                        (rev 0)
+++ community-x86_64/service	2013-05-13 14:33:26 UTC (rev 90701)
@@ -0,0 +1,9 @@
+[Unit]
+Description=proxy name server
+After=network.target
+
+[Service]
+ExecStart=/usr/sbin/pdnsd
+
+[Install]
+WantedBy=multi-user.target




More information about the arch-commits mailing list