From 3840025eb220b0fff518680cd93346b81bc083ae Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 28 Mar 2010 16:14:48 -0400 Subject: maybe this helps? --- main.mk.in | 1 - plugins/filedata/bin/commit | 33 --------------------------------- plugins/filedata/bin/get | 23 ----------------------- plugins/files/bin/commit | 36 ------------------------------------ plugins/plugin.mk.in | 2 -- wrapper/main.mk.in | 1 - 6 files changed, 96 deletions(-) delete mode 100644 plugins/filedata/bin/commit delete mode 100644 plugins/filedata/bin/get delete mode 100644 plugins/files/bin/commit diff --git a/main.mk.in b/main.mk.in index 11fca5c..33be1e9 100644 --- a/main.mk.in +++ b/main.mk.in @@ -28,7 +28,6 @@ dirs += $(sysconfdir) $(BINDIR) $(TMPDIR) $(LIBDIR) $(ETCDIR) .PHONY: all all : wrapper plugins .SUFFIXES : -VPATH = $(srcdir) filelist = \ COPYING \ configure \ diff --git a/plugins/filedata/bin/commit b/plugins/filedata/bin/commit deleted file mode 100644 index 9b7f59a..0000000 --- a/plugins/filedata/bin/commit +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -name='rvs filedata commit' -ver=0.9 -# Copyright (C) 2009 Luke Shumaker -# -# This program 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 of the -# License, or (at your option) any later version. -# -# 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. -# -# You should have received a copy of the GNU General Public License -# along with this program; see the file COPYING. -# If not, see . - -out="$1" -file="$2" -hash="`cat /dev/stdin`" - -temp=`mktemp` -echo "Hash: $hash" > "$temp" -stat "$file" >> "$temp" - -meta=`sha1sum "$temp" | sed "s/ .*$//"` -if [ ! -f "$REPO/@ID@/$hash" ]; then - install -m 644 -o $USER -g $USER -T "$temp" "$REPO/@ID@/$meta" -fi -echo "$meta" - diff --git a/plugins/filedata/bin/get b/plugins/filedata/bin/get deleted file mode 100644 index 321d5f8..0000000 --- a/plugins/filedata/bin/get +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -name='rvs filedata get' -ver=0.9 -# Copyright (C) 2009 Luke Shumaker -# -# This program 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 of the -# License, or (at your option) any later version. -# -# 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. -# -# You should have received a copy of the GNU General Public License -# along with this program; see the file COPYING. -# If not, see . - -out="$1" - -echo "yeah, this hasn't been coded yet, sorry!" - diff --git a/plugins/files/bin/commit b/plugins/files/bin/commit deleted file mode 100644 index 63eaac1..0000000 --- a/plugins/files/bin/commit +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -name='rvs files commit' -ver=0.9 -# Copyright (C) 2009-2010 Luke Shumaker -# -# This program 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 of the -# License, or (at your option) any later version. -# -# 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. -# -# You should have received a copy of the GNU General Public License -# along with this program; see the file COPYING. -# If not, see . - -source "$libexecdir/@ID@/stdio" - -# commit FILE -file=${1-.} # take arg1 as the file, default to the current directory - -if [ ! -e "$file" ]; then - error "file \`$file' does not exist"; -else - foundMod='false'; - for type in select/*; do - if "$type" "$file"; then foundMod='true'; break; fi - done - if [ "$foundMod" == 'false' ]; then - error "cannot handle file type of \`$file'" - fi -fi - diff --git a/plugins/plugin.mk.in b/plugins/plugin.mk.in index 8af5fcc..f365dfa 100644 --- a/plugins/plugin.mk.in +++ b/plugins/plugin.mk.in @@ -34,8 +34,6 @@ all : $(name) .SUFFIXES : # build ############################################################ -$(info srcdir:$(srcdir)) - srcFiles = $(filter-out %/Makefile.in,$(shell find $(srcdir)/ -type f)) shSrcFiles = $(filter %.sh,$(srcFiles)) diff --git a/wrapper/main.mk.in b/wrapper/main.mk.in index 0f24d6b..4de7eb8 100644 --- a/wrapper/main.mk.in +++ b/wrapper/main.mk.in @@ -27,7 +27,6 @@ dirs += $(sysconfdir) $(BINDIR) $(TMPDIR) $(LIBDIR) $(ETCDIR) # phony targets #################################################### .PHONY : all all : Makefiles rvs -VPATH = $(srcdir) filelist=$(patsubst $(srcdir)/%,%,$(shell find $(srcdir)/* -type f)) # most everything ################################################## -- cgit v1.1-4-g5e80