[arch-commits] Commit in rpcbind/repos (7 files)

2012-01-18 Thread Tobias Powalowski
Date: Wednesday, January 18, 2012 @ 12:16:35
  Author: tpowa
Revision: 146812

db-move: moved rpcbind from [testing] to [core] (x86_64)

Added:
  rpcbind/repos/core-x86_64/PKGBUILD
(from rev 146806, rpcbind/repos/testing-x86_64/PKGBUILD)
  rpcbind/repos/core-x86_64/rpcbind
(from rev 146806, rpcbind/repos/testing-x86_64/rpcbind)
  rpcbind/repos/core-x86_64/rpcbind-sunrpc.patch
(from rev 146806, rpcbind/repos/testing-x86_64/rpcbind-sunrpc.patch)
Deleted:
  rpcbind/repos/core-x86_64/PKGBUILD
  rpcbind/repos/core-x86_64/rpcbind
  rpcbind/repos/core-x86_64/rpcbind-sunrpc.patch
  rpcbind/repos/testing-x86_64/

--+
 PKGBUILD |   84 -
 rpcbind  |   78 ++---
 rpcbind-sunrpc.patch |   44 -
 3 files changed, 103 insertions(+), 103 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2012-01-18 17:16:33 UTC (rev 146811)
+++ core-x86_64/PKGBUILD2012-01-18 17:16:35 UTC (rev 146812)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=rpcbind
-pkgver=0.2.0
-pkgrel=5
-pkgdesc="portmap replacement which supports RPC over various protocols"
-arch=(i686 x86_64)
-depends=('bash' 'glibc' 'libtirpc')
-url="http://rpcbind.sourceforge.net";
-license=('custom')
-replaces=('portmap')
-source=(http://downloads.sourceforge.net/sourceforge/rpcbind/rpcbind-0.2.0.tar.bz2
-rpcbind-sunrpc.patch
-rpcbind)
-md5sums=('1a77ddb1aaea8099ab19c351eeb26316'
- 'c02ac36a98baac70b8a26190524b7b73'
- '78a963654f57cbb209e228884767836e')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  # patch for iana services file
-  patch -Np1 -i ../rpcbind-sunrpc.patch
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  # install missing man page - https://bugs.archlinux.org/task/21271
-  install -m644 man/rpcinfo.8 $pkgdir/usr/share/man/man8/
-  # install daemon 
-  install -D -m755 $srcdir/rpcbind $pkgdir/etc/rc.d/rpcbind
-  # install license
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/rpcbind/COPYING
-}

Copied: rpcbind/repos/core-x86_64/PKGBUILD (from rev 146806, 
rpcbind/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2012-01-18 17:16:35 UTC (rev 146812)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=rpcbind
+pkgver=0.2.0
+pkgrel=6
+pkgdesc="portmap replacement which supports RPC over various protocols"
+arch=(i686 x86_64)
+depends=('bash' 'glibc' 'libtirpc')
+url="http://rpcbind.sourceforge.net";
+license=('custom')
+replaces=('portmap')
+source=(http://downloads.sourceforge.net/sourceforge/rpcbind/rpcbind-0.2.0.tar.bz2
+rpcbind-sunrpc.patch
+rpcbind)
+md5sums=('1a77ddb1aaea8099ab19c351eeb26316'
+ 'c02ac36a98baac70b8a26190524b7b73'
+ '78a963654f57cbb209e228884767836e')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # patch for iana services file
+  patch -Np1 -i ../rpcbind-sunrpc.patch
+  ./configure --prefix=/usr --enable-warmstarts --with-statedir=/run
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # install missing man page - https://bugs.archlinux.org/task/21271
+  install -m644 man/rpcinfo.8 $pkgdir/usr/share/man/man8/
+  # install daemon 
+  install -D -m755 $srcdir/rpcbind $pkgdir/etc/rc.d/rpcbind
+  # install license
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/rpcbind/COPYING
+}

