summaryrefslogtreecommitdiff
path: root/rvs/plugins/repo
diff options
context:
space:
mode:
authorLuke Shumaker <luke@HP-dv6426us-u904.(none)>2009-10-28 21:16:58 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-06-26 00:30:18 -0600
commit9efb5c3e6a370aab6fa962ab5c558437264a6fde (patch)
treeabdd7184698dab2612501bc9a79454c83b60bbf6 /rvs/plugins/repo
parentd454c2682afbfd3e1aa98fd1be585edacd80b3c7 (diff)
get hacking on rvs
Diffstat (limited to 'rvs/plugins/repo')
-rw-r--r--rvs/plugins/repo/commit.d.sh36
-rw-r--r--rvs/plugins/repo/commit.f.sh33
-rw-r--r--rvs/plugins/repo/commit.sh55
-rw-r--r--rvs/plugins/repo/get.d.sh47
-rw-r--r--rvs/plugins/repo/get.f.sh29
-rw-r--r--rvs/plugins/repo/get.sh36
-rw-r--r--rvs/plugins/repo/main.mk.in73
-rw-r--r--rvs/plugins/repo/plugin.conf8
-rw-r--r--rvs/plugins/repo/stdio.sh68
9 files changed, 0 insertions, 385 deletions
diff --git a/rvs/plugins/repo/commit.d.sh b/rvs/plugins/repo/commit.d.sh
deleted file mode 100644
index 9545b08..0000000
--- a/rvs/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/rvs/plugins/repo/commit.f.sh b/rvs/plugins/repo/commit.f.sh
deleted file mode 100644
index 851c023..0000000
--- a/rvs/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/rvs/plugins/repo/commit.sh b/rvs/plugins/repo/commit.sh
deleted file mode 100644
index 0baa931..0000000
--- a/rvs/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/rvs/plugins/repo/get.d.sh b/rvs/plugins/repo/get.d.sh
deleted file mode 100644
index 4f95a57..0000000
--- a/rvs/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/rvs/plugins/repo/get.f.sh b/rvs/plugins/repo/get.f.sh
deleted file mode 100644
index bb43099..0000000
--- a/rvs/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/rvs/plugins/repo/get.sh b/rvs/plugins/repo/get.sh
deleted file mode 100644
index a047e87..0000000
--- a/rvs/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/rvs/plugins/repo/main.mk.in b/rvs/plugins/repo/main.mk.in
deleted file mode 100644
index 1ed4da6..0000000
--- a/rvs/plugins/repo/main.mk.in
+++ /dev/null
@@ -1,73 +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@
-
-# 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
-
-# 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' \
- $@
-
-$(libexecdir)/$(rvs) $(myoutdir) :
- $(MKDIR) $@
-
diff --git a/rvs/plugins/repo/plugin.conf b/rvs/plugins/repo/plugin.conf
deleted file mode 100644
index 6028a0f..0000000
--- a/rvs/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/rvs/plugins/repo/stdio.sh b/rvs/plugins/repo/stdio.sh
deleted file mode 100644
index d4fed0e..0000000
--- a/rvs/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
-}
-