summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-06-25 23:56:37 -0600
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-06-26 00:30:16 -0600
commitacc687b3a74e3c8d750630c323d223f1c63599db (patch)
treeda55f9a30ffebc005d3a0157d70ca8d997afa959 /plugins
parentbddd6fb07906e660260ef0fced05440ecac8d9e9 (diff)
mkdir rvs; mv * rvs
Diffstat (limited to 'plugins')
-rw-r--r--plugins/repo/Makefile.in108
-rw-r--r--plugins/repo/commit.d.sh36
-rw-r--r--plugins/repo/commit.f.sh33
-rw-r--r--plugins/repo/commit.sh55
-rw-r--r--plugins/repo/get.d.sh47
-rw-r--r--plugins/repo/get.f.sh29
-rw-r--r--plugins/repo/get.sh36
-rw-r--r--plugins/repo/plugin.conf8
-rw-r--r--plugins/repo/stdio.sh68
-rw-r--r--plugins/users/Makefile.in108
-rw-r--r--plugins/users/commit.sh31
-rw-r--r--plugins/users/init.sh30
-rw-r--r--plugins/users/login.sh30
-rw-r--r--plugins/users/logout.sh29
-rw-r--r--plugins/users/mkuser.sh29
-rw-r--r--plugins/users/plugin.conf7
-rw-r--r--plugins/users/rmuser.sh30
-rw-r--r--plugins/users/stdio.sh68
18 files changed, 0 insertions, 782 deletions
diff --git a/plugins/repo/Makefile.in b/plugins/repo/Makefile.in
deleted file mode 100644
index 7078bb6..0000000
--- a/plugins/repo/Makefile.in
+++ /dev/null
@@ -1,108 +0,0 @@
-#!/usr/bin/make -f
-name=repo
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-export rvs ?= @name@
-# directories ######################################################
-srcdir ?= @srcdir@
-prefix ?= @prefix@
-exec_prefix ?= @exec_prefix@
-bindir ?= @bindir@
-sbindir ?= @sbindir@
-libexecdir ?= @libexecdir@
-dirs = $(srcdir) $(prefix) $(exec_prefix) $(bindir) $(sbindir) $(libexecdir)/
-#export srcdir prefix exec_prefix bindir sbindir libexecdir
-
-# programs #########################################################
-CC ?= @CC@
-RVS ?= @RVS@
-SHELL ?= @SHELL@
-RM ?= rm
-CP ?= cp
-SED ?= sed
-INSTALL ?= install
-MKDIR ?= $(INSTALL) -d #mkdir -p
-INSTALL_PROGRAM ?= $(INSTALL)
-INSTALL_DATA ?= $(INSTALL) -m 644
-TOUCH ?= touch # This file doesn't use touch
-#export RVS SHELL RM CP SED INSTALL MKDIR INSTALL_PROGRAM INSTALL_DATA TOUCH
-
-# phony targets ####################################################
-all : $(name)
-.PHONY : $(name) install uninstall clean distclean dist
-.SUFFIXES :
-
-# build ############################################################
-mysrcdir = $(srcdir)/plugins/$(name)
-myoutdir = out
-
-srcFiles = $(filter-out %/Makefile.in,$(shell find $(mysrcdir)/ -type f))
-
-shSrcFiles = $(filter %.sh,$(srcFiles))
-shOutFiles = $(patsubst $(mysrcdir)/%,$(myoutdir)/%,$(basename $(shSrcFiles)))
-
-$(name) : $(myoutdir) $(shOutFiles) $(myoutdir)/plugin.conf
-
-$(myoutdir)/plugin.conf : $(mysrcdir)/plugin.conf
- $(INSTALL_DATA) $< $@
-
-# (un)install ######################################################
-
-install : all
- $(RVS) install $(name)-$(ver) $(myoutdir)
-
-uninstall :
- $(RVS) uninstall $(name)
-
-# clean ############################################################
-
-clean :
-
-distclean : clean
- $(RM) Makefile
- $(RM) -r out
-
-# dist #############################################################
-
-id = $(name)-$(ver)
-dist : $(id).tar.gz
-
-$(id).tar.gz : $(id)
- tar -czf $@ $<
-
-$(id) : distclean
- $(INSTALL) -m 777 -d $@
- $(CP) -r $(mysrcdir)/* $@
-
-# implicit rules ###################################################
-
-b := @
-# build shell scripts
-$(myoutdir)/% : $(mysrcdir)/%.sh $(myoutdir)
- $(INSTALL_PROGRAM) $< $@
- $(SED) -i \
- -e 's/$bSHELL@/$(subst /,\/,$(SHELL))/g' \
- -e 's/$blibexecdir@/$(subst /,\/,$(libexecdir))/g' \
- -e 's/$bID@/$(subst /,\/,$(id))/g' \
- $@
-
-$(dirs) $(libexecdir)/$(rvs) $(myoutdir) :
- $(MKDIR) $@
-
diff --git a/plugins/repo/commit.d.sh b/plugins/repo/commit.d.sh
deleted file mode 100644
index 9545b08..0000000
--- a/plugins/repo/commit.d.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!@SHELL@
-name='rvs repo commit.d'
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-source "$libexecdir/@ID@/stdio"
-
-# commit.d DIRNAME
-dir="$1"
-tmp=`mktemp`
-
-cd "$dir"
-for file in *; do
- hash=`"$RVS" commit "$file"`
- echo "$file:$hash" >> "$tmp"
-done
-
-"$RVS" commit.f "$tmp"
-rm "$tmp"
-
diff --git a/plugins/repo/commit.f.sh b/plugins/repo/commit.f.sh
deleted file mode 100644
index 851c023..0000000
--- a/plugins/repo/commit.f.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!@SHELL@
-name='rvs repo commit.f'
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-#source "$libexecdir/@ID@/stdio"
-
-# commit.f FILENAME
-file="$1"
-
-#hash=`md5sum $file | sed "s/ .*$//"`
-hash=`sha1sum $file | sed "s/ .*$//"`
-if [ ! -f "$REPO/@ID@/$hash" ]; then
- install -m 644 -o $USER -g $USER -T "$file" "$REPO/@ID@/$hash"
-fi
-echo "$hash"
-
diff --git a/plugins/repo/commit.sh b/plugins/repo/commit.sh
deleted file mode 100644
index 0baa931..0000000
--- a/plugins/repo/commit.sh
+++ /dev/null
@@ -1,55 +0,0 @@
-#!@SHELL@
-name='rvs repo commit'
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-source "$libexecdir/@ID@/stdio"
-
-# commit FILE
-file=${1-.}
-
-if [ ! -e $file ]; then error "file \`$file' does not exist";
-# START file type list
-elif [ -L $file ]; then type='l'; # symbolic link
-elif [ -b $file ]; then type='b'; # block (buffered) special
-elif [ -c $file ]; then type='c'; # character (unbuffered) special
-elif [ -d $file ]; then type='d'; # directory
-elif [ -p $file ]; then type='p'; # named pipe (FIFO)
-elif [ -f $file ]; then type='f'; # regular file
-elif [ -s $file ]; then type='s'; # socket
-#elif [ -D $file ]; then type='D'; # door (Solaris only)
-# END file type list
-else error "could not identify file type of \`$file'"
-fi
-
-out "+$type `pwd`/$file"
-ret=`"$RVS" commit.$type "$file"`
-
-tmp=`mktemp`
-cat << __EOF__ > "$tmp"
-name:$file
-hash:$ret
-type:$type
-author:$user
-owner:$owner
-license:$license
-__EOF__
-
-"$RVS" commit.f "$tmp"
-rm "$tmp"
-
diff --git a/plugins/repo/get.d.sh b/plugins/repo/get.d.sh
deleted file mode 100644
index 4f95a57..0000000
--- a/plugins/repo/get.d.sh
+++ /dev/null
@@ -1,47 +0,0 @@
-#!@SHELL@
-name='rvs repo get.d'
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-#source "$libexecdir/@ID@/stdio"
-
-# get.d ID DIRNAME
-id="$1"
-dir="$2"
-
-tmp=`mktemp`
-"$RVS" get.f "$id" "$tmp"
-
-#install -d "$dir"
-mkdir -p "$dir"
-
-cd "$dir"
-rm -rf ./*
-while read line; do
- # GNU bash optimized version
- #hash=${line/#*:/}
- #name=${line/%:${hash}/}
- # POSIX version
- hash=`echo "$line" | sed 's/^.*://'`
- name=`echo "$line" | sed "s/:$hash$//"`
- "$RVS" get "$hash" "$name"
-done < "$tmp"
-
-rm "$tmp"
-
diff --git a/plugins/repo/get.f.sh b/plugins/repo/get.f.sh
deleted file mode 100644
index bb43099..0000000
--- a/plugins/repo/get.f.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!@SHELL@
-name='rvs repo get.f'
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-#source "$libexecdir/@ID@/stdio"
-
-# get.f ID FILENAME
-id="$1"
-file="$2"
-
-install -T "$REPO/@ID@/$id" "$file"
-
diff --git a/plugins/repo/get.sh b/plugins/repo/get.sh
deleted file mode 100644
index a047e87..0000000
--- a/plugins/repo/get.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!@SHELL@
-name='rvs repo get'
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-source "$libexecdir/@ID@/stdio"
-
-# get ID [FILE]
-id="$1"
-tmp=`mktemp`
-"$RVS" get.f "$id" "$tmp"
-type="`sed -n 's/^type://p' "$tmp"`"
-file="${2-`sed -n 's/^name://p' "$tmp"`}"
-hash="`sed -n 's/^hash://p' "$tmp"`"
-
-out "-$type `pwd`/$file"
-"$RVS" get.$type "$hash" "$file"
-
-rm "$tmp"
-
diff --git a/plugins/repo/plugin.conf b/plugins/repo/plugin.conf
deleted file mode 100644
index 6028a0f..0000000
--- a/plugins/repo/plugin.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-# rvs repo plugins.conf
-# ver=0.8r61
-commit
-commit.d
-commit.f
-get
-get.d
-get.f
diff --git a/plugins/repo/stdio.sh b/plugins/repo/stdio.sh
deleted file mode 100644
index d4fed0e..0000000
--- a/plugins/repo/stdio.sh
+++ /dev/null
@@ -1,68 +0,0 @@
-#!@SHELL@
-#name='rvs repo stdio'
-#ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-verbose() {
- if [ "$volume" == '-v' ]; then
- echo $@ >> /dev/stderr
- fi
-}
-
-out() {
- if [ "$volume" != '-q' ]; then
- echo $@ >> /dev/stderr
- fi
-}
-
-warn () {
- echo "$name: $1" >> /dev/stderr
-}
-
-fatal () {
- warn "$1"
- exit 1
-}
-
-error() {
- warn "$1"
- cat << __error__ >> /dev/stderr
-Usage: $name $usage
-
-Try \`$name --help\' for more options.
-__error__
- exit 1
-}
-
-version() {
- echo "$name $ver"
- if [ "$volume" != '-q' ]; then
- cat << __disclaimer__
-$name is copyright (C) 2009 Luke Shumaker
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-Originally written by Luke Shumaker <LukeShu@sbcglobal.net>.
-__disclaimer__
- fi
- exit 0
-}
-
diff --git a/plugins/users/Makefile.in b/plugins/users/Makefile.in
deleted file mode 100644
index 0ac9cf5..0000000
--- a/plugins/users/Makefile.in
+++ /dev/null
@@ -1,108 +0,0 @@
-#!/usr/bin/make -f
-name=users
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-export rvs ?= @name@
-# directories ######################################################
-srcdir ?= @srcdir@
-prefix ?= @prefix@
-exec_prefix ?= @exec_prefix@
-bindir ?= @bindir@
-sbindir ?= @sbindir@
-libexecdir ?= @libexecdir@
-dirs = $(srcdir) $(prefix) $(exec_prefix) $(bindir) $(sbindir) $(libexecdir)/
-#export srcdir prefix exec_prefix bindir sbindir libexecdir
-
-# programs #########################################################
-CC ?= @CC@
-RVS ?= @RVS@
-SHELL ?= @SHELL@
-RM ?= rm
-CP ?= cp
-SED ?= sed
-INSTALL ?= install
-MKDIR ?= $(INSTALL) -d #mkdir -p
-INSTALL_PROGRAM ?= $(INSTALL)
-INSTALL_DATA ?= $(INSTALL) -m 644
-TOUCH ?= touch # This file doesn't use touch
-#export RVS SHELL RM CP SED INSTALL MKDIR INSTALL_PROGRAM INSTALL_DATA TOUCH
-
-# phony targets ####################################################
-all : $(name)
-.PHONY : $(name) install uninstall clean distclean dist
-.SUFFIXES :
-
-# build ############################################################
-mysrcdir = $(srcdir)/plugins/$(name)
-myoutdir = out
-
-srcFiles = $(filter-out %/Makefile.in,$(shell find $(mysrcdir)/ -type f))
-
-shSrcFiles = $(filter %.sh,$(srcFiles))
-shOutFiles = $(patsubst $(mysrcdir)/%,$(myoutdir)/%,$(basename $(shSrcFiles)))
-
-$(name) : $(myoutdir) $(shOutFiles) $(myoutdir)/plugin.conf
-
-$(myoutdir)/plugin.conf : $(mysrcdir)/plugin.conf
- $(INSTALL_DATA) $< $@
-
-# (un)install ######################################################
-
-install : all
- $(RVS) install $(name)-$(ver) $(myoutdir)
-
-uninstall :
- $(RVS) uninstall $(name)
-
-# clean ############################################################
-
-clean :
-
-distclean : clean
- $(RM) Makefile
- $(RM) -r out
-
-# dist #############################################################
-
-id = $(name)-$(ver)
-dist : $(id).tar.gz
-
-$(id).tar.gz : $(id)
- tar -czf $@ $<
-
-$(id) : distclean
- $(INSTALL) -m 777 -d $@
- $(CP) -r $(mysrcdir)/* $@
-
-# implicit rules ###################################################
-
-b := @
-# build shell scripts
-$(myoutdir)/% : $(mysrcdir)/%.sh $(myoutdir)
- $(INSTALL_PROGRAM) $< $@
- $(SED) -i \
- -e 's/$bSHELL@/$(subst /,\/,$(SHELL))/g' \
- -e 's/$blibexecdir@/$(subst /,\/,$(libexecdir))/g' \
- -e 's/$bID@/$(subst /,\/,$(id))/g' \
- $@
-
-$(dirs) $(libexecdir)/$(rvs) $(myoutdir) :
- $(MKDIR) $@
-
diff --git a/plugins/users/commit.sh b/plugins/users/commit.sh
deleted file mode 100644
index cb2488d..0000000
--- a/plugins/users/commit.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!@SHELL@
-name='rvs users commit'
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-source "$libexecdir/@ID@/stdio"
-
-ret=`$RVS repo-0.7beta/commit $@`
-if [ -f "$REPO/@ID@/user" ]; then
- cp "$REPO/@ID@/user" "$REPO/@ID@/repo/$ret"
- echo "$ret"
-else
- error 'you must be logged in to commit files'
-fi
-
diff --git a/plugins/users/init.sh b/plugins/users/init.sh
deleted file mode 100644
index 41f7d77..0000000
--- a/plugins/users/init.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!@SHELL@
-name='rvs users init'
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-#source "$libexecdir/@ID@/stdio"
-
-mkdir -p "$REPO/@ID@"/{users,repo}
-cat << __EOF__ > "$REPO/@ID@/users/Public Domain"
-author:anonymous
-owner:Public Domain
-license:
-__EOF__
-
diff --git a/plugins/users/login.sh b/plugins/users/login.sh
deleted file mode 100644
index 340c7db..0000000
--- a/plugins/users/login.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!@SHELL@
-name='rvs users login'
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-source "$libexecdir/@ID@/stdio"
-
-user="$1"
-if [ -f "$REPO/@ID@/users/$user" ]; then
- install -m 644 -T "$REPO/@ID@/users/$user" "$REPO/@ID@/../user"
-else
- error "User \`$user' does not exist"
-fi
-
diff --git a/plugins/users/logout.sh b/plugins/users/logout.sh
deleted file mode 100644
index 43011a1..0000000
--- a/plugins/users/logout.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!@SHELL@
-name='rvs users logout'
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-source "$libexecdir/@ID@/stdio"
-
-if [ -f "$REPO/@ID@/../user" ]; then
- rm "$REPO/@ID@/../user"
-else
- error 'you must be logged in to logout'
-fi
-
diff --git a/plugins/users/mkuser.sh b/plugins/users/mkuser.sh
deleted file mode 100644
index 68c16b2..0000000
--- a/plugins/users/mkuser.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!@SHELL@
-name='rvs users mkuser'
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-source "$libexecdir/@ID@/stdio"
-
-author="$1"
-touch "$REPO/@ID@/users/$author"
-cat << __EOF__ > "$REPO/@ID@/users/$author"
-author:$author
-__EOF__
-
diff --git a/plugins/users/plugin.conf b/plugins/users/plugin.conf
deleted file mode 100644
index 1224b23..0000000
--- a/plugins/users/plugin.conf
+++ /dev/null
@@ -1,7 +0,0 @@
-# rvs users plugins.conf
-# ver=0.8r61
-commit:repo-0.8r61/commit
-login
-logout
-mkuser
-rmuser
diff --git a/plugins/users/rmuser.sh b/plugins/users/rmuser.sh
deleted file mode 100644
index a9f566f..0000000
--- a/plugins/users/rmuser.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!@SHELL@
-name='rvs users rmuser'
-ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-source "$libexecdir/@ID@/stdio"
-
-user="$1"
-if [ -f "$REPO/@ID@/users/$user" ]; then
- rm "$REPO/@ID@/users/$user"
-else
- error "User \`$user' does not exist"
-fi
-
diff --git a/plugins/users/stdio.sh b/plugins/users/stdio.sh
deleted file mode 100644
index a8bd155..0000000
--- a/plugins/users/stdio.sh
+++ /dev/null
@@ -1,68 +0,0 @@
-#!@SHELL@
-#name='rvs users stdio'
-#ver=0.8r61
-# Copyright (C) 2009 Luke Shumaker
-#
-# This file is part of rvs.
-#
-# rvs is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2, or (at your option) any later version.
-#
-# rvs is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with rvs; see the file COPYING.
-# If not, write to the Free Software Foundation,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-verbose() {
- if [ "$volume" == '-v' ]; then
- echo $@ >> /dev/stderr
- fi
-}
-
-out() {
- if [ "$volume" != '-q' ]; then
- echo $@ >> /dev/stderr
- fi
-}
-
-warn () {
- echo "$name: $1" >> /dev/stderr
-}
-
-fatal () {
- warn "$1"
- exit 1
-}
-
-error() {
- warn "$1"
- cat << __error__ >> /dev/stderr
-Usage: $name $usage
-
-Try \`$name --help\' for more options.
-__error__
- exit 1
-}
-
-version() {
- echo "$name $ver"
- if [ "$volume" != '-q' ]; then
- cat << __disclaimer__
-$name is copyright (C) 2009 Luke Shumaker
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-Originally written by Luke Shumaker <lukeshu@sbcglobal.net>.
-__disclaimer__
- fi
- exit 0
-}
-