summaryrefslogtreecommitdiff
path: root/init.d/50vcs-ignore
diff options
context:
space:
mode:
Diffstat (limited to 'init.d/50vcs-ignore')
-rwxr-xr-xinit.d/50vcs-ignore22
1 files changed, 22 insertions, 0 deletions
diff --git a/init.d/50vcs-ignore b/init.d/50vcs-ignore
index 43c245d..5c7aa78 100755
--- a/init.d/50vcs-ignore
+++ b/init.d/50vcs-ignore
@@ -7,6 +7,8 @@ elif [ "$VCS" = hg ] && [ ! -e .hgignore ]; then
file=.hgignore
elif [ "$VCS" = bzr ] && [ ! -e .bzrignore ]; then
file=.bzrignore
+elif [ "$VCS" = darcs ] && [ ! -e .darcsignore ]; then
+ file=.darcsignore
fi
if [ -z "$file" ] || [ -e "$file" ]; then
@@ -40,9 +42,29 @@ ignore() {
fi
echo "$glob" >> $file
;;
+ darcs)
+ # darcs doesn't understand globs, so we need to translate
+ # them into regexs. Not a complete converter, but suitable
+ # for given globs.
+ if [ "${glob%\*}" != "$glob" ]; then
+ glob="${glob%\*}"
+ else
+ glob="$glob"'($|/)'
+ fi
+ if [ "${glob#\*}" != "$glob" ]; then
+ glob="${glob#\*}"
+ else
+ glob='(^|/)'"$glob"
+ fi
+ glob="$( printf %s $glob | sed -e 's/\./\\./g;s/\*/[^\/]*/g;' )"
+ echo "$glob" >> $file
esac
}
+if [ "$VCS" = darcs ]; then
+ darcs setpref boringfile .darcsignore
+fi
+
if [ "$LOWLEVEL_PACKAGE_MANAGER" = dpkg ]; then
comment "new and old versions of conffiles, stored by dpkg"
ignore "*.dpkg-*"