[arch-commits] Commit in fssos-nsvs/repos (12 files)

Pierre Schmitz pierre at archlinux.org
Fri Feb 24 09:43:05 UTC 2012


    Date: Friday, February 24, 2012 @ 04:43:04
  Author: pierre
Revision: 150944

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

Added:
  fssos-nsvs/repos/extra-i686/PKGBUILD
    (from rev 150943, fssos-nsvs/trunk/PKGBUILD)
  fssos-nsvs/repos/extra-i686/fssos-nsvs.install
    (from rev 150943, fssos-nsvs/trunk/fssos-nsvs.install)
  fssos-nsvs/repos/extra-i686/nsvsd
    (from rev 150943, fssos-nsvs/trunk/nsvsd)
  fssos-nsvs/repos/extra-x86_64/PKGBUILD
    (from rev 150943, fssos-nsvs/trunk/PKGBUILD)
  fssos-nsvs/repos/extra-x86_64/fssos-nsvs.install
    (from rev 150943, fssos-nsvs/trunk/fssos-nsvs.install)
  fssos-nsvs/repos/extra-x86_64/nsvsd
    (from rev 150943, fssos-nsvs/trunk/nsvsd)
Deleted:
  fssos-nsvs/repos/extra-i686/PKGBUILD
  fssos-nsvs/repos/extra-i686/fssos-nsvs.install
  fssos-nsvs/repos/extra-i686/nsvsd
  fssos-nsvs/repos/extra-x86_64/PKGBUILD
  fssos-nsvs/repos/extra-x86_64/fssos-nsvs.install
  fssos-nsvs/repos/extra-x86_64/nsvsd

---------------------------------+
 extra-i686/PKGBUILD             |   59 +++++++++++++++----------------
 extra-i686/fssos-nsvs.install   |   34 ++++++++---------
 extra-i686/nsvsd                |   72 +++++++++++++++++++-------------------
 extra-x86_64/PKGBUILD           |   59 +++++++++++++++----------------
 extra-x86_64/fssos-nsvs.install |   34 ++++++++---------
 extra-x86_64/nsvsd              |   72 +++++++++++++++++++-------------------
 6 files changed, 166 insertions(+), 164 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2012-02-24 09:42:31 UTC (rev 150943)
+++ extra-i686/PKGBUILD	2012-02-24 09:43:04 UTC (rev 150944)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Dale Blount <dale at archlinux.org>
-
-pkgname=fssos-nsvs
-pkgver=0.5
-pkgrel=7
-pkgdesc="NSVS for FSSOS"
-arch=('i686' 'x86_64')
-url="http://fssos.sourceforge.net/"
-license=('GPL')
-depends=('bash' 'mysql>=5.5')
-backup=('etc/nsvsd.conf')
-options=('!libtool' '!makeflags')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/sourceforge/fssos/nsvs-$pkgver.tar.gz
-        nsvsd)
-md5sums=('3f17c2f6339f1a322b712b467023d825' '4dfd9dc0d69b375587e39ab2621d9ea9')
-
-build() {
-  cd $srcdir/nsvs-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make CFLAGS="${CFLAGS} -D_GNU_SOURCE"
-}
-
-package() {
-  cd $srcdir/nsvs-$pkgver
-  make DESTDIR=$pkgdir install
-  install -D -m755 $srcdir/nsvsd $pkgdir/etc/rc.d/nsvsd
-}

