summaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Fix logic to include Platfrom/virtualenv.py in doc buildWilliam Deegan2018-12-051-1/+3
|
* PR #3238: sconsign manpage wording for unknown format.Mats Wichmann2018-12-011-3/+3
| | | | Signed-off-by: Mats Wichmann <mats@linux.com>
* Some fixes to sconsignMats Wichmann2018-12-011-6/+10
| | | | | | | | | | | | | | | | | | | | | | | | Two locations which attempt to directly print an item tipped over on py3, so they now decode(). There seem to be cases where implicit dependencies do not have signatures, so instead of looping through the dep list and indexing into the signature list (IndexError), the two lists are now zipped, which means nothing is printed, but sconsign does not die (the zip technique is used in FS.py in the engine). Minor PEP8 changes: spaces around operators; shorter lines; two-blanks rule around classes/functions. Also unused args changed to _ to show it was intentional. Manpage updated slightly - the internal whichdb function explicitly looks for the .dblite suffix, so the claim that if it's not .dbm it is assumed to be dblite was not true. sconsign still will not work on a dblite file which is not suffixed .dblite, but that is an existing problem, not a newly introduced one. Signed-off-by: Mats Wichmann <mats@linux.com>
* corrections after bdbaddog's code reviewPaweł Tomulik2018-11-101-1/+1
|
* initial support for virtualenvPaweł Tomulik2018-11-102-0/+61
|
* Updated docs post updating Java tool xml fileWilliam Deegan2018-10-157-213/+233
|
* Allow to override build date with SOURCE_DATE_EPOCHBernhard M. Wiedemann2018-10-151-2/+3
| | | | | | | | | | | in order to make builds reproducible. See https://reproducible-builds.org/ for why this is good and https://reproducible-builds.org/specs/source-date-epoch/ for the definition of this variable. Also consistently use ISO 8601 date format to be understood everywhere. Also use gmtime to be independent of timezone.
* Resync generated docsMats Wichmann2018-10-038-58/+92
| | | | | | | | There have been a few doc changes since 3.0.1, this commit resyncs the generated docs to pick up fixes and wording. No code or test effect. Signed-off-by: Mats Wichmann <mats@linux.com>
* Fix some misspellings, remove repeated: andPiotr Kasprzyk2018-07-202-4/+4
| | | | Signed-off-by: Piotr Kasprzyk <ciri@ciri.pl>
* Fix typos from issue 3194Mats Wichmann2018-07-171-3/+3
| | | | | | https://github.com/SCons/scons/issues/3149 Signed-off-by: Mats Wichmann <mats@linux.com>
* typo Hao Wu2018-07-111-1/+1
| | | credit: https://stackoverflow.com/questions/39856184/does-scons-customized-decider-function-require-to-be-class-member
* Fix invalid xml entities in docsMats Wichmann2018-04-231-1/+1
| | | | Signed-off-by: Mats Wichmann <mats@linux.com>
* Added in support for Sconstruct.pygrbd2018-04-153-2/+8
|
* Added sconstruct.py lowercasegrbd2018-04-023-9/+14
|
* updates to docs for SConstruct.pygrbd2018-04-023-6/+11
|
* Fix running my_command example script in exampleWilliam Deegan2018-02-1911-35/+50
|
* Remove duplicate example. Likely caused by bad mergeWilliam Deegan2018-02-195-52/+38
| | | | Fixes #2983
* Fix nested list formatting in manpageMats Wichmann2017-12-211-11/+24
| | | | | | | | | The definition of the list term "--debug=list" contains a list of its own; the list tiems in this list need to have their text contents wrapped in paragraph tags. Signed-off-by: Mats Wichmann <mats@linux.com>
* Remove unused warnings from the man page and Warnings.pyAndrew Featherstone2017-12-031-11/+0
| | | | This warning was never used in the code.
* Remove testing for hashlib and corresponding support for command line options.Andrew Featherstone2017-12-021-9/+0
| | | | hashlib is part of the standard library since Python 2.5, and SCons supports Python 2.7 and later.
* Regenerated docs for 3.0.1 release.William Deegan2017-11-143-22/+6
|
* Fixed print statement to work with py2/3William Deegan2017-11-144-24/+24
|
* Regenerated docs for 3.0.1 release.William Deegan2017-11-1420-114/+255
|
* Doc updatesWilliam Deegan2017-11-142-21/+21
|
* Add printing time processing each SConscript when --debug=time is specified ↵William Deegan2017-10-201-9/+14
| | | | on command line
* Fix logic which was broken by automatic fixers. the sort parameter to ↵William Deegan2017-10-111-1/+3
| | | | GenerateHelpText() is now actually called.
* Simplify main SConstruct. Remove deb and rpm and win executable package ↵William Deegan2017-10-041-1/+2
| | | | creation as we're moving to pip install being the main install path.
* fix spelling for emitterWilliam Deegan2017-09-241-2/+2
|
* addition to user docsgrbd2017-09-242-3/+113
|
* Regenerated docs for 3.0.0 release.William Deegan2017-09-1812-26/+212
|
* mergeWilliam Deegan2017-08-213-3/+11
|\
| * Fix Bug #2486 - Allow SetOption('silent',True) - Previously this option ↵William Deegan2017-08-202-2/+10
| | | | | | | | could not be passed to SetOption
| * Fix Bug #3020 - Download link in user guide broken. python setup.py install ↵William Deegan2017-08-191-1/+1
| | | | | | | | --version-lib broken. Now fixed
* | merge defaultWilliam Deegan2017-08-199-2/+264
|\ \ | |/
| * Added fixes for docs / nested test for use of sys.path in toolpathgrbd2017-08-041-18/+31
| |
| * Added docs for use of the PyPackageDir functiongrbd2017-08-038-2/+111
| |
| * removed ENV = os.environ from the examplesgrbd2017-08-021-4/+4
| |
| * Update to user manual on how to use sys.path for toolpath, and toolpath in ↵grbd2017-08-012-47/+124
| | | | | | | | | | | | general also small update to tests
| * Updated the documentation for nested tools located within subdirsgrbd2017-06-192-0/+63
| |
* | mergeWilliam Deegan2017-06-141-2/+2
|\ \ | |/
| * changes to prep for 3.0.0 alphaWilliam Deegan2017-06-141-2/+2
| |
* | updates from build machineWilliam Deegan2017-06-14236-365/+334
|/
* updates to example outputsWilliam Deegan2017-06-14232-299/+330
|
* Fix doc breakage for D tools. Refer to Russel Windsor for full fix. Several ↵William Deegan2017-06-146-185/+346
| | | | cvars were referred to but deleted in [ 4157:a305db2fec15 Russel Winder <russel@winder.org.uk> 2017-04-21 10:55 First cut at proper documentation for the D tools. ]
* Remove ancient Aegis revision control system filesJane Doe2017-05-306-25/+0
|
* Update docs to remove deprecated sourcecode toolsWilliam Deegan2017-03-2024-745/+141
|
* remove deprecated Perforce toolWilliam Deegan2017-03-207-116/+8
|
* Use print() function to fix py2/3Craig Rodrigues2017-03-108-70/+70
|
* Fix documentation example output to match actual output (Fix #2788)Gaurav Juvekar2017-01-281-5/+5
|
* Commit resolved conflicted merge.Russel Winder2016-04-108-37/+47
|\