summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Issue 2255: Handle scanning of UTF-8 and UTF-16 files. (Greg Spencer)Steven Knight2008-12-1214-31/+160
|
* Issue 2102: Add support for Microsoft Visual Studio 9. (Dmitri Rubinstein)Steven Knight2008-12-112-1/+72
|
* Issue 2231: Add a --warn=future-deprecated option, along withSteven Knight2008-12-114-3/+32
| | | | | | | FutureDeprecatedWarning and MandatoryDeprecatedWarning subclasses. Use these to future-deprecate the Taskmaster.Task class, which we intend to turn into an abstract base class by requiring subclasses to implement the .needs_execute() method.
* Added regression test for issue #1249Gary Oberbrunner2008-12-111-1/+1
|
* Fix issue #1249 by making Mkdir action (actually mkdir_func) succeed if the ↵Gary Oberbrunner2008-12-112-1/+97
| | | | underlying mkdir throws EEXIST and there is an existing dir there already.
* Print "scons: Build interrupted." on stderr, not stdout.Steven Knight2008-12-102-1/+7
|
* Issue 1287: copy File attributes from the local Node to a RepositorySteven Knight2008-12-102-0/+22
| | | | | Node so we identify shared object files in a Repository and can link them into a local shared library. (Matthew Wesley)
* Create Taskmaster.{Always,OutOfDate}Task subclasses of Taskmaster.TaskSteven Knight2008-12-084-30/+53
| | | | to hold different implementations of the .needs_execute() method.
* Make ${,UN}CHANGED_{SOURCES,TARGETS} into future reserved constructionSteven Knight2008-12-076-16/+101
| | | | variable names, with an appropriate warning.
* src/CHANGES.txt updates for changes since 4 November.Steven Knight2008-12-071-0/+28
|
* Issue 2265: Suppress messages about spurious dependency cycles.Steven Knight2008-12-074-29/+48
| | | | (Jason Kenny)
* Issue 2116: Eliminate some spurious dependency cycles by being moreSteven Knight2008-12-063-30/+150
| | | | | aggressive about pruning pending children from the Taskmaster walk. (Benoit Belley)
* Issue 2267, fix use of uninitialized variableGreg Noel2008-12-061-6/+6
|
* Give proper credit to Benoit Belley for the --taskmastertrace=Steven Knight2008-12-051-5/+3
| | | | enhancements in the previous commit.
* Issue 2265: Add additional --taskmastertrace= messages in the Task class.Steven Knight2008-12-053-16/+98
| | | | Refactor messages in the Taskmaster class to use new, common methods.
* Fix issue #3: make Append/PrependUnique uniquify the appended/prepended list ↵Gary Oberbrunner2008-12-052-4/+30
| | | | first.
* Fix a Glob() exception (with stack trace) when an explicit NodeSteven Knight2008-12-023-8/+34
| | | | | exists in a repository directory without a corresponding on-disk file or directory.
* Accidently left a debug print in.Robert Managan2008-11-251-4/+5
|
* Add a test for the case of a .DVI build using a .eps graphics.Robert Managan2008-11-251-10/+20
| | | | | | Test that we don't make a .pdf file from the graphic. The patch also covers the case of requiring the graphics files I search for to have an extension so we don't try to build fig.eps from fig.eps...
* Add reference to LoadableModule in SharedLibrary descriptionGreg Noel2008-11-191-0/+5
|
* Speed up Node.FS.EntryProxy.__getattr__() by not spending cyclesSteven Knight2008-11-152-10/+27
| | | | | | | generating an AttributeError exception message that gets ignored most of the time. Instead, re-raise an AttributeError subclass that delays message generation until its __str__() method is actually called. (Brad Fitzpatrick)
* Fix typo found by Jared GrubbGreg Noel2008-11-151-1/+1
|
* I found that my coding for automatically building .pdf files from .eps filesRobert Managan2008-11-121-1/+1
| | | | | | failed when the .tex file is in a subdirectory. I added a new test and made the one line fix.
* Python 1.5 and 2.1 compatibility: string methods, nested scopes.Steven Knight2008-11-122-4/+8
|
* Merged revisions 3759-3762 via svnmerge fromSteven Knight2008-11-111-691/+689
| | | | | | | | | | | | | | | | | | | | | | | | | | | | http://scons.tigris.org/svn/scons/branches/sgk_subst ........ r3759 | stevenknight | 2008-11-03 17:59:30 -0800 (Mon, 03 Nov 2008) | 3 lines Refactor individual unit test methods into separate TestCase sbblcasses, so we can start re-using test fixtures. ........ r3760 | stevenknight | 2008-11-03 18:43:01 -0800 (Mon, 03 Nov 2008) | 4 lines Refactor the overlapping classes and dictionaries of values for testing scons_subst() and scons_subst_list() into the common SubstTestCase base class so we can re-use the same input for testing the new code. ........ r3761 | stevenknight | 2008-11-03 22:43:51 -0800 (Mon, 03 Nov 2008) | 3 lines Split the large test methods into separate test methods for specific, individual pieces of functionality. ........ r3762 | stevenknight | 2008-11-04 05:06:43 -0800 (Tue, 04 Nov 2008) | 4 lines Share code the basic comparison code between the scons_subst() and scons_subst_list() test cases by moving it into the base class and wrapping the call. ........
* Issue 2238: Add a __contains__() method to support the "val in env"Steven Knight2008-11-093-0/+46
| | | | statement for construction environments.
* Issue 2228: discard stderr by using os.devnullGreg Noel2008-11-094-7/+18
|
* Fix an exception and stack trace when Glob() hits an on-disk file orSteven Knight2008-11-083-5/+25
| | | | directory that begins with '#'.
* Fix a nested-scope regression affecting Python 1.5, 2.0 and 2.1.Steven Knight2008-11-071-1/+2
|
* Issue 2242: Minor style and loop enhancementsGreg Noel2008-11-071-102/+92
|
* Issue 2235: File.Dir() creates files in the wrong placeGreg Noel2008-11-071-17/+13
|
* Update src/CHANGES.txt for changes since 1.1.0.Steven Knight2008-11-041-0/+40
|
* Issue 2087: Handle Java classes declared in methodsLudwig Hähne2008-10-311-0/+16
|
* Fix uncaught KeyboardInterrupt.Steven Knight2008-10-311-0/+2
|
* Fix use of isinstance(..., tuple) so it works in older Python versions.Steven Knight2008-10-311-3/+7
|
* Fix calling Exit() from within a Python function action, so that it getsSteven Knight2008-10-311-0/+2
| | | | | detected and exits with the specified value under Python versions before 2.5, by explicitly catching and re-raising the SystemExit exception.
* This new test and emitter update recursively checks the whole source of theRobert Managan2008-10-301-37/+45
| | | | | | | | | | | latex document for commands that affect what side effect files will be created, and for graphics files that are included (so we can convert postscript to pdf if pdflatex is being run). Now that this is recursive we could tighten up on the side effect file list (e.g. a \makeindex with no \index commands won't make all the files we tell scons to expect as side effects) but I think that is asking for trouble if we mess it up.
* Older Python portability: isinstance() only takes a single class.Steven Knight2008-10-301-1/+3
|
* exception must be stringified before comparisonGreg Noel2008-10-291-1/+1
|
* Applied Benoit Belley's patch in ticket 1957 improve the robustness ofGary Oberbrunner2008-10-2910-86/+257
| | | | | | | | | | | | GetBuildFailures(). New function convert_to_buildError, and use it in several places so all build failures now go through it and are returned as BuildError exceptions. Had a small effect on output formatting in many tests but no significant change to behavior. I reworked the patch a little to keep SCons exit status values the same as before; this patch could make it simpler to change them in some cases, e.g. exit with the errno of the failed action if desired. One nice side effect of this patch is that more scons errors print the node that caused the error now.
* Speed up Node.FS.FileFinder.find_file() by avoiding constructing debuggingSteven Knight2008-10-292-8/+9
| | | | strings that will only get thrown away during normal operation.
* Issue 2228: Add os.devnull to the SCons.compat layer.Steven Knight2008-10-281-0/+13
|
* Set FORTRANMODDIRPREFIX for ifort tool (should fix 1260).David Cournapeau2008-10-201-0/+3
|
* Update docstring for ifort.David Cournapeau2008-10-201-1/+1
|
* Fix trailing space.David Cournapeau2008-10-201-2/+2
|
* Issue 1568: fix a stack trace when --debug=include tries to handleSteven Knight2008-10-172-1/+7
| | | | a library as an argument.
* Fix use of VariantDir when the -n option is used and doesn't,Steven Knight2008-10-152-1/+17
| | | | therefore, actually create the variant directory.
* Support the -f option allowing specification of a different top-levelSteven Knight2008-10-152-5/+13
| | | | "SConstruct" file name to search for when using the -D, -U or -u options.
* Fix release lines (incorrect line updated in merge from checkpoint).Steven Knight2008-10-151-2/+2
|
* Don't use the Exception.message attribute that was deprecated inSteven Knight2008-10-121-2/+1
| | | | Python 2.6; just str() the exception instead.