-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbootstrap.conf
92 lines (78 loc) · 2.16 KB
/
bootstrap.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# bootstrap.conf (bee) version 2023-01-05
# This file is part of bee.
# See COPYING for license.
## -------------- ##
## Configuration. ##
## -------------- ##
# File that should exist relative to the top directory of a checked out
# hierarchy, but not in a distribution tarball.
checkout_only_file=.gitignore
# List of programs, minimum versions, and software urls required to
# bootstrap, maintain and release.
# Build prerequisites
buildreq='
git 1.5.5 https://git-scm.com
m4 1.4.12 https://www.gnu.org/s/m4
perl 5.5 https://perl.com
tar - https://www.gnu.org/s/tar
'
# Non-default gnulib directory options.
local_gl_path=gl-mod/bootstrap
gnulib_git_submodules=gl-mod/bootstrap
gnulib_clone_since=2020-07-11
# Additional gnulib-tool options to use.
gnulib_tool_options='
'
# gnulib modules used by this package.
gnulib_modules='
binary-io
bootstrap
fcntl
fdatasync
getopt-gnu
git-version-gen
manywarnings
progname
signal-h
stdio
stdlib
sys_stat
sys_types
unistd
verify
xvasprintf
'
## --------------- ##
## Hook functions. ##
## --------------- ##
# bee_ignore_gnulib_ignore
# ----------------------------
# gnulib-tool updates m4/.gitignore and lib/.gitignore, and keeping
# generated files under version control does not make sense. Since
# lib is entirely ignored, we only need to prepopulate the m4 ignore
# files with generated files not tracked by gnulib-tool.
bee_ignore_gnulib_ignore ()
{
$debug_cmd
$require_macro_dir
if test -f "$macro_dir/.gitignore" ; then
:
else
func_verbose "creating initial \`$macro_dir/.gitignore'"
cat > $macro_dir/.gitignore <<\EOF
# files created by bootstrap, but that gnulib doesn't track
*~
/.gitignore
/gnulib-comp.m4
EOF
fi
}
func_add_hook func_prep bee_ignore_gnulib_ignore
# Local variables:
# mode: shell-script
# sh-indentation: 2
# eval: (add-hook 'write-file-functions 'time-stamp)
# time-stamp-start: "# bootstrap.conf (bee) version "
# time-stamp-format: "%:y-%02m-%02d"
# time-stamp-end: "$"
# End: