diff options
| author | Steven Knight <knight@baldmt.com> | 2004-08-16 13:43:09 (GMT) |
|---|---|---|
| committer | Steven Knight <knight@baldmt.com> | 2004-08-16 13:43:09 (GMT) |
| commit | 74e2a97dc2ed0412ffb1a9c6dc810c1a1c4a4e67 (patch) | |
| tree | 82a4927ce94fa90b9798accd2cfdbffb88ab2d51 /src | |
| parent | 9a0aa47145dbaa02eccac8ba23c498a4e2a3a098 (diff) | |
| download | SCons-74e2a97dc2ed0412ffb1a9c6dc810c1a1c4a4e67.zip SCons-74e2a97dc2ed0412ffb1a9c6dc810c1a1c4a4e67.tar.gz SCons-74e2a97dc2ed0412ffb1a9c6dc810c1a1c4a4e67.tar.bz2 | |
Branch for documentation changes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/CHANGES.txt | 18 | ||||
| -rw-r--r-- | src/test_copyrights.py | 18 |
2 files changed, 33 insertions, 3 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index bc309fd..766fbc8 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -157,6 +157,18 @@ RELEASE 0.96 - XXX - Performance optimizations in Node.FS.__doLookup(). + - Man page fixes: formatting typos, misspellings, bad example. + + - User's Guide fixes: Fix the signatures of the various example + *Options() calls. Triple-quote properly a multi-line Split example. + + - User's Guide additions: Chapter describing File and Directory + Nodes. Section describing declarative nature of SCons functions in + SConscript files. Better organization and clarification of points + raised by Robert P. J. Day. Chapter describing SConf (Autoconf-like) + functionality. Chapter describing how to install Python and + SCons. Chapter describing Java builds. + From Chris Murray: - Add a .win32 attribute to force file names to expand with @@ -199,6 +211,12 @@ RELEASE 0.96 - XXX - Avoid problems when there are null entries (None or '') in tool lists or CPPPATH. + - Add an example and explanation of how to use "tools = ['default', ..." + when creating a construction environment. + + - Add a section describing File and Directory Nodes and some of their + attributes and methods. + From Simon Perkins: - Fix a bug introduced in building shared libraries under MinGW. diff --git a/src/test_copyrights.py b/src/test_copyrights.py index f239f4d..b0ab396 100644 --- a/src/test_copyrights.py +++ b/src/test_copyrights.py @@ -74,16 +74,28 @@ remove_list = [ 'Optik', 'dblite.py', 'Conftest.py', + 'MANIFEST', 'os_spawnv_fix.diff', 'setup.cfg', ] +src_remove_list = [ + 'bin', + 'cons.pl', + 'design', + 'python10', + 'reference', + 'etc', + 'gentoo', + 'config', + 'MANIFEST.in', +] + # XXX Remove '*-stamp' when we get rid of those. -scons = Collect(remove_list + ['MANIFEST', 'build-stamp', 'configure-stamp']) +scons = Collect(remove_list + ['build-stamp', 'configure-stamp']) # XXX Remove '.sconsign' when we start using SConsignFile() for SCons builds. local = Collect(remove_list + ['.sconsign']) -# XXX Remove 'doc' when we take care of those Copyright statements. -src = Collect(remove_list + ['bin', 'doc', 'etc', 'gentoo', 'config', 'MANIFEST.in']) +src = Collect(remove_list + src_remove_list) build_scons = os.path.join(cwd, 'build', 'scons') build_local = os.path.join(cwd, 'build', 'scons-local') |
