Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix label placement in gnuplot graphs by the "scons-time.py func" | Steven Knight | 2008-10-07 | 3 | -4/+13 |
| | | | | subcommand when a profile result is equal to (or near) 0.0. | ||||
* | Initial Python 2.6 portability in SCons code itself, using subprocess | Steven Knight | 2008-10-07 | 3 | -12/+17 |
| | | | | in place of popen2, and calling hashlib.md5() instead of the md5 module. | ||||
* | Rudimentary Python 2.6 portability in the test infrastructure, fixing | Steven Knight | 2008-10-07 | 2 | -21/+39 |
| | | | | | | "import popen2" warnings that interfere with some of the tests executing cleanly. This converts to using subprocess by default, falling back to popen2 if it's not available. | ||||
* | Remove left-over debug print. | Steven Knight | 2008-10-07 | 1 | -2/+0 |
| | |||||
* | Fix a block in Script/Main.py that could swallow KeyboardInterrupt | Steven Knight | 2008-10-05 | 2 | -1/+3 |
| | | | | | exceptions. Fix the script that analyzes our try:-except: block so it recognizes that "except Exception, e:" is equivalent to "except:". | ||||
* | documentation changes for Action() refactoring | Greg Noel | 2008-10-04 | 1 | -39/+42 |
| | |||||
* | Issue 2166, refactor Action() factory to make positional parameters consistent | Greg Noel | 2008-10-04 | 3 | -261/+427 |
| | |||||
* | Fix small inefficiency in jobs dispatching | Greg Noel | 2008-10-04 | 1 | -1/+1 |
| | |||||
* | Updates to SCons development system admin scripts: | Steven Knight | 2008-10-04 | 3 | -1/+7 |
| | | | | | | * Add Python 2.6. * Add recent SCons versions. * Add pkg-config (used to generate some doc examples). | ||||
* | User's Guide updates: | Steven Knight | 2008-10-03 | 11 | -37/+37 |
| | | | | | | Mostly MSVC compilation lines so the /Fo is at the beginning of the output line. Also some new/modified variables in the environment dump in the Troubleshooting appendix, and removing a leftover XXX todo comment. | ||||
* | Update highlight and roadmap schedule. | Steven Knight | 2008-10-03 | 3 | -8/+18 |
| | | | | | Add a comment about how to generate the roadmap table from the "schedule" input file. | ||||
* | Correct typos to roadmap.html that snuck in... | Greg Noel | 2008-10-02 | 3 | -8/+8 |
| | |||||
* | Move release days to Monday; slip 1.1 (but not rest); typos | Greg Noel | 2008-10-02 | 3 | -68/+42 |
| | |||||
* | implement delete_existing for AppendUnique and PrependUnique. Finishes #2091. | Gary Oberbrunner | 2008-10-02 | 3 | -14/+59 |
| | |||||
* | Add Users Guide example of using $SOURCE substitution in a target name in a ↵ | Gary Oberbrunner | 2008-10-02 | 2 | -0/+44 |
| | | | | Command builder. Just doc. | ||||
* | Python 2.2 portability: no dictionary pop() method. | Steven Knight | 2008-10-01 | 1 | -1/+1 |
| | |||||
* | Update for latest changes. | Steven Knight | 2008-10-01 | 1 | -0/+6 |
| | |||||
* | Fix the regular expression for LaTeX scanning so that it matches | Steven Knight | 2008-10-01 | 2 | -2/+12 |
| | | | | \include (and other inclusion strings) after blank lines. | ||||
* | Add ability to use "$SOURCE" when specifying a target to a builder; fixes #2219. | Gary Oberbrunner | 2008-10-01 | 4 | -3/+60 |
| | |||||
* | This patch removes setting the variable TEXPICTS in the tex tools and | Robert Managan | 2008-09-30 | 4 | -5/+73 |
| | | | | | | | | | | | | | | sets it in tee dvi2ps and dvipdf tools where it is needed. This means that we can reset it to the original value at the end of the tool. This is done by storing the .tex source file's path in the .dvi file's Node .attribute slot and retrieving it in the dvi2ps and dvipdf tools from the source. I also updated the list of graphics extensions in the Latex scanner I set up one function that gets called to run either dvi2ps or dvipdf after setting TEXPICTS. | ||||
* | Better error when taskmaster gets an exception while scanning children (show ↵ | Gary Oberbrunner | 2008-09-29 | 1 | -2/+2 |
| | | | | actual exception string). | ||||
* | Fix test to work with all versions of Python | Greg Noel | 2008-09-29 | 1 | -20/+21 |
| | |||||
* | Issue 1646: Block-wise signature computation for large files | Ludwig Hähne | 2008-09-28 | 6 | -4/+195 |
| | |||||
* | Fix scons-local packaging test breakage in MSVS tests by correcting | Steven Knight | 2008-09-27 | 1 | -2/+2 |
| | | | | the spelling of TestSCons._scons_version to TestSCons.scons_version. | ||||
* | Revert checkin of incomplete change | Greg Noel | 2008-09-26 | 1 | -31/+13 |
| | |||||
* | reassign credit where credit is due | Greg Noel | 2008-09-26 | 2 | -19/+46 |
| | |||||
* | Update with recent changes: | Steven Knight | 2008-09-26 | 1 | -12/+36 |
| | | | | | | | * Scan .rc files. * Big TeX changes. * .sx file suffix. * delete_existing keyword argument. | ||||
* | Add RC.py scanner to MANIFEST.in | David Cournapeau | 2008-09-26 | 1 | -0/+1 |
| | |||||
* | Fixed an issue with the way the test was setting up the CPPPATH. | William Deegan | 2008-09-26 | 1 | -4/+4 |
| | | | | | | | Was causing buildbot failure on centos5 buildbot. Turns out some weird interaction with the bogus code which is replaced below was only happening when setuptools was installed in the python tree being used for tests. | ||||
* | Updated fix for bug 2082 adding support for D3DFX keyword and fixing python ↵ | William Deegan | 2008-09-26 | 2 | -2/+6 |
| | | | | 1.5.2 issue | ||||
* | Sort the results of unittest for RC scanner before comparing them. | William Deegan | 2008-09-25 | 1 | -0/+2 |
| | |||||
* | Fix for previous fix for 402 and 2082 | William Deegan | 2008-09-25 | 1 | -1/+2 |
| | |||||
* | Fix __COPYRIGHT__ and __revision__ lines. | Steven Knight | 2008-09-25 | 1 | -2/+2 |
| | |||||
* | Make a naked except: block catch specific exceptions (and not | Steven Knight | 2008-09-25 | 1 | -1/+1 |
| | | | | swallow a KeyboardInterrupt at the wrong time). | ||||
* | Fix for bugs 402 and 2082 - implement scanner for windows resource files. | William Deegan | 2008-09-25 | 3 | -3/+213 |
| | | | | Basic unittest included | ||||
* | Issue 2183, fix typos | Greg Noel | 2008-09-25 | 2 | -2/+2 |
| | |||||
* | Issue 2183: .sx assembler suffix uses C preprocessor | Greg Noel | 2008-09-25 | 4 | -3/+5 |
| | |||||
* | Change FUTURE markers to TODO(1.5) so we are all using the same style. | Greg Noel | 2008-09-25 | 4 | -4/+5 |
| | |||||
* | Add descrption of release candidate to roadmap, plus some clarifications. | Greg Noel | 2008-09-24 | 1 | -18/+25 |
| | |||||
* | Python 1.5 portability in test/Execute.py. | Steven Knight | 2008-09-24 | 1 | -1/+11 |
| | |||||
* | Split the MSVS variant_dir sub-tests into separate test scripts. | Steven Knight | 2008-09-24 | 8 | -264/+418 |
| | |||||
* | Split the sub-tests for cleaning MSVS project and solution files | Steven Knight | 2008-09-24 | 8 | -250/+423 |
| | | | | into separate test scripts. | ||||
* | Move the MSVS 6.0 test data into QMTest/TestSConsMSVS.py, too. | Steven Knight | 2008-09-24 | 2 | -158/+162 |
| | |||||
* | Move Visal Studio test data into QMTest/TestSConsMSVS.py. | Steven Knight | 2008-09-24 | 4 | -371/+385 |
| | |||||
* | Refactor Visual Studio testing logic into a separate TestSConsMSVS | Steven Knight | 2008-09-23 | 12 | -123/+151 |
| | | | | subclass, in its own module. | ||||
* | Python 1.5 compatibility: explicity import SCons.compat (again) | Steven Knight | 2008-09-23 | 1 | -0/+5 |
| | | | | | so the zip() function is available so the unit tests can pass when run on older Python versions. | ||||
* | 1.5 compatibility: string methods in Tool/msvs.py. | Steven Knight | 2008-09-23 | 1 | -13/+40 |
| | |||||
* | 1.5 / 2.[01] compatibility: nested scopes in Tool/tex.py. | Steven Knight | 2008-09-23 | 1 | -1/+1 |
| | |||||
* | 1.5 / 2.[012] compatiblity: shutil.move() function. | Steven Knight | 2008-09-23 | 1 | -0/+40 |
| | |||||
* | 1.5 compatiblity: string method in Node/FSTests.py. | Steven Knight | 2008-09-23 | 1 | -1/+1 |
| |