Copied: fssos-nsvs/repos/extra-i686/PKGBUILD (from rev 150943, fssos-nsvs/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2012-02-24 09:43:04 UTC (rev 150944)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Dale Blount <dale at archlinux.org>
+
+pkgname=fssos-nsvs
+pkgver=0.5
+pkgrel=8
+pkgdesc="NSVS for FSSOS"
+arch=('i686' 'x86_64')
+url="http://fssos.sourceforge.net/"
+license=('GPL')
+depends=('bash' 'mysql')
+backup=('etc/nsvsd.conf')
+options=('!libtool' '!makeflags')
+install=$pkgname.install
+source=("http://downloads.sourceforge.net/sourceforge/fssos/nsvs-$pkgver.tar.gz"
+        'nsvsd')
+md5sums=('3f17c2f6339f1a322b712b467023d825'
+         '4dfd9dc0d69b375587e39ab2621d9ea9')
+
+build() {
+  cd $srcdir/nsvs-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make CFLAGS="${CFLAGS} -D_GNU_SOURCE"
+}
+
+package() {
+  cd $srcdir/nsvs-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D -m755 $srcdir/nsvsd $pkgdir/etc/rc.d/nsvsd
+}

Deleted: extra-i686/fssos-nsvs.install
===================================================================
--- extra-i686/fssos-nsvs.install	2012-02-24 09:42:31 UTC (rev 150943)
+++ extra-i686/fssos-nsvs.install	2012-02-24 09:43:04 UTC (rev 150944)
@@ -1,17 +0,0 @@
-post_install() {
-    if [ -z "`grep '^nsvsd::' /etc/group`" ]; then
-	groupadd -g 83 nsvsd
-    fi
-    if [ -z "`grep '^nsvsd:' /etc/passwd`" ]; then
-	useradd -u 83 -d /tmp -g nsvsd -s /bin/false nsvsd
-    fi
-}
-
-post_upgrade() {
-    post_install $1
-}
-
-pre_remove() {
-    userdel nsvsd &> /dev/null
-    groupdel nsvsd &> /dev/null
-}

Copied: fssos-nsvs/repos/extra-i686/fssos-nsvs.install (from rev 150943, fssos-nsvs/trunk/fssos-nsvs.install)
===================================================================
--- extra-i686/fssos-nsvs.install	                        (rev 0)
+++ extra-i686/fssos-nsvs.install	2012-02-24 09:43:04 UTC (rev 150944)
@@ -0,0 +1,17 @@
+post_install() {
+    if [ -z "`grep '^nsvsd::' /etc/group`" ]; then
+	groupadd -g 83 nsvsd
+    fi
+    if [ -z "`grep '^nsvsd:' /etc/passwd`" ]; then
+	useradd -u 83 -d /tmp -g nsvsd -s /bin/false nsvsd
+    fi
+}
+
+post_upgrade() {
+    post_install $1
+}
+
+pre_remove() {
+    userdel nsvsd &> /dev/null
+    groupdel nsvsd &> /dev/null
+}

Deleted: extra-i686/nsvsd
===================================================================
--- extra-i686/nsvsd	2012-02-24 09:42:31 UTC (rev 150943)
+++ extra-i686/nsvsd	2012-02-24 09:43:04 UTC (rev 150944)
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-# general config
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
-  start)
-    stat_busy "Starting nsvsd"
-	/usr/sbin/nsvsd -f /etc/nsvsd.conf
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      add_daemon nsvsd
-      stat_done
-    fi
-    ;;
-  stop)
-    stat_busy "Stopping nsvsd"
-    kill `cat /var/run/nsvsd.pid` &>/dev/null
-    rm -f /var/run/nsvsd.pid
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      rm_daemon nsvsd
-      stat_done
-    fi
-    ;;
-  restart)
-    $0 stop
-    sleep 3
-    $0 start
-    ;;
-  *)
-    echo "usage: $0 {start|stop|restart}"  
-esac

Copied: fssos-nsvs/repos/extra-i686/nsvsd (from rev 150943, fssos-nsvs/trunk/nsvsd)
===================================================================
--- extra-i686/nsvsd	                        (rev 0)
+++ extra-i686/nsvsd	2012-02-24 09:43:04 UTC (rev 150944)
@@ -0,0 +1,36 @@
+#!/bin/bash
+
+# general config
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+case "$1" in
+  start)
+    stat_busy "Starting nsvsd"
+	/usr/sbin/nsvsd -f /etc/nsvsd.conf
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      add_daemon nsvsd
+      stat_done
+    fi
+    ;;
+  stop)
+    stat_busy "Stopping nsvsd"
+    kill `cat /var/run/nsvsd.pid` &>/dev/null
+    rm -f /var/run/nsvsd.pid
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      rm_daemon nsvsd
+      stat_done
+    fi
+    ;;
+  restart)
+    $0 stop
+    sleep 3
+    $0 start
+    ;;
+  *)
+    echo "usage: $0 {start|stop|restart}"  
+esac

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2012-02-24 09:42:31 UTC (rev 150943)
+++ extra-x86_64/PKGBUILD	2012-02-24 09:43:04 UTC (rev 150944)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Dale Blount <dale at archlinux.org>
-
-pkgname=fssos-nsvs
-pkgver=0.5
-pkgrel=7
-pkgdesc="NSVS for FSSOS"
-arch=('i686' 'x86_64')
-url="http://fssos.sourceforge.net/"
-license=('GPL')
-depends=('bash' 'mysql>=5.5')
-backup=('etc/nsvsd.conf')
-options=('!libtool' '!makeflags')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/sourceforge/fssos/nsvs-$pkgver.tar.gz
-        nsvsd)
-md5sums=('3f17c2f6339f1a322b712b467023d825' '4dfd9dc0d69b375587e39ab2621d9ea9')
-
-build() {
-  cd $srcdir/nsvs-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make CFLAGS="${CFLAGS} -D_GNU_SOURCE"
-}
-
-package() {
-  cd $srcdir/nsvs-$pkgver
-  make DESTDIR=$pkgdir install
-  install -D -m755 $srcdir/nsvsd $pkgdir/etc/rc.d/nsvsd
-}

