[arch-commits] Commit in miredo/trunk (4 files)

Sergej Pupykin spupykin at nymeria.archlinux.org
Mon May 13 14:28:49 UTC 2013


    Date: Monday, May 13, 2013 @ 16:28:49
  Author: spupykin
Revision: 90686

upgpkg: miredo 1.2.5-4

upd

Modified:
  miredo/trunk/PKGBUILD
Deleted:
  miredo/trunk/isatapd.rc.d
  miredo/trunk/miredo-server.rc.d
  miredo/trunk/miredo.rc.d

--------------------+
 PKGBUILD           |   11 +----------
 isatapd.rc.d       |   37 -------------------------------------
 miredo-server.rc.d |   37 -------------------------------------
 miredo.rc.d        |   37 -------------------------------------
 4 files changed, 1 insertion(+), 121 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2013-05-13 14:28:43 UTC (rev 90685)
+++ PKGBUILD	2013-05-13 14:28:49 UTC (rev 90686)
@@ -3,7 +3,7 @@
 
 pkgname=miredo
 pkgver=1.2.5
-pkgrel=3
+pkgrel=4
 pkgdesc="Teredo client and server."
 arch=('i686' 'x86_64')
 url="http://www.remlab.net/miredo/"
@@ -13,16 +13,10 @@
         'etc/miredo/client-hook')
 options=('!libtool')
 source=(http://www.remlab.net/files/${pkgname}/${pkgname}-${pkgver}.tar.xz
-	isatapd.rc.d
 	miredo.install
-	miredo.rc.d
-	miredo-server.rc.d
 	miredo.service)
 md5sums=('5114debbf9fcab5d292176e4548f8cd1'
-         '51ab6d091192605ee9206944869cb2ab'
          'd1b655d7a851cdb46c91c3418ed1962f'
-         'c5a9be5c3175fecec387f1710bfd2788'
-         '319aba1ae06349b76cb25fda0dba60a9'
          'abd7d8831cab7f3ea6d0d4e51b8f8f6a')
 
 build() {
@@ -42,9 +36,6 @@
 
   make DESTDIR="$pkgdir" install
 
-  install -D -m755 $srcdir/miredo.rc.d $pkgdir/etc/rc.d/miredo
-  install -D -m755 $srcdir/miredo-server.rc.d $pkgdir/etc/rc.d/miredo-server
-  install -D -m755 $srcdir/isatapd.rc.d $pkgdir/etc/rc.d/isatapd
   sed -i 's#/sbin/ip#/usr/sbin/ip#' $pkgdir/etc/miredo/client-hook
 
   # avoid conflict with filesystem>=2012.06

Deleted: isatapd.rc.d
===================================================================
--- isatapd.rc.d	2013-05-13 14:28:43 UTC (rev 90685)
+++ isatapd.rc.d	2013-05-13 14:28:49 UTC (rev 90686)
@@ -1,37 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/isatapd`
-case "$1" in
-  start)
-    stat_busy "Starting userspace ISATAP client"
-    if [ -z "$PID" ]; then 
-       /usr/sbin/isatapd
-    fi
-    if [ ! -z "$PID" -o $? -gt 0 ]; then
-      stat_fail
-    else
-      add_daemon isatapd
-      stat_done
-    fi
-    ;;
-  stop)
-    stat_busy "Stopping userspace ISATAP client"
-    [ ! -z "$PID" ] && kill $PID &>/dev/null
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      rm_daemon isatapd
-      stat_done
-    fi
-    ;;
-  restart)
-    $0 stop
-    sleep 1
-    $0 start
-    ;;
-  *)
-    echo "usage: $0 {start|stop|restart}"  
-esac

Deleted: miredo-server.rc.d
===================================================================
--- miredo-server.rc.d	2013-05-13 14:28:43 UTC (rev 90685)
+++ miredo-server.rc.d	2013-05-13 14:28:49 UTC (rev 90686)
@@ -1,37 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/miredo-server`
-case "$1" in
-  start)
-    stat_busy "Starting teredo protocol server"
-    if [ -z "$PID" ]; then 
-       /usr/sbin/miredo-server
-    fi
-    if [ ! -z "$PID" -o $? -gt 0 ]; then
-      stat_fail
-    else
-      add_daemon miredo-server
-      stat_done
-    fi
-    ;;
-  stop)
-    stat_busy "Stopping teredo protocol server"
-    [ ! -z "$PID" ] && kill $PID &>/dev/null
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      rm_daemon miredo-server
-      stat_done
-    fi
-    ;;
-  restart)
-    $0 stop
-    sleep 1
-    $0 start
-    ;;
-  *)
-    echo "usage: $0 {start|stop|restart}"  
-esac

Deleted: miredo.rc.d
===================================================================
--- miredo.rc.d	2013-05-13 14:28:43 UTC (rev 90685)
+++ miredo.rc.d	2013-05-13 14:28:49 UTC (rev 90686)
@@ -1,37 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/miredo`
-case "$1" in
-  start)
-    stat_busy "Starting teredo protocol client"
-    if [ -z "$PID" ]; then 
-       /usr/sbin/miredo
-    fi
-    if [ ! -z "$PID" -o $? -gt 0 ]; then
-      stat_fail
-    else
-      add_daemon miredo
-      stat_done
-    fi
-    ;;
-  stop)
-    stat_busy "Stopping teredo protocol client"
-    [ ! -z "$PID" ] && kill $PID &>/dev/null
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      rm_daemon miredo
-      stat_done
-    fi
-    ;;
-  restart)
-    $0 stop
-    sleep 1
-    $0 start
-    ;;
-  *)
-    echo "usage: $0 {start|stop|restart}"  
-esac




More information about the arch-commits mailing list