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

Pierre Schmitz pierre at archlinux.org
Sun Feb 26 11:37:33 UTC 2012


    Date: Sunday, February 26, 2012 @ 06:37:32
  Author: pierre
Revision: 151458

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

Added:
  pdns-recursor/repos/extra-i686/PKGBUILD
    (from rev 151457, pdns-recursor/trunk/PKGBUILD)
  pdns-recursor/repos/extra-i686/pdns-recursor.rc
    (from rev 151457, pdns-recursor/trunk/pdns-recursor.rc)
  pdns-recursor/repos/extra-x86_64/PKGBUILD
    (from rev 151457, pdns-recursor/trunk/PKGBUILD)
  pdns-recursor/repos/extra-x86_64/pdns-recursor.rc
    (from rev 151457, pdns-recursor/trunk/pdns-recursor.rc)
Deleted:
  pdns-recursor/repos/extra-i686/PKGBUILD
  pdns-recursor/repos/extra-i686/pdns-recursor.rc
  pdns-recursor/repos/extra-x86_64/PKGBUILD
  pdns-recursor/repos/extra-x86_64/pdns-recursor.rc

-------------------------------+
 extra-i686/PKGBUILD           |   63 +++++++++++++++++-------------------
 extra-i686/pdns-recursor.rc   |   70 ++++++++++++++++++++--------------------
 extra-x86_64/PKGBUILD         |   63 +++++++++++++++++-------------------
 extra-x86_64/pdns-recursor.rc |   70 ++++++++++++++++++++--------------------
 4 files changed, 132 insertions(+), 134 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2012-02-26 11:37:06 UTC (rev 151457)
+++ extra-i686/PKGBUILD	2012-02-26 11:37:32 UTC (rev 151458)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot <jgc at archlinux.org>
-
-pkgname=pdns-recursor
-pkgver=3.3
-pkgrel=1
-pkgdesc="PowerDNS recursor"
-url="http://www.powerdns.com"
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('gcc-libs>=4.5.2' 'lua')
-makedepends=('boost')
-#options=(!makeflags)
-backup=('etc/powerdns/recursor.conf')
-source=(http://downloads.powerdns.com/releases/${pkgname}-${pkgver}.tar.bz2
-        pdns-recursor.rc)
-md5sums=('87daeeebb6f7af9e07814ff6c43300dd'
-         '5b3aa3c8ed2edf55821af16cfb7ef252')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  LUA=1 LUA_CPPFLAGS_CONFIG= LUA_LIBS_CONFIG=-llua make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -d -m755 "${pkgdir}/etc/rc.d"
-  mv "${pkgdir}/etc/powerdns/recursor.conf-dist" "${pkgdir}/etc/powerdns/recursor.conf"
-  install -m755 "${srcdir}/pdns-recursor.rc" "${pkgdir}/etc/rc.d/pdns-recursor"
-  rm -rf "${pkgdir}/etc/init.d"
-}

Copied: pdns-recursor/repos/extra-i686/PKGBUILD (from rev 151457, pdns-recursor/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2012-02-26 11:37:32 UTC (rev 151458)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+
+pkgname=pdns-recursor
+pkgver=3.3
+pkgrel=2
+pkgdesc="PowerDNS recursor"
+url="http://www.powerdns.com"
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('gcc-libs' 'lua')
+makedepends=('boost')
+backup=('etc/powerdns/recursor.conf')
+source=("http://downloads.powerdns.com/releases/${pkgname}-${pkgver}.tar.bz2"
+        'pdns-recursor.rc')
+md5sums=('87daeeebb6f7af9e07814ff6c43300dd'
+         '5b3aa3c8ed2edf55821af16cfb7ef252')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  LUA=1 LUA_CPPFLAGS_CONFIG= LUA_LIBS_CONFIG=-llua make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -d -m755 "${pkgdir}/etc/rc.d"
+  mv "${pkgdir}/etc/powerdns/recursor.conf-dist" "${pkgdir}/etc/powerdns/recursor.conf"
+  install -m755 "${srcdir}/pdns-recursor.rc" "${pkgdir}/etc/rc.d/pdns-recursor"
+  rm -rf "${pkgdir}/etc/init.d"
+}

Deleted: extra-i686/pdns-recursor.rc
===================================================================
--- extra-i686/pdns-recursor.rc	2012-02-26 11:37:06 UTC (rev 151457)
+++ extra-i686/pdns-recursor.rc	2012-02-26 11:37:32 UTC (rev 151458)
@@ -1,35 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
-  start)
-    stat_busy "Starting PowerDNS recursor"
-    ! /usr/sbin/rec_control ping > /dev/null 2>&1 && /usr/sbin/pdns_recursor --daemon
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      add_daemon pdns-recursor
-      stat_done
-    fi
-    ;;
-  stop)
-    stat_busy "Stopping PowerDNS recursor"
-    rec_control quit > /dev/null 2>&1
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      rm_daemon pdns-recursor
-      stat_done
-    fi
-    ;;
-  restart)
-    $0 stop
-    sleep 3
-    $0 start
-    ;;
-  *)
-    echo "usage: $0 {start|stop|restart}"  
-esac
-exit 0

