summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* change back to development version stringsHEADmasterWilliam Deegan2017-11-146-14/+14
|
* add vscode dir to gitignore3.0.1rel_3.0.1William Deegan2017-11-141-0/+2
|
* Regenerated docs for 3.0.1 release.William Deegan2017-11-143-22/+6
|
* Fix bad syntax in module not currently usedWilliam Deegan2017-11-141-0/+1
|
* Refactor some variable names. Create a SConstruct_created next to created ↵William Deegan2017-11-141-21/+27
| | | | files for document examples so the example code can be rerun manually to debug any issues found when running
* Fix messaging when two environments are specified for same target to handle ↵William Deegan2017-11-141-1/+4
| | | | when the action cannot be decoded as UTF-8. This most likely only happens when the action is a python function. It was breaking (at least) some example output generated for documentation
* Add ability to regenerate a single example outputWilliam Deegan2017-11-141-2/+9
|
* Merge branch 'rel_3.0.1' of github.com:SConsProject/scons into rel_3.0.1William Deegan2017-11-140-0/+0
|\
| * Updates to release textsWilliam Deegan2017-11-132-5/+7
| |
| * Fixed print statement to work with py2/3William Deegan2017-11-134-24/+24
| |
| * Regenerated docs for 3.0.1 release.William Deegan2017-11-1320-114/+255
| |
| * minor improvements in script logicWilliam Deegan2017-11-131-5/+9
| |
| * Doc updatesWilliam Deegan2017-11-122-21/+21
| |
| * Update version stringsWilliam Deegan2017-11-127-15/+15
| |
* | Updates to release textsWilliam Deegan2017-11-142-5/+7
| |
* | 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
| |
* | minor improvements in script logicWilliam Deegan2017-11-141-5/+9
| |
* | Doc updatesWilliam Deegan2017-11-142-21/+21
| |
* | Update version stringsWilliam Deegan2017-11-147-15/+15
| |
* | Merge pull request #17 from dmoody256/masterWilliam Deegan2017-11-146-10/+201
|\ \ | |/ |/| Fix Jar again and add Travis CI script
| * switched the order of target/source checking so no target is an option, also ↵Daniel Moody2017-11-141-10/+10
| | | | | | | | fixed Warning module mispelling.
| * update CHANGES.txtDaniel Moody2017-11-141-0/+2
| |
| * Added Jar test to check if multiple targets can be passed.Daniel Moody2017-11-141-8/+29
| |
| * Added a way to handle multiple targets for the Jar builder and an extra ↵Daniel Moody2017-11-141-5/+13
| | | | | | | | warning message.
| * added my updates to CHANGES.txtDaniel Moody2017-10-261-1/+12
| |
| * added a travis script for CI on github. This is passing for most of the ↵Daniel Moody2017-10-261-0/+16
| | | | | | | | test, and considers no results a pass because some wont be able to be tested with travis at the moment (i.e windows).
| * updated the JAR test to test that the java source files were actually ↵Daniel Moody2017-10-262-5/+21
| | | | | | | | compiled and are in the resulting jar file. Also updated the swig dependency test to throw no result from what seems to be a non java related bug.
| * added a method to the jar tool to handle directories and file sources. This ↵Daniel Moody2017-10-262-2/+119
|/ | | | was taken from the similar Java method in the javac tool. Updated the Jar builder to have an unambiguos name.
* Merge pull request #9 from ztessler/repeattargetWilliam Deegan2017-10-226-1/+141
|\ | | | | Fix incorrect warning of different environments
| * Two new tests to verify warnings when targets are repeated with same ↵Zachary Tessler2017-10-122-0/+123
| | | | | | | | actions, but either environments or overrides differ.
| * Fix incorrect warning of different environments for a target when repeating ↵Zachary Tessler2017-10-064-1/+18
| | | | | | | | identical builder or Command calls that use overrides
* | Merge pull request #16 from bdbaddog/add_sconscript_timingWilliam Deegan2017-10-203-9/+24
|\ \ | | | | | | Add printing time processing each SConscript when --debug=time is specified on command line
| * | Add printing time processing each SConscript when --debug=time is specified ↵William Deegan2017-10-203-9/+24
|/ / | | | | | | on command line
* | Merge pull request #15 from bdbaddog/fix_failing_msvs_tests_print_tupleWilliam Deegan2017-10-161-2/+2
|\ \ | | | | | | Fix issue where test framework was printing a tuple under python 2.7 …
| * | Fix issue where test framework was printing a tuple under python 2.7 (since ↵William Deegan2017-10-161-2/+2
|/ / | | | | | | we removed need for print function under 2.7. This was breaking all the logic used by test framework to get the list of installed MSVS's. Switched to proper print format string
* | Merge pull request #14 from bdbaddog/fix_py3_syspath_explosionWilliam Deegan2017-10-142-2/+9
|\ \ | | | | | | Fix issue with Tool loading logic where sys.path was getting an addition site_scons/site_tools path prepended with every tool loaded when running with Python 3.5+.
| * | Fix issue with Tool loading logic where sys.path was getting an addition ↵William Deegan2017-10-132-2/+9
|/ / | | | | | | site_scons/site_tools path prepended with every tool loaded when running with Python 3.5+.
* | Merge branch 'dmoody256-master'William Deegan2017-10-123-2/+66
|\ \
| * \ Merge branch 'master' of https://github.com/dmoody256/scons into ↵William Deegan2017-10-123-2/+66
| |\ \ |/ / / | | | | | | dmoody256-master
| * | added test to JAR to also check the case that java source files are passed ↵Daniel Moody2017-10-101-0/+62
| | | | | | | | | | | | directly as a source to the Jar builder. The only other test that did this was multi-setp.py which was reliant on swig being installed.
| * | added changes to CHANGES.txtDaniel Moody2017-10-071-0/+4
| | |
| * | updated the Jar tool to not force sources to .class files allowing for ↵Daniel Moody2017-10-071-2/+0
| |/ | | | | | | directories to be passed as sources as well.
* | Merge pull request #13 from bdbaddog/add_cmp_to_compatWilliam Deegan2017-10-122-4/+4
|\ \ | | | | | | Fix tests where the GenerateHelpText() sort function was never correc…
| * | Fix tests where the GenerateHelpText() sort function was never correct and ↵William Deegan2017-10-122-4/+4
| | | | | | | | | | | | fixing the logic broke the test because of that
* | | Merge pull request #12 from bdbaddog/add_cmp_to_compatWilliam Deegan2017-10-115-8/+44
|\ \ \ | |/ / | | / | |/ |/| Add cmp to SCons.Util as py3 no longer provides it and fix GenerateHelpText()'s sort parameter functionality
| * Fix logic which was broken by automatic fixers. the sort parameter to ↵William Deegan2017-10-114-2/+32
| | | | | | | | GenerateHelpText() is now actually called.
| * Add cmp to SCons.Util as py3 no longer provides itWilliam Deegan2017-10-112-6/+12
|/
* Merge pull request #8 from bdbaddog/fix_scons_buildWilliam Deegan2017-10-0414-1066/+222
|\ | | | | Fix scons build
| * Simplify main SConstruct. Remove deb and rpm and win executable package ↵William Deegan2017-10-0413-1001/+182
| | | | | | | | creation as we're moving to pip install being the main install path.