summaryrefslogtreecommitdiffstats
path: root/doc/man
Commit message (Collapse)AuthorAgeFilesLines
* Update docs for parse_flags keywordsMats Wichmann2019-05-141-4/+8
| | | | | | | | | The somewhat poorly named parse_flags keyword args actually work like the MergeFlags method - don't just split like the ParseFlags method, but do the merging as well. Tweak the docs and add a reference to env.MergeFlags. Signed-off-by: Mats Wichmann <mats@linux.com>
* Give sconsign a default filename.Mats Wichmann2019-04-051-20/+36
| | | | | | | | | | | | | | | | sconsign required filename(s) or directory name(s) to do anything, in their absence it just quits silently. Change so if filename argument omitted, use the same default as scons - .sconsign.dblite. print something in case of bad options. add an extra info line in case the sconsign cannot be read due to pickle protocol (when py2 used in a place where scons previously run with py3) Tweak the manpage a bit. Signed-off-by: Mats Wichmann <mats@linux.com>
* Minor manpage bugfixMats Wichmann2019-02-211-2/+2
| | | | Signed-off-by: Mats Wichmann <mats@linux.com>
* Merge pull request #3261 from mwichmann/doc-defaultWilliam Deegan2019-02-021-1/+1
|\ | | | | Improve scons docs regarding Default()
| * Work on Default docu wording a bit moreMats Wichmann2019-01-191-1/+1
| | | | | | | | | | | | | | An earlier change updated some examples, this makes some tweaks to the wording as well for Default, DEFAULT_TARGETS, etc. to clarify. Signed-off-by: Mats Wichmann <mats@linux.com>
* | Changes for 3.0.4 release3.0.4William Deegan2019-01-231-2/+2
|/
* Update some doc examplesMats Wichmann2019-01-041-7/+7
| | | | | | | | map() now returns an interable instead of a list, update examples which assumed they could just print() the result of a map(). Signed-off-by: Mats Wichmann <mats@linux.com>
* Merge pull request #3249 from mwichmann/doc-install-updateWilliam Deegan2018-12-171-1/+1
|\ | | | | Update docs about installing scons3 (issue #3037)
| * A few more wording tweaks on scons/python installMats Wichmann2018-12-021-1/+1
| | | | | | | | Signed-off-by: Mats Wichmann <mats@linux.com>
| * Update docs about installing scons3Mats Wichmann2018-12-021-1/+1
| | | | | | | | | | | | | | | | Installing via pip now preferred; no more native-type packages (rpm, msi). Python 3 is supported - seemed one more place was missed that said it had to be Py2. Signed-off-by: Mats Wichmann <mats@linux.com>
* | Merge remote-tracking branch 'upstream/master' into ↵William Deegan2018-12-051-7/+11
|\ \ | |/ | | | | fix_mac_shlibversion_gh_issue_3241
| * 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>
* | Doc updates. Some issues with generated files, but use for nowWilliam Deegan2018-12-051-2/+2
|/
* initial support for virtualenvPaweł Tomulik2018-11-101-0/+12
|
* Added in support for Sconstruct.pygrbd2018-04-151-0/+4
|
* Added sconstruct.py lowercasegrbd2018-04-021-8/+12
|
* updates to docs for SConstruct.pygrbd2018-04-021-5/+9
|
* 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.
* Doc updatesWilliam Deegan2017-11-141-1/+1
|
* 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.
* Updated the documentation for nested tools located within subdirsgrbd2017-06-191-0/+16
|
* Remove ancient Aegis revision control system filesJane Doe2017-05-301-4/+0
|
* Use print() function to fix py2/3Craig Rodrigues2017-03-101-18/+18
|
* updated copyright on manpage. TODO: fix update-release-files.sh to do this ↵William Deegan2016-04-091-2/+2
| | | | automatically
* Merged in thosrtanner/scons-cache-name (pull request #302)William Deegan2016-04-081-0/+10
|\ | | | | | | Change the cache to use 2-character directories rather than one. Also makes a lot more tests run on windows
| * Cleanup of code/comments and rename and rewrite of upgrade scriptThomas Tanner2016-03-191-3/+3
| |
| * Update to produce warning message.Thomas Tanner2016-03-131-0/+10
| | | | | | | | | | This also means an existing empty cache directory will be treated as v2 (which is probably a good idea...)
* | Updated documentationAdarsh Sanjeev2016-01-041-1/+8
|/
* Merged in dirkbaechle/scons (pull request #238)William Deegan2015-09-291-12/+10
|\ | | | | | | Fixed license of SVG titlepage files (#2985)
| * Fixed license of SVG titlepage files, resolves #2985. This is required in ↵Dirk Baechle2015-06-021-12/+10
| | | | | | | | | | | | the Debian packaging context, such that the images allow for commercial use too. See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787356 for the original bug description.
* | fix spelling mistakes found by debian lintian tool list here: ↵William Deegan2015-09-281-1/+1
|/ | | | https://lintian.debian.org/full/debian@jff-webhosting.net.html#scons_2.3.6-1
* updated copyright date on man pagesWilliam Deegan2015-03-251-2/+2
|
* - providing MAN page stubs when not all doc packages for the packaging ↵Dirk Baechle2015-01-183-3/+6
| | | | | | process are installed - fixed refmiscinfo for MAN pages
* Update doc, change python floor from 2.4 to 2.7.Gary Oberbrunner2014-08-241-1/+1
|
* Doc fixes: Dirk added cvar defs for new D variables.Gary Oberbrunner2014-07-051-1/+1
| | | | | | Also added cvar def for STATIC_AND_SHARED_LIBS_ARE_THE_SAME and removed an errant line break that prevented the doc from validating.
* Updated author and copyright info.Gary Oberbrunner2014-04-261-12/+12
| | | | Also cleaned up a couple of doc typos.
* - improved dependency handling for doc toolchain (no false rebuilds anymore)Dirk Baechle2014-03-116-81/+78
| | | | | | - fixed EPUB builder - corrected anchor style for links in CSS - documents now include chapter in section numbering
* - added doc editor configuration for XXE5Dirk Baechle2014-01-193-3/+3
| | | | | - added missing icons for XXE4 - adapted schema location, such that the validation works properly in SernaFree and XXE
* - added EPUB Builder to the DocBook Tool, based on the work of Andrew ↵Dirk Baechle2013-12-211-9/+2
| | | | Featherstone
* Merged in dirkbaechle/scons (pull request #91)Gary Oberbrunner2013-11-108-3/+102
|\ | | | | | | Adding EPUB as output format for documentation
| * - added EPUB as output format for documentation ("user" and "man" targets)Dirk Baechle2013-10-088-3/+102
| |
* | Merge pull request #88 (for real this time). Prev commit was actually #87.Gary Oberbrunner2013-11-021-8/+20
|\ \ | | | | | | | | | | | | | | | | | | * Allow multiple options to be specified with --debug=a,b,c * Add support for a readonly cache (--cache-readonly) * Always print stats if requested * Generally try harder to print out a message on build errors
| * \ Merged scons/scons into defaultTom Tanner2013-10-301-18/+18
| |\ \ | | |/
| * | Adding documentation and a couple of testsTom Tanner2013-10-081-2/+3
| | |
| * | support for --cache-readonlyTom Tanner2013-10-011-6/+17
| | | | | | | | | | | | Setting this will fetch data from the cache but won't update it.
* | | Merged scons/scons into defaultTom Tanner2013-10-301-18/+18
|\ \ \ | | |/ | |/|