Deleted: core-x86_64/rpcbind
===
--- core-x86_64/rpcbind 2012-01-18 17:16:33 UTC (rev 146811)
+++ core-x86_64/rpcbind 2012-01-18 17:16:35 UTC (rev 146812)
@@ -1,39 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID="$(pidof -o %PPID /usr/bin/rpcbind)"
-case "$1" in
-  start)
-stat_busy "Starting rpcbind"
-[ -z "$PID" ] && /usr/bin/rpcbind &>/dev/null
-if [ $? -gt 0 ]; then
-  stat_fail
-else
-  PID=$(pidof -o %PPID /usr/bin/rpcbind)
-  echo $PID > /var/run/rpcbind.pid
-  add_daemon rpcbind
-  stat_done
-fi
-;;
-  stop)
-stat_busy "Stopping rpcbind"
-[ ! -z "$PID" ]  && kill $PID &> /dev/null
-if [ $? -gt 0 ]; then
-  stat_fail
-else
-  rm /var/run/rpcbind.pid
-  rm_daemon rpcbind
-  stat_done
-fi
-;;
-  restart)
-$0 stop
-sleep 1
-$0 start
-;;
-  *)
-echo "usage: $0 {start|stop|restart}"  
-esac
-exit 0

Copied: rpcbind/repos/core-x86_64/rpcbind (from rev 146806, 
rpcbind/repos/testing-x86_64/rpcbind)
===

[arch-commits] Commit in rpcbind/repos (7 files)

2012-01-18 Thread Tobias Powalowski
Date: Wednesday, January 18, 2012 @ 12:16:33
  Author: tpowa
Revision: 146811

db-move: moved rpcbind from [testing] to [core] (i686)

Added:
  rpcbind/repos/core-i686/PKGBUILD
(from rev 146806, rpcbind/repos/testing-i686/PKGBUILD)
  rpcbind/repos/core-i686/rpcbind
(from rev 146806, rpcbind/repos/testing-i686/rpcbind)
  rpcbind/repos/core-i686/rpcbind-sunrpc.patch
(from rev 146806, rpcbind/repos/testing-i686/rpcbind-sunrpc.patch)
Deleted:
  rpcbind/repos/core-i686/PKGBUILD
  rpcbind/repos/core-i686/rpcbind
  rpcbind/repos/core-i686/rpcbind-sunrpc.patch
  rpcbind/repos/testing-i686/

--+
 PKGBUILD |   84 -
 rpcbind  |   78 ++---
 rpcbind-sunrpc.patch |   44 -
 3 files changed, 103 insertions(+), 103 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-01-18 17:16:31 UTC (rev 146810)
+++ core-i686/PKGBUILD  2012-01-18 17:16:33 UTC (rev 146811)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=rpcbind
-pkgver=0.2.0
-pkgrel=5
-pkgdesc="portmap replacement which supports RPC over various protocols"
-arch=(i686 x86_64)
-depends=('bash' 'glibc' 'libtirpc')
-url="http://rpcbind.sourceforge.net";
-license=('custom')
-replaces=('portmap')
-source=(http://downloads.sourceforge.net/sourceforge/rpcbind/rpcbind-0.2.0.tar.bz2
-rpcbind-sunrpc.patch
-rpcbind)
-md5sums=('1a77ddb1aaea8099ab19c351eeb26316'
- 'c02ac36a98baac70b8a26190524b7b73'
- '78a963654f57cbb209e228884767836e')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  # patch for iana services file
-  patch -Np1 -i ../rpcbind-sunrpc.patch
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  # install missing man page - https://bugs.archlinux.org/task/21271
-  install -m644 man/rpcinfo.8 $pkgdir/usr/share/man/man8/
-  # install daemon 
-  install -D -m755 $srcdir/rpcbind $pkgdir/etc/rc.d/rpcbind
-  # install license
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/rpcbind/COPYING
-}

Copied: rpcbind/repos/core-i686/PKGBUILD (from rev 146806, 
rpcbind/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-01-18 17:16:33 UTC (rev 146811)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=rpcbind
+pkgver=0.2.0
+pkgrel=6
+pkgdesc="portmap replacement which supports RPC over various protocols"
+arch=(i686 x86_64)
+depends=('bash' 'glibc' 'libtirpc')
+url="http://rpcbind.sourceforge.net";
+license=('custom')
+replaces=('portmap')
+source=(http://downloads.sourceforge.net/sourceforge/rpcbind/rpcbind-0.2.0.tar.bz2
+rpcbind-sunrpc.patch
+rpcbind)
+md5sums=('1a77ddb1aaea8099ab19c351eeb26316'
+ 'c02ac36a98baac70b8a26190524b7b73'
+ '78a963654f57cbb209e228884767836e')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # patch for iana services file
+  patch -Np1 -i ../rpcbind-sunrpc.patch
+  ./configure --prefix=/usr --enable-warmstarts --with-statedir=/run
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # install missing man page - https://bugs.archlinux.org/task/21271
+  install -m644 man/rpcinfo.8 $pkgdir/usr/share/man/man8/
+  # install daemon 
+  install -D -m755 $srcdir/rpcbind $pkgdir/etc/rc.d/rpcbind
+  # install license
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/rpcbind/COPYING
+}

