]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - setup.sh
setup.sh: remove unnecessary line wrap
[config/dotfiles.git] / setup.sh
1 #!/bin/sh
2
3 # Setup script for VCS configuration files.
4
5 # Copyright (C) 2011-2013  Simon Ruderich
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20
21 set -eu
22
23 . ../lib.sh
24
25
26 if installed git; then
27     generate gitconfig .in simple_cpp PWD -- "`pwd`"
28
29     # Older Git versions don't support push.default = simple.
30     if ! git status >/dev/null 2>&1; then
31         echo 'gitconfig: removing push.default = simple'
32         grep_i -v '^[[:space:]]default = simple$' gitconfig
33     fi
34     # Even older Git versions don't support color.function.
35     if ! git status >/dev/null 2>&1; then
36         echo 'gitconfig: removing color.function'
37         sed_i 's/^[[:space:]]*function = .*//' gitconfig
38     fi
39     # Even older Git versions don't support git log --patch but only -p.
40     if ! git log --patch >/dev/null 2>&1; then
41         echo 'gitconfig: replacing git log --patch with -p'
42         sed_i 's/log --patch/log -p/' gitconfig
43     fi
44
45     # If coloredstderr is used to color stderr then remove the workaround for
46     # missing output to stderr.
47     if test -n "${LD_PRELOAD:+set}" \
48             && printf '%s' "$LD_PRELOAD" | grep libcoloredstderr.so >/dev/null; then
49         echo 'gitconfig: removing stderr fix'
50         sed_i '/^\t\(fs\|fg\)  =/ s/2>&1//' gitconfig
51     fi
52
53     link gitconfig ~/.gitconfig
54 fi
55
56 if installed tig; then
57     if tig --version | grep -F 'tig version 1.' >/dev/null; then
58         link tigrc.old ~/.tigrc
59     else
60         link tigrc ~/.tigrc
61     fi
62 fi
63
64 if installed hg; then
65     link hgrc ~/.hgrc
66 fi
67
68 if installed cvs; then
69     # CVS doesn't support any comments nor empty lines in cvsrc.
70     grep -E -v '^#' cvsrc.in | grep -E -v '^$' >cvsrc
71
72     link cvsrc ~/.cvsrc
73 fi