From 566138139dbb4b9826917226f2c83caeb4f20232 Mon Sep 17 00:00:00 2001 From: p4bl0 Date: Fri, 23 Jul 2010 11:48:56 +0200 Subject: wrote build script + fixed bugs installation bugs --- build.sh | 21 +++++++++++++++++++++ install.sh | 30 +++++++++++++++++------------- post-commit.sh | 4 ++-- post-receive.sh | 3 +++ 4 files changed, 43 insertions(+), 15 deletions(-) create mode 100755 build.sh diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..50d45ee --- /dev/null +++ b/build.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +include_file() { + tmp=`tempfile -p "figitive"` + cat "$2" | gzip | base64 > "$tmp" + cat "$1" | sed "/#INCLUDE:$2#/ { + r $tmp + d }" + rm "$tmp" +} + +cp install.sh tmp1 +i=1 +for f in archives.html article.html fugitive.css post-commit.sh post-receive.sh; do + j=$((1 - i)) + include_file tmp$i $f > tmp$j + i=$j +done +cp tmp$j fugitive +chmod +x fugitive +rm tmp0 tmp1 diff --git a/install.sh b/install.sh index 40499af..c415e52 100644 --- a/install.sh +++ b/install.sh @@ -10,6 +10,19 @@ fugitive_write_template() { replace_var_by_string year "`date +%Y`" } +fugitive_install_hooks() { + echo -n "Installing fugitive hooks scripts... " + (base64 -d | gunzip) > .git/hooks/post-commit < .git/hooks/post-receive </dev/null echo "done." echo -n "Creating default directory tree... " - mkdir -p fugitive/{drafts,articles,templates} + mkdir -p fugitive/drafts fugitive/articles fugitive/templates echo "done." echo -n "Adding default directory paths to git config... " git config --add --path fugitive.templates-dir "fugitive/templates" @@ -35,20 +48,11 @@ EOF EOF echo "done." echo -n "Writing default css file... " - (base64 -d | gunzip) > fugitice.css < fugitive.css < .git/hooks/post-commit < .git/hooks/post-receive </dev/null git commit -m "fugitive inital import" >/dev/null @@ -56,7 +60,7 @@ EOF echo -n "Preventing git to track temp files... " echo "*~" > .git/info/exclude echo "done." - cd - + cd - >/dev/null echo "Installation complete, please see the README file for an howto." } diff --git a/post-commit.sh b/post-commit.sh index c028f85..06f9a95 100644 --- a/post-commit.sh +++ b/post-commit.sh @@ -32,7 +32,6 @@ commit_slug=`git log -1 --format="%f"` commit_body() { tmp=`tempfile -p "fugitive"` git log -1 --format="%b" > "$tmp" - (sleep 5 && rm -f "$tmp") & # this message will self-destruct in 5s echo "$tmp" } @@ -45,17 +44,18 @@ article_title() { article_content() { tmp=`tempfile -p "fugitive"` tail -n+2 "$1" > "$tmp" - (sleep 5 && rm -f "$tmp") & # this message will self-destruct in 5s echo "$tmp" } replace_var_by_string() { sed "s//$2/" } +# REMEMBER: 2nd arg should be a tempfile! replace_var_by_file() { sed "// { r $2 d }" + rm "$2" } replace_commit_info() { replace_var_by_string "commit_Hash" "$commit_Hash" | \ diff --git a/post-receive.sh b/post-receive.sh index e69de29..ba901c5 100644 --- a/post-receive.sh +++ b/post-receive.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "hi!" -- cgit v1.2.3