Deleted: core-i686/rpcbind
===
--- core-i686/rpcbind   2012-01-18 17:16:31 UTC (rev 146810)
+++ core-i686/rpcbind   2012-01-18 17:16:33 UTC (rev 146811)
@@ -1,39 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID="$(pidof -o %PPID /usr/bin/rpcbind)"
-case "$1" in
-  start)
-stat_busy "Starting rpcbind"
-[ -z "$PID" ] && /usr/bin/rpcbind &>/dev/null
-if [ $? -gt 0 ]; then
-  stat_fail
-else
-  PID=$(pidof -o %PPID /usr/bin/rpcbind)
-  echo $PID > /var/run/rpcbind.pid
-  add_daemon rpcbind
-  stat_done
-fi
-;;
-  stop)
-stat_busy "Stopping rpcbind"
-[ ! -z "$PID" ]  && kill $PID &> /dev/null
-if [ $? -gt 0 ]; then
-  stat_fail
-else
-  rm /var/run/rpcbind.pid
-  rm_daemon rpcbind
-  stat_done
-fi
-;;
-  restart)
-$0 stop
-sleep 1
-$0 start
-;;
-  *)
-echo "usage: $0 {start|stop|restart}"  
-esac
-exit 0

Copied: rpcbind/repos/core-i686/rpcbind (from rev 146806, 
rpcbind/repos/testing-i686/rpcbind)
===
--- core-i686/rpcbind

[arch-commits] Commit in rpcbind/repos (7 files)

2011-11-14 Thread Tobias Powalowski
Date: Monday, November 14, 2011 @ 15:23:15
  Author: tpowa
Revision: 142757

db-move: moved rpcbind from [testing] to [core] (x86_64)

Added:
  rpcbind/repos/core-x86_64/PKGBUILD
(from rev 142755, rpcbind/repos/testing-x86_64/PKGBUILD)
  rpcbind/repos/core-x86_64/rpcbind
(from rev 142755, rpcbind/repos/testing-x86_64/rpcbind)
  rpcbind/repos/core-x86_64/rpcbind-sunrpc.patch
(from rev 142755, rpcbind/repos/testing-x86_64/rpcbind-sunrpc.patch)
Deleted:
  rpcbind/repos/core-x86_64/PKGBUILD
  rpcbind/repos/core-x86_64/rpcbind
  rpcbind/repos/core-x86_64/rpcbind-sunrpc.patch
  rpcbind/repos/testing-x86_64/

--+
 PKGBUILD |   79 ++---
 rpcbind  |   78 
 rpcbind-sunrpc.patch |   44 +--
 3 files changed, 103 insertions(+), 98 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-11-14 20:23:14 UTC (rev 142756)
+++ core-x86_64/PKGBUILD2011-11-14 20:23:15 UTC (rev 142757)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=rpcbind
-pkgver=0.2.0
-pkgrel=3
-pkgdesc="portmap replacement which supports RPC over various protocols"
-arch=(i686 x86_64)
-depends=('bash' 'glibc' 'libtirpc')
-url="http://rpcbind.sourceforge.net";
-license=('custom')
-replaces=('portmap')
-source=(http://downloads.sourceforge.net/sourceforge/rpcbind/rpcbind-0.2.0.tar.bz2
-rpcbind-sunrpc.patch
-rpcbind)
-md5sums=('1a77ddb1aaea8099ab19c351eeb26316'
- 'c02ac36a98baac70b8a26190524b7b73'
- '78a963654f57cbb209e228884767836e')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  # patch for iana services file
-  patch -Np1 -i ../rpcbind-sunrpc.patch
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  # install missing man page - https://bugs.archlinux.org/task/21271
-  install -m644 man/rpcinfo.8 $pkgdir/usr/share/man/man8/
-  # install daemon 
-  install -D -m755 $srcdir/rpcbind $pkgdir/etc/rc.d/rpcbind
-  # install license
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/rpcbind/COPYING
-}

Copied: rpcbind/repos/core-x86_64/PKGBUILD (from rev 142755, 
rpcbind/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-11-14 20:23:15 UTC (rev 142757)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=rpcbind
+pkgver=0.2.0
+pkgrel=5
+pkgdesc="portmap replacement which supports RPC over various protocols"
+arch=(i686 x86_64)
+depends=('bash' 'glibc' 'libtirpc')
+url="http://rpcbind.sourceforge.net";
+license=('custom')
+replaces=('portmap')
+source=(http://downloads.sourceforge.net/sourceforge/rpcbind/rpcbind-0.2.0.tar.bz2
+rpcbind-sunrpc.patch
+rpcbind)
+md5sums=('1a77ddb1aaea8099ab19c351eeb26316'
+ 'c02ac36a98baac70b8a26190524b7b73'
+ '78a963654f57cbb209e228884767836e')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # patch for iana services file
+  patch -Np1 -i ../rpcbind-sunrpc.patch
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # install missing man page - https://bugs.archlinux.org/task/21271
+  install -m644 man/rpcinfo.8 $pkgdir/usr/share/man/man8/
+  # install daemon 
+  install -D -m755 $srcdir/rpcbind $pkgdir/etc/rc.d/rpcbind
+  # install license
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/rpcbind/COPYING
+}

Deleted: core-x86_64/rpcbind
===
--- core-x86_64/rpcbind 2011-11-14 20:23:14 UTC (rev 142756)
+++ core-x86_64/rpcbind 2011-11-14 20:23:15 UTC (rev 142757)
@@ -1,39 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID="$(pidof -o %PPID /usr/bin/rpcbind)"
-case "$1" in
-  start)
-stat_busy "Starting rpcbind"
-[ -z "$PID" ] && /usr/bin/rpcbind &>/dev/null
-if [ $? -gt 0 ]; then
-  stat_fail
-else
-  PID=$(pidof -o %PPID /usr/bin/rpcbind)
-  echo $PID > /var/run/rpcbind.pid
-  add_daemon rpcbind
-  stat_done
-fi
-;;
-  stop)
-stat_busy "Stopping rpcbind"
-[ ! -z "$PID" ]  && kill $PID &> /dev/null
-if [ $? -gt 0 ]; then
-  stat_fail
-else
-  rm /var/run/rpcbind.pid
-  rm_daemon rpcbind
-  stat_done
-fi
-;;
-  restart)
-$0 stop
-sleep 1
-$0 start
-;;
-  *)
-echo "usage: $0 {start|stop|restart}"  
-esac
-exit 0

Copied: rpcbind/repos/core-x86_64/rpcbind (from rev 142755, 
rpcbind/repos/testing-x86_64/rpcbind)
===
--- core-x86_64/rpcbind (rev 0)
+++ cor

[arch-commits] Commit in rpcbind/repos (7 files)

2011-11-14 Thread Tobias Powalowski
Date: Monday, November 14, 2011 @ 15:23:14
  Author: tpowa
Revision: 142756

db-move: moved rpcbind from [testing] to [core] (i686)

Added:
  rpcbind/repos/core-i686/PKGBUILD
(from rev 142755, rpcbind/repos/testing-i686/PKGBUILD)
  rpcbind/repos/core-i686/rpcbind
(from rev 142755, rpcbind/repos/testing-i686/rpcbind)
  rpcbind/repos/core-i686/rpcbind-sunrpc.patch
(from rev 142755, rpcbind/repos/testing-i686/rpcbind-sunrpc.patch)
Deleted:
  rpcbind/repos/core-i686/PKGBUILD
  rpcbind/repos/core-i686/rpcbind
  rpcbind/repos/core-i686/rpcbind-sunrpc.patch
  rpcbind/repos/testing-i686/

