summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Fix formattingWilliam Deegan2020-06-291-44/+54
| | |
| * | Update logic to generate scons-api docs and include in the scons-docs ↵William Deegan2020-06-293-54/+28
| | | | | | | | | | | | tarball for distribution
| * | cleanupWilliam Deegan2020-06-291-4/+3
| | |
| * | Remove Announce.txt. All such content should now go into RELEASE.txt and/or ↵William Deegan2020-06-291-1348/+0
| | | | | | | | | | | | CHANGES.txt
| * | [appveyor skip] formatting change travis ciWilliam Deegan2020-06-231-15/+15
| | |
| * | [appveyor skip] add packages to build docs and add steps for API docsWilliam Deegan2020-06-231-1/+1
| | |
| * | [appveyor skip] add packages to build docs and add steps for API docsWilliam Deegan2020-06-231-1/+5
| | |
| * | [appveyor skip] fix ulink vs link xml syntaxWilliam Deegan2020-06-231-4/+4
| | |
| * | [appveyor skip] fix ulink vs link xml syntaxWilliam Deegan2020-06-235-175/+180
| | |
| * | Merge remote-tracking branch 'refs/remotes/upstream/master' into ↵William Deegan2020-06-23112-2345/+2993
| |\ \ | | | | | | | | | | | | restore_scons_local
| * | | [appveyor skip] more travis ci workWilliam Deegan2020-06-231-0/+1
| | | |
| * | | [appveyor skip] more travis ci workWilliam Deegan2020-06-231-7/+7
| | | |
| * | | [appveyor skip] more travis ci workWilliam Deegan2020-06-231-7/+10
| | | |
| * | | a little clean upWilliam Deegan2020-06-231-3/+2
| | | |
| * | | add some TODOsWilliam Deegan2020-06-231-0/+8
| | | |
| * | | add job to do scons' own buildWilliam Deegan2020-06-231-2/+11
| | | |
| * | | add lxmlWilliam Deegan2020-06-231-1/+2
| | | |
| * | | Add scons-local-${VERSION}.tar.gzWilliam Deegan2020-06-231-7/+13
| | | |
| * | | updates. build/dist/scons-local-${VERSION}.zip is now producedWilliam Deegan2020-06-238-28/+64
| | | |
| * | | Merge branch 'master' of github.com:SCons/scons into restore_scons_localWilliam Deegan2020-06-17330-742/+3152
| |\ \ \
| * | | | add copyright noticeWilliam Deegan2020-06-171-0/+61
| | | | |
| * | | | Fix setup.cfg to include SCons.* packages. was only includeing ↵William Deegan2020-06-082-1/+2
| | | | | | | | | | | | | | | | | | | | SCons.Tool.docbook
* | | | | Merge pull request #3724 from mwichmann/uguide-cacheWilliam Deegan2020-06-301-20/+38
|\ \ \ \ \ | |_|_|_|/ |/| | | | Tweak userguide wording on cachedir
| * | | | Tweak userguide wording on cachedir [ci skip]Mats Wichmann2020-06-301-20/+38
|/ / / / | | | | | | | | | | | | Signed-off-by: Mats Wichmann <mats@linux.com>
* | | | Merge pull request #3720 from jcbrill/test-configureWilliam Deegan2020-06-292-8/+70
|\ \ \ \ | | | | | | | | | | Reduce the number of "false negative" test failures for test/Interactive/configure.py
| * | | | Reduce the number of "false negative" test failures for ↵Joseph Brill2020-06-292-8/+70
|/ / / / | | | | | | | | | | | | Interactive/configure.py due to unreliable ordering of statements in the actual stdout output. Replace the expected literal text with a series of regular expressions in a custom match function. Update CHANGES.txt as well.
* | | | Merge pull request #3718 from jcbrill/msvc-testsWilliam Deegan2020-06-286-1/+7
|\ \ \ \ | | | | | | | | | | MSVS 2015+ generated project/solution tests fail for x86 targets
| * | | | Add changes for MSVS 2015+ generated project/solution tests on x86.Joseph Brill2020-06-271-0/+2
| | | | |
| * | | | Add "#include <stdio.h>" to generated c code to prevent build failures on ↵Joseph Brill2020-06-274-0/+4
| | | | | | | | | | | | | | | | | | | | x86 for MSVS 2015+.
| * | | | Swap the argument order for DummyVsWhere to match the signature of ↵Joseph Brill2020-06-271-1/+1
| | | | | | | | | | | | | | | | | | | | find_vc_pdir_vswhere in vc.py.
* | | | | Merge pull request #3716 from mwichmann/env-dict-emulWilliam Deegan2020-06-273-27/+64
|\ \ \ \ \ | | | | | | | | | | | | Add keys() and values() to environment
| * | | | | Add keys() and values() to environmentMats Wichmann2020-06-253-27/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A construction environment provides a method items() which gives you back the k, v pairs from the internal _dict, helping an env behave like a dictionary. This adds the keys() and values() methods to SubstitutionEnvironment (which is the "real" consenv) and OverrideEnvironment to further emulate a dictionary. These methods don't need to convert to list here, the caller can do that itself if it doesn't want a Py3 view object. Add tests, and tweak the existing test a bit. Also in a couple of places in Environment.py, don't loop over a view into a dict that is being changed (del) - loop over the key view object from a copy instead. Signed-off-by: Mats Wichmann <mats@linux.com>
* | | | | | Merge pull request #3708 from mwichmann/testing-docWilliam Deegan2020-06-271-18/+40
|\ \ \ \ \ \ | | | | | | | | | | | | | | Some updates to testing doc.
| * | | | | | A few more edits to testing docMats Wichmann2020-06-251-9/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Mats Wichmann <mats@linux.com>
| * | | | | | Some updates to testing doc. [ci skip]Mats Wichmann2020-06-221-18/+41
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Maybe this shouldn't be in git after all? Signed-off-by: Mats Wichmann <mats@linux.com>
* | | | | | Merge pull request #3713 from mwichmann/man-actionsWilliam Deegan2020-06-271-83/+84
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | A bit of tweaking on Action Objects in manpage
| * | | | | [PR #3713] tweak manpage per review commentsMats Wichmann2020-06-251-4/+12
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Mats Wichmann <mats@linux.com>
| * | | | | A bit of tweaking on Action Objects in manpage [ci skip]Mats Wichmann2020-06-241-82/+75
| |/ / / / | | | | | | | | | | | | | | | Signed-off-by: Mats Wichmann <mats@linux.com>
* | | | | Merge pull request #3714 from mwichmann/uguide-external-chapWilliam Deegan2020-06-255-82/+184
|\ \ \ \ \ | | | | | | | | | | | | Add a new chapter on external tools to User Guide [ci skip]
| * | | | | Add a new chapter on external tools to User Guide [ci skip]Mats Wichmann2020-06-245-82/+184
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | Initial content is the compilation_db material Signed-off-by: Mats Wichmann <mats@linux.com>
* | | | | Merge pull request #3715 from dirkbaechle/docbook-slides-namespace-fixWilliam Deegan2020-06-2422-75/+240
|\ \ \ \ \ | |_|_|_|/ |/| | | | Fix for failing Docbook slides tests.
| * | | | Fix for failing Docbook slides tests.Dirk Baechle2020-06-2422-75/+240
|/ / / /
* | | | Merge pull request #3710 from jcbrill/msvc-detectionWilliam Deegan2020-06-231-12/+13
|\ \ \ \ | |/ / / |/| | | Minor update to CHANGES.txt author order
| * | | move changes from end of list to proper location based on last name; add ↵Joseph Brill2020-06-231-12/+13
|/ / / | | | | | | | | | blank line between last change and previous release. [ci skip]
* | | Merge pull request #3707 from mwichmann/textfile-docWilliam Deegan2020-06-222-149/+154
|\ \ \ | | | | | | | | Tool doc updates: textfile, lib/object
| * | | Tool doc updates: textfile, lib/object [ci skip]Mats Wichmann2020-06-222-149/+154
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Get more descriptive for Textfile/Substfile, which have a few more subtleties than the docs let on, e.g. input "strings" to textfile can also be nodes. Some formatting changes for the library and object builders in Tool/__init__.xml. Signed-off-by: Mats Wichmann <mats@linux.com>
* | | Merge pull request #3706 from dirkbaechle/issue3580-generate-doc-lxmlWilliam Deegan2020-06-2159-1939/+2524
|\ \ \ | | | | | | | | Update of the documentation toolchain to work properly under Python3
| * | | Removed superfluous import of 'sys' in a testcase.Dirk Baechle2020-06-211-1/+0
| | | |
| * | | Fixed another bunch of 'bare except' errors.Dirk Baechle2020-06-2117-17/+17
| | | |
| * | | Fixed Docbook Tool and updated its tests.Dirk Baechle2020-06-2147-168/+1113
| | | |