Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Andra?? Levstik (f162d51fa6bd471e57b540466b91e694a1a59ff3)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Andra?? Levstik <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Andra?? Levstik (f162d51fa6bd471e57b540466b91e694a1a59ff3)
  • Date: Tue, 19 Dec 2006 11:46:17 -0600

GIT changes to master grimoire by Andra?? Levstik <ruskie AT mages.ath.cx>:

ChangeLog | 4 ++++
net/spfs/BUILD | 1 +
net/spfs/DETAILS | 15 +++++++++++++++
net/spfs/HISTORY | 3 +++
net/spfs/INSTALL | 1 +
net/spfs/init.d/spfs | 24 ++++++++++++++++++++++++
net/spfs/init.d/spfs.conf | 1 +
7 files changed, 49 insertions(+)

New commits:
commit f162d51fa6bd471e57b540466b91e694a1a59ff3
Author: Andra?? Levstik <ruskie AT mages.ath.cx>
Commit: Andra?? Levstik <ruskie AT mages.ath.cx>

spfs: new spell

diff --git a/ChangeLog b/ChangeLog
index d3549d2..f58019d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-12-19 Andra?? "ruskie" Levstik <ruskie AT mages.ath.cx>
+ * net/spfs: new spell, spfs a single threaded 9p2000.u
+ compatible userspace server
+
2006-12-18 Pol Vinogradov <vin.public AT gmail.com>
* devel/refal5: new spell, a REcursive Functions ALgorithmic
programming language
diff --git a/net/spfs/BUILD b/net/spfs/BUILD
new file mode 100755
index 0000000..8f58e6d
--- /dev/null
+++ b/net/spfs/BUILD
@@ -0,0 +1 @@
+make
diff --git a/net/spfs/DETAILS b/net/spfs/DETAILS
new file mode 100755
index 0000000..88d3c24
--- /dev/null
+++ b/net/spfs/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=spfs
+ VERSION=cvs
+ SOURCE=$SPELL-cvs.tar.bz2
+ FORCE_DOWNLOAD=on
+
SOURCE_URL[0]=cvs://:pserver:anonymous AT npfs.cvs.sourceforge.net:/cvsroot/npfs:spfs
+ SOURCE_IGNORE=volatile
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/$SPELL-cvs"
+ WEB_SITE=http://sourceforge.net/projects/npfs
+ LICENSE[0]=BSD
+ ENTERED=20061217
+ SHORT="Plan 9 Userspace Resource Server single threaded"
+cat << EOF
+This is a single threaded Plan 9(9p2000 and 9p2000.u) Resource
+sharing server.
+EOF
diff --git a/net/spfs/HISTORY b/net/spfs/HISTORY
new file mode 100644
index 0000000..309e6fc
--- /dev/null
+++ b/net/spfs/HISTORY
@@ -0,0 +1,3 @@
+2006-12-19 Andra?? "ruskie" Levstik <ruskie AT mages.ath.cx>
+ * DETAILS, DEPENDS, BUILD, INSTALL, HISTORY: created spell
+ * init.d/npfs, init./npfs.conf: created spell
diff --git a/net/spfs/INSTALL b/net/spfs/INSTALL
new file mode 100755
index 0000000..6e7f8de
--- /dev/null
+++ b/net/spfs/INSTALL
@@ -0,0 +1 @@
+cp $SOURCE_DIRECTORY/fs/ufs $INSTALL_ROOT/usr/sbin
diff --git a/net/spfs/init.d/spfs b/net/spfs/init.d/spfs
new file mode 100755
index 0000000..248ac2c
--- /dev/null
+++ b/net/spfs/init.d/spfs
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+PROGRAM=/usr/sbin/ufs
+RUNLEVEL=3
+
+. /etc/init.d/smgl_init
+. /etc/sysconfig/spfs
+
+function start()
+{
+ echo "Starting spfs..."
+ ufs $ARGS &
+ echo $! >/var/run/spfs.pid
+}
+
+function stop()
+{
+ echo "Stoping spfs..."
+ kill -15 $(cat /var/run/spfs.pid) &> /dev/null
+ sleep 2
+ kill -9 $(cat /var/run/spfs.pid) &> /dev/null
+ rm /var/run/spfs.pid
+}
+
diff --git a/net/spfs/init.d/spfs.conf b/net/spfs/init.d/spfs.conf
new file mode 100644
index 0000000..869a9a1
--- /dev/null
+++ b/net/spfs/init.d/spfs.conf
@@ -0,0 +1 @@
+ARGS=""




Archive powered by MHonArc 2.6.24.

Top of Page