forked from luaposix/luaposix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.conf
70 lines (57 loc) · 1.69 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
# bootstrap.conf (luaposix) version 2016-02-24
# Written by Gary V. Vaughan, 2010
# Copyright (C) 2010-2016 Gary V. Vaughan
# This file is part of luaposix.
# See README for license.
## -------------- ##
## Configuration. ##
## -------------- ##
# List of programs, minimum versions, and download urls required to
# bootstrap, maintain and release this project.
buildreq='
git - http://git-scm.com
help2man 1.29 http://www.gnu.org/s/help2man
ldoc 1.4.2 http://rocks.moonscript.org/manifests/steved/ldoc-1.4.2-1.rockspec
specl 14.1.0 http://rocks.moonscript.org/manifests/gvvaughan/specl-14.1.0-1.rockspec
'
# List of slingshot files to link into stdlib tree before autotooling.
slingshot_files='
.autom4te.cfg
GNUmakefile
Makefile.am
build-aux/do-release-commit-and-tag
build-aux/gitlog-to-changelog
build-aux/mkrockspecs
build-aux/release.mk
build-aux/rockspecs.mk
build-aux/sanity.mk
build-aux/specl.mk
build-aux/update-copyright
m4/ax_lua.m4
m4/manywarnings.m4
m4/warnings.m4
travis.yml.in
'
# Prequisite rocks that need to be installed for travis builds to work.
travis_extra_rocks='
ansicolors
ldoc
specl
'
# No need to do any gnulib-tooling here.
gnulib_tool=true
require_dotgitmodules=:
## --------------- ##
## Hook functions. ##
## --------------- ##
# Even though we don't get our gitlog-to-changelog from gnulib, this
# function is still useful to us!
func_add_hook func_gnulib_tool func_ensure_changelog
# Local variables:
# mode: shell-script
# sh-indentation: 2
# eval: (add-hook 'before-save-hook 'time-stamp)
# time-stamp-start: "# bootstrap.conf (luaposix) version "
# time-stamp-format: "%:y-%02m-%02d"
# time-stamp-end: "$"
# End: