1# bootstrap.conf (Stdlib) version 2015-01-03
2#
3# Copyright (C) 2013-2015 Gary V. Vaughan
4# Written by Gary V. Vaughan, 2013
5
6# This is free software; see the source for copying conditions.  There is NO
7# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
8#
9# This program is free software; you can redistribute it and/or
10# modify it under the terms of the GNU General Public License as
11# published by the Free Software Foundation; either version 3 of
12# the License, or (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program; see the file COPYING.  If not, a copy
21# can be downloaded from  http://www.gnu.org/licenses/gpl.html.
22
23
24## -------------- ##
25## Configuration. ##
26## -------------- ##
27
28# List of programs, minimum versions, and software urls required to
29# bootstrap, maintain and release this project.
30
31buildreq='
32    git    -        http://git-scm.com
33    ldoc   1.4.2    http://rocks.moonscript.org/manifests/steved/ldoc-1.4.2-1.rockspec
34    specl  14.1.0   http://rocks.moonscript.org/manifests/gvvaughan/specl-14.1.0-1.rockspec
35'
36
37# List of slingshot files to link into stdlib tree before autotooling.
38slingshot_files='
39	.autom4te.cfg
40	GNUmakefile
41	Makefile.am
42	build-aux/do-release-commit-and-tag
43	build-aux/gitlog-to-changelog
44	build-aux/mkrockspecs
45	build-aux/release.mk
46	build-aux/rockspecs.mk
47	build-aux/sanity.mk
48	build-aux/specl.mk
49	build-aux/update-copyright
50	m4/ax_lua.m4
51	travis.yml.in
52'
53
54# Prequisite rocks that need to be installed for travis builds to work.
55travis_extra_rocks='
56	ansicolors
57	ldoc
58	specl
59'
60
61# No need to do any gnulib-tooling here.
62gnulib_tool=true
63
64
65# Local variables:
66# mode: shell-script
67# sh-indentation: 2
68# eval: (add-hook 'before-save-hook 'time-stamp)
69# time-stamp-start: "# bootstrap.conf (Stdlib) version "
70# time-stamp-format: "%:y-%02m-%02d"
71# time-stamp-end: "$"
72# End:
73