Copied: fssos-nsvs/repos/extra-x86_64/PKGBUILD (from rev 150943, fssos-nsvs/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2012-02-24 09:43:04 UTC (rev 150944)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Dale Blount <dale at archlinux.org>
+
+pkgname=fssos-nsvs
+pkgver=0.5
+pkgrel=8
+pkgdesc="NSVS for FSSOS"
+arch=('i686' 'x86_64')
+url="http://fssos.sourceforge.net/"
+license=('GPL')
+depends=('bash' 'mysql')
+backup=('etc/nsvsd.conf')
+options=('!libtool' '!makeflags')
+install=$pkgname.install
+source=("http://downloads.sourceforge.net/sourceforge/fssos/nsvs-$pkgver.tar.gz"
+        'nsvsd')
+md5sums=('3f17c2f6339f1a322b712b467023d825'
+         '4dfd9dc0d69b375587e39ab2621d9ea9')
+
+build() {
+  cd $srcdir/nsvs-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make CFLAGS="${CFLAGS} -D_GNU_SOURCE"
+}
+
+package() {
+  cd $srcdir/nsvs-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D -m755 $srcdir/nsvsd $pkgdir/etc/rc.d/nsvsd
+}

Deleted: extra-x86_64/fssos-nsvs.install
===================================================================
--- extra-x86_64/fssos-nsvs.install	2012-02-24 09:42:31 UTC (rev 150943)
+++ extra-x86_64/fssos-nsvs.install	2012-02-24 09:43:04 UTC (rev 150944)
@@ -1,17 +0,0 @@
-post_install() {
-    if [ -z "`grep '^nsvsd::' /etc/group`" ]; then
-	groupadd -g 83 nsvsd
-    fi
-    if [ -z "`grep '^nsvsd:' /etc/passwd`" ]; then
-	useradd -u 83 -d /tmp -g nsvsd -s /bin/false nsvsd
-    fi
-}
-
-post_upgrade() {
-    post_install $1
-}
-
-pre_remove() {
-    userdel nsvsd &> /dev/null
-    groupdel nsvsd &> /dev/null
-}

Copied: fssos-nsvs/repos/extra-x86_64/fssos-nsvs.install (from rev 150943, fssos-nsvs/trunk/fssos-nsvs.install)
===================================================================
--- extra-x86_64/fssos-nsvs.install	                        (rev 0)
+++ extra-x86_64/fssos-nsvs.install	2012-02-24 09:43:04 UTC (rev 150944)
@@ -0,0 +1,17 @@
+post_install() {
+    if [ -z "`grep '^nsvsd::' /etc/group`" ]; then
+	groupadd -g 83 nsvsd
+    fi
+    if [ -z "`grep '^nsvsd:' /etc/passwd`" ]; then
+	useradd -u 83 -d /tmp -g nsvsd -s /bin/false nsvsd
+    fi
+}
+
+post_upgrade() {
+    post_install $1
+}
+
+pre_remove() {
+    userdel nsvsd &> /dev/null
+    groupdel nsvsd &> /dev/null
+}

Deleted: extra-x86_64/nsvsd
===================================================================
--- extra-x86_64/nsvsd	2012-02-24 09:42:31 UTC (rev 150943)
+++ extra-x86_64/nsvsd	2012-02-24 09:43:04 UTC (rev 150944)
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-# general config
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
-  start)
-    stat_busy "Starting nsvsd"
-	/usr/sbin/nsvsd -f /etc/nsvsd.conf
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      add_daemon nsvsd
-      stat_done
-    fi
-    ;;
-  stop)
-    stat_busy "Stopping nsvsd"
-    kill `cat /var/run/nsvsd.pid` &>/dev/null
-    rm -f /var/run/nsvsd.pid
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      rm_daemon nsvsd
-      stat_done
-    fi
-    ;;
-  restart)
-    $0 stop
-    sleep 3
-    $0 start
-    ;;
-  *)
-    echo "usage: $0 {start|stop|restart}"  
-esac

Copied: fssos-nsvs/repos/extra-x86_64/nsvsd (from rev 150943, fssos-nsvs/trunk/nsvsd)
===================================================================
--- extra-x86_64/nsvsd	                        (rev 0)
+++ extra-x86_64/nsvsd	2012-02-24 09:43:04 UTC (rev 150944)
@@ -0,0 +1,36 @@
+#!/bin/bash
+
+# general config
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+case "$1" in
+  start)
+    stat_busy "Starting nsvsd"
+	/usr/sbin/nsvsd -f /etc/nsvsd.conf
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      add_daemon nsvsd
+      stat_done
+    fi
+    ;;
+  stop)
+    stat_busy "Stopping nsvsd"
+    kill `cat /var/run/nsvsd.pid` &>/dev/null
+    rm -f /var/run/nsvsd.pid
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      rm_daemon nsvsd
+      stat_done
+    fi
+    ;;
+  restart)
+    $0 stop
+    sleep 3
+    $0 start
+    ;;
+  *)
+    echo "usage: $0 {start|stop|restart}"  
+esac




More information about the arch-commits mailing list