summaryrefslogtreecommitdiff
path: root/doc/python10/main.xml
blob: e061b90a49d7ba4fa88b413fb7f18eafb38e8796 (plain)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<?xml version="1.0"?>

<!--

  Copyright (c) 2001, 2002, 2003 Steven Knight

  Permission is hereby granted, free of charge, to any person obtaining
  a copy of this software and associated documentation files (the
  "Software"), to deal in the Software without restriction, including
  without limitation the rights to use, copy, modify, merge, publish,
  distribute, sublicense, and/or sell copies of the Software, and to
  permit persons to whom the Software is furnished to do so, subject to
  the following conditions:

  The above copyright notice and this permission notice shall be included
  in all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

-->

<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"
[

    <!ENTITY % scons SYSTEM "scons.mod">
    %scons;

    <!ENTITY abstract SYSTEM "abstract.xml">
    <!ENTITY acks SYSTEM "acks.xml">
    <!ENTITY copyright SYSTEM "copyright.xml">
    <!ENTITY design SYSTEM "design.xml">
    <!ENTITY future SYSTEM "future.xml">
    <!ENTITY install SYSTEM "install.xml">
    <!ENTITY intro SYSTEM "intro.xml">
    <!ENTITY process SYSTEM "process.xml">

]>

<article>
  <articleinfo>
    <title>SCons Design and Implementation</title>

    <author>
      <firstname>Steven</firstname>
      <surname>Knight</surname>
    </author>

    <copyright>
      <year>2001</year>
      <year>2002</year>
      <holder>Steven Knight</holder>
    </copyright>

    <pubdate>2002</pubdate>

    <confgroup>
      <confdates>4-7 February 2002</confdates>
      <conftitle>The Tenth International Python Conference</conftitle>
      <address>Alexandria, Virginia</address>
    </confgroup>

    <revhistory>
      <revision>
        <revnumber>0.2</revnumber>
	<date>16 December 2001</date>
	<revremark>Internal re-review.</revremark>
      </revision>
      <revision>
        <revnumber>0.1</revnumber>
	<date>8 October 2001</date>
	<revremark>Submitted for Python10 conference.</revremark>
      </revision>
    </revhistory>

  </articleinfo>

  <abstract>
    &abstract;
  </abstract>

  <section id="sect-intro">
    <title>Introduction</title>
    &intro;
  </section>

  <section id="sect-design">
    <title>Architecture</title>
    &design;
  </section>

  <section id="sect-install">
    <title>Installation</title>
    &install;
  </section>

  <section id="sect-process">
    <title>Development Process</title>
    &process;
  </section>

  <section id="sect-future">
    <title>Future Directions</title>
    &future;
  </section>

  <section id="sect-summary">
    <title>Summary</title>
    <para>

      This paper has introduced &SCons;, a next-generation build tool
      with a modular, embeddable architecture and a direct Python
      interface. &SCons; has a global view of the dependencies in a source
      tree, uses MD5 signatures to decide if derived files are out of date,
      and automatically scans files for dependencies, all of which make &SCons;
      builds exceptionally reliable. The &SCons; development methodology has
      been described, notable for its emphasis on automated regression
      testing to ensure a robust and reliable tool from day one. Several
      future directions for &SCons; have also been discussed.

    </para>
  </section>

  <section id="sect-acks">
    <title>Acknowledgements</title>
    &acks;
  </section>

  <!--
  <section id="sect-refs">
    <title>References</title>
    <para>
    </para>
  </section>
  -->

  <bibliography id="sect-refs">
    <title>References</title>

    <biblioentry>
      <abbrev>1</abbrev>
      <authorgroup>
        <author><firstname>Stuart I.</firstname><surname>Feldman</surname></author>
      </authorgroup>
      <copyright>
        <year>Aug 1978</year>
      </copyright>
      <publisher>
        <publishername>Bell Laboratories</publishername>
      </publisher>
      <title>Make - A Program for Maintaining Computer Programs</title>
    </biblioentry>

    <biblioentry>
      <abbrev>2</abbrev>
      <authorgroup>
        <author><firstname>Peter</firstname><surname>Miller</surname></author>
      </authorgroup>
      <copyright>
        <year>1997</year>
        <holder>Peter Miller</holder>
      </copyright>
      <title>Recursive Make Considered Harmful</title>
      <!--http://www.pcug.org.au/~millerp/rmch/recu-make-cons-harm.html-->
    </biblioentry>

    <biblioentry>
      <abbrev>3</abbrev>
      <authorgroup>
        <author><firstname>Andrew</firstname><surname>Oram</surname></author>
        <author><firstname>Steve</firstname><surname>Talbott</surname></author>
      </authorgroup>
      <copyright>
        <year>1986</year>
        <year>1991</year>
        <holder>O'Reilly &amp; Associates, Inc.</holder>
      </copyright>
      <publisher>
        <publishername>O'Reilly &amp; Associates, Inc.</publishername>
      </publisher>
      <title>Managing Projects with Make, 2nd Ed.</title>
    </biblioentry>

    <biblioentry>
      <abbrev>4</abbrev>
      <authorgroup>
        <author><firstname>Richard M.</firstname><surname>Stallman</surname></author>
        <author><firstname>Roland</firstname><surname>McGrath</surname></author>
      </authorgroup>
      <copyright>
        <year>1988</year>
        <year>'89</year>
        <year>'90</year>
        <year>'91</year>
        <year>'92</year>
        <year>'93</year>
        <year>'94</year>
        <year>'95</year>
        <year>'96</year>
        <year>'97</year>
        <year>'98</year>
        <year>'99</year>
        <year>2000</year>
        <holder>Free Software Foundation, Inc.</holder>
      </copyright>
      <publisher>
        <publishername>Free Software Foundation, Inc.</publishername>
      </publisher>
      <title>GNU Make</title>
      <subtitle>A Program for Directing Recompilation</subtitle>
    </biblioentry>

  </bibliography>

</article>