Copied: pdns-recursor/repos/extra-i686/pdns-recursor.rc (from rev 151457, pdns-recursor/trunk/pdns-recursor.rc)
===================================================================
--- extra-i686/pdns-recursor.rc	                        (rev 0)
+++ extra-i686/pdns-recursor.rc	2012-02-26 11:37:32 UTC (rev 151458)
@@ -0,0 +1,35 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+case "$1" in
+  start)
+    stat_busy "Starting PowerDNS recursor"
+    ! /usr/sbin/rec_control ping > /dev/null 2>&1 && /usr/sbin/pdns_recursor --daemon
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      add_daemon pdns-recursor
+      stat_done
+    fi
+    ;;
+  stop)
+    stat_busy "Stopping PowerDNS recursor"
+    rec_control quit > /dev/null 2>&1
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      rm_daemon pdns-recursor
+      stat_done
+    fi
+    ;;
+  restart)
+    $0 stop
+    sleep 3
+    $0 start
+    ;;
+  *)
+    echo "usage: $0 {start|stop|restart}"  
+esac
+exit 0

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2012-02-26 11:37:06 UTC (rev 151457)
+++ extra-x86_64/PKGBUILD	2012-02-26 11:37:32 UTC (rev 151458)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot <jgc at archlinux.org>
-
-pkgname=pdns-recursor
-pkgver=3.3
-pkgrel=1
-pkgdesc="PowerDNS recursor"
-url="http://www.powerdns.com"
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('gcc-libs>=4.5.2' 'lua')
-makedepends=('boost')
-#options=(!makeflags)
-backup=('etc/powerdns/recursor.conf')
-source=(http://downloads.powerdns.com/releases/${pkgname}-${pkgver}.tar.bz2
-        pdns-recursor.rc)
-md5sums=('87daeeebb6f7af9e07814ff6c43300dd'
-         '5b3aa3c8ed2edf55821af16cfb7ef252')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  LUA=1 LUA_CPPFLAGS_CONFIG= LUA_LIBS_CONFIG=-llua make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -d -m755 "${pkgdir}/etc/rc.d"
-  mv "${pkgdir}/etc/powerdns/recursor.conf-dist" "${pkgdir}/etc/powerdns/recursor.conf"
-  install -m755 "${srcdir}/pdns-recursor.rc" "${pkgdir}/etc/rc.d/pdns-recursor"
-  rm -rf "${pkgdir}/etc/init.d"
-}

Copied: pdns-recursor/repos/extra-x86_64/PKGBUILD (from rev 151457, pdns-recursor/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2012-02-26 11:37:32 UTC (rev 151458)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+
+pkgname=pdns-recursor
+pkgver=3.3
+pkgrel=2
+pkgdesc="PowerDNS recursor"
+url="http://www.powerdns.com"
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('gcc-libs' 'lua')
+makedepends=('boost')
+backup=('etc/powerdns/recursor.conf')
+source=("http://downloads.powerdns.com/releases/${pkgname}-${pkgver}.tar.bz2"
+        'pdns-recursor.rc')
+md5sums=('87daeeebb6f7af9e07814ff6c43300dd'
+         '5b3aa3c8ed2edf55821af16cfb7ef252')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  LUA=1 LUA_CPPFLAGS_CONFIG= LUA_LIBS_CONFIG=-llua make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -d -m755 "${pkgdir}/etc/rc.d"
+  mv "${pkgdir}/etc/powerdns/recursor.conf-dist" "${pkgdir}/etc/powerdns/recursor.conf"
+  install -m755 "${srcdir}/pdns-recursor.rc" "${pkgdir}/etc/rc.d/pdns-recursor"
+  rm -rf "${pkgdir}/etc/init.d"
+}

Deleted: extra-x86_64/pdns-recursor.rc
===================================================================
--- extra-x86_64/pdns-recursor.rc	2012-02-26 11:37:06 UTC (rev 151457)
+++ extra-x86_64/pdns-recursor.rc	2012-02-26 11:37:32 UTC (rev 151458)
@@ -1,35 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
-  start)
-    stat_busy "Starting PowerDNS recursor"
-    ! /usr/sbin/rec_control ping > /dev/null 2>&1 && /usr/sbin/pdns_recursor --daemon
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      add_daemon pdns-recursor
-      stat_done
-    fi
-    ;;
-  stop)
-    stat_busy "Stopping PowerDNS recursor"
-    rec_control quit > /dev/null 2>&1
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      rm_daemon pdns-recursor
-      stat_done
-    fi
-    ;;
-  restart)
-    $0 stop
-    sleep 3
-    $0 start
-    ;;
-  *)
-    echo "usage: $0 {start|stop|restart}"  
-esac
-exit 0

Copied: pdns-recursor/repos/extra-x86_64/pdns-recursor.rc (from rev 151457, pdns-recursor/trunk/pdns-recursor.rc)
===================================================================
--- extra-x86_64/pdns-recursor.rc	                        (rev 0)
+++ extra-x86_64/pdns-recursor.rc	2012-02-26 11:37:32 UTC (rev 151458)
@@ -0,0 +1,35 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+case "$1" in
+  start)
+    stat_busy "Starting PowerDNS recursor"
+    ! /usr/sbin/rec_control ping > /dev/null 2>&1 && /usr/sbin/pdns_recursor --daemon
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      add_daemon pdns-recursor
+      stat_done
+    fi
+    ;;
+  stop)
+    stat_busy "Stopping PowerDNS recursor"
+    rec_control quit > /dev/null 2>&1
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      rm_daemon pdns-recursor
+      stat_done
+    fi
+    ;;
+  restart)
+    $0 stop
+    sleep 3
+    $0 start
+    ;;
+  *)
+    echo "usage: $0 {start|stop|restart}"  
+esac
+exit 0




More information about the arch-commits mailing list