diff options
author | Luke Shumaker <luke@HP-dv6426us-u904.(none)> | 2009-10-26 20:34:56 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-06-26 00:30:18 -0600 |
commit | aaa9df8686991d41081c6d32495d6ba7d30b6758 (patch) | |
tree | 843886bb6a953cbf5e0c350b7a16f43811838fcb /rvs-build/plugins/repo/out | |
parent | afcc02550298ee8f1d74ef265d866a9b38397ce4 (diff) |
oops, I needed to run `make distclean' before that commit
Diffstat (limited to 'rvs-build/plugins/repo/out')
-rwxr-xr-x | rvs-build/plugins/repo/out/commit | 55 | ||||
-rwxr-xr-x | rvs-build/plugins/repo/out/commit.d | 36 | ||||
-rwxr-xr-x | rvs-build/plugins/repo/out/commit.f | 33 | ||||
-rwxr-xr-x | rvs-build/plugins/repo/out/get | 36 | ||||
-rwxr-xr-x | rvs-build/plugins/repo/out/get.d | 47 | ||||
-rwxr-xr-x | rvs-build/plugins/repo/out/get.f | 29 | ||||
-rw-r--r-- | rvs-build/plugins/repo/out/plugin.conf | 8 | ||||
-rwxr-xr-x | rvs-build/plugins/repo/out/stdio | 68 |
8 files changed, 0 insertions, 312 deletions
diff --git a/rvs-build/plugins/repo/out/commit b/rvs-build/plugins/repo/out/commit deleted file mode 100755 index 6565f3d..0000000 --- a/rvs-build/plugins/repo/out/commit +++ /dev/null @@ -1,55 +0,0 @@ -#!/bin/sh -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//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-build/plugins/repo/out/commit.d b/rvs-build/plugins/repo/out/commit.d deleted file mode 100755 index 5e16fb6..0000000 --- a/rvs-build/plugins/repo/out/commit.d +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -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//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-build/plugins/repo/out/commit.f b/rvs-build/plugins/repo/out/commit.f deleted file mode 100755 index 6eb78d1..0000000 --- a/rvs-build/plugins/repo/out/commit.f +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -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//stdio" - -# commit.f FILENAME -file="$1" - -#hash=`md5sum $file | sed "s/ .*$//"` -hash=`sha1sum $file | sed "s/ .*$//"` -if [ ! -f "$REPO//$hash" ]; then - install -m 644 -o $USER -g $USER -T "$file" "$REPO//$hash" -fi -echo "$hash" - diff --git a/rvs-build/plugins/repo/out/get b/rvs-build/plugins/repo/out/get deleted file mode 100755 index 009d280..0000000 --- a/rvs-build/plugins/repo/out/get +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -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//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-build/plugins/repo/out/get.d b/rvs-build/plugins/repo/out/get.d deleted file mode 100755 index 9f7b1c5..0000000 --- a/rvs-build/plugins/repo/out/get.d +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh -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//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-build/plugins/repo/out/get.f b/rvs-build/plugins/repo/out/get.f deleted file mode 100755 index 0918ceb..0000000 --- a/rvs-build/plugins/repo/out/get.f +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -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//stdio" - -# get.f ID FILENAME -id="$1" -file="$2" - -install -T "$REPO//$id" "$file" - diff --git a/rvs-build/plugins/repo/out/plugin.conf b/rvs-build/plugins/repo/out/plugin.conf deleted file mode 100644 index 6028a0f..0000000 --- a/rvs-build/plugins/repo/out/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-build/plugins/repo/out/stdio b/rvs-build/plugins/repo/out/stdio deleted file mode 100755 index 84c1b89..0000000 --- a/rvs-build/plugins/repo/out/stdio +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/sh -#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 -} - |