--+
 PKGBUILD |   79 ++---
 rpcbind  |   78 
 rpcbind-sunrpc.patch |   44 +--
 3 files changed, 103 insertions(+), 98 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-11-14 19:44:44 UTC (rev 142755)
+++ core-i686/PKGBUILD  2011-11-14 20:23:14 UTC (rev 142756)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=rpcbind
-pkgver=0.2.0
-pkgrel=3
-pkgdesc="portmap replacement which supports RPC over various protocols"
-arch=(i686 x86_64)
-depends=('bash' 'glibc' 'libtirpc')
-url="http://rpcbind.sourceforge.net";
-license=('custom')
-replaces=('portmap')
-source=(http://downloads.sourceforge.net/sourceforge/rpcbind/rpcbind-0.2.0.tar.bz2
-rpcbind-sunrpc.patch
-rpcbind)
-md5sums=('1a77ddb1aaea8099ab19c351eeb26316'
- 'c02ac36a98baac70b8a26190524b7b73'
- '78a963654f57cbb209e228884767836e')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  # patch for iana services file
-  patch -Np1 -i ../rpcbind-sunrpc.patch
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  # install missing man page - https://bugs.archlinux.org/task/21271
-  install -m644 man/rpcinfo.8 $pkgdir/usr/share/man/man8/
-  # install daemon 
-  install -D -m755 $srcdir/rpcbind $pkgdir/etc/rc.d/rpcbind
-  # install license
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/rpcbind/COPYING
-}

Copied: rpcbind/repos/core-i686/PKGBUILD (from rev 142755, 
rpcbind/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-11-14 20:23:14 UTC (rev 142756)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=rpcbind
+pkgver=0.2.0
+pkgrel=5
+pkgdesc="portmap replacement which supports RPC over various protocols"
+arch=(i686 x86_64)
+depends=('bash' 'glibc' 'libtirpc')
+url="http://rpcbind.sourceforge.net";
+license=('custom')
+replaces=('portmap')
+source=(http://downloads.sourceforge.net/sourceforge/rpcbind/rpcbind-0.2.0.tar.bz2
+rpcbind-sunrpc.patch
+rpcbind)
+md5sums=('1a77ddb1aaea8099ab19c351eeb26316'
+ 'c02ac36a98baac70b8a26190524b7b73'
+ '78a963654f57cbb209e228884767836e')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # patch for iana services file
+  patch -Np1 -i ../rpcbind-sunrpc.patch
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # install missing man page - https://bugs.archlinux.org/task/21271
+  install -m644 man/rpcinfo.8 $pkgdir/usr/share/man/man8/
+  # install daemon 
+  install -D -m755 $srcdir/rpcbind $pkgdir/etc/rc.d/rpcbind
+  # install license
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/rpcbind/COPYING
+}

Deleted: core-i686/rpcbind
===
--- core-i686/rpcbind   2011-11-14 19:44:44 UTC (rev 142755)
+++ core-i686/rpcbind   2011-11-14 20:23:14 UTC (rev 142756)
@@ -1,39 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID="$(pidof -o %PPID /usr/bin/rpcbind)"
-case "$1" in
-  start)
-stat_busy "Starting rpcbind"
-[ -z "$PID" ] && /usr/bin/rpcbind &>/dev/null
-if [ $? -gt 0 ]; then
-  stat_fail
-else
-  PID=$(pidof -o %PPID /usr/bin/rpcbind)
-  echo $PID > /var/run/rpcbind.pid
-  add_daemon rpcbind
-  stat_done
-fi
-;;
-  stop)
-stat_busy "Stopping rpcbind"
-[ ! -z "$PID" ]  && kill $PID &> /dev/null
-if [ $? -gt 0 ]; then
-  stat_fail
-else
-  rm /var/run/rpcbind.pid
-  rm_daemon rpcbind
-  stat_done
-fi
-;;
-  restart)
-$0 stop
-sleep 1
-$0 start
-;;
-  *)
-echo "usage: $0 {start|stop|restart}"  
-esac
-exit 0

Copied: rpcbind/repos/core-i686/rpcbind (from rev 142755, 
rpcbind/repos/testing-i686/rpcbind)
===
--- core-i686/rpcbind   (rev 0)
+++ core-i686/rpcbind   2011-11-14 20:23:14 UTC (rev 142756)
@@ -0,0 +1,3