| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Drop the non-debug traceback suppressor, at this point I think it does more h... | Chris Larson | 2010-07-02 | 1 | -13/+0 |
* | Change wget fetcher to use the runfetchcmd | Ryan Phillips | 2010-07-02 | 2 | -25/+6 |
* | Show a traceback when a task fails due to an exception | Chris Larson | 2010-07-02 | 1 | -3/+4 |
* | parser: fix harmless typo in variable name | Bernhard Reutner-Fischer | 2010-07-02 | 1 | -4/+4 |
* | Fix the silent exit when the specified task doesn't exist | Chris Larson | 2010-07-02 | 1 | -4/+2 |
* | Move the output of no provider and multiple provider messages into the UI | Chris Larson | 2010-07-02 | 3 | -32/+28 |
* | Reorganize the main exception handling so an attribute exception raised in th... | Chris Larson | 2010-07-02 | 1 | -5/+8 |
* | Make knotty ignore the NoProvider event | Chris Larson | 2010-07-02 | 1 | -15/+8 |
* | Don't tell the user we're sending SIGINT to the remaining 0 tasks | Chris Larson | 2010-07-02 | 1 | -6/+7 |
* | cooker: use time.strftime() instead of spawing sh with date | Bernhard Reutner-Fischer | 2010-07-02 | 1 | -1/+1 |
* | Adjust the exception handling based on Cliff Brake's patch | Chris Larson | 2010-07-02 | 1 | -1/+2 |
* | Fix a couple typos in the CVS Fetcher section. | Robert P. J. Day | 2010-07-02 | 1 | -2/+2 |
* | cache: do not chdir unnecessarily | Bernhard Reutner-Fischer | 2010-07-02 | 1 | -4/+12 |
* | persist_data: cache connection and use cursor | Bernhard Reutner-Fischer | 2010-07-02 | 2 | -12/+18 |
* | cache: use a set() for __depends | Bernhard Reutner-Fischer | 2010-07-02 | 2 | -8/+6 |
* | cache: use max() to determine newest_mtime | Bernhard Reutner-Fischer | 2010-07-02 | 1 | -3/+4 |
* | cache: use os.path ops instead of stat | Bernhard Reutner-Fischer | 2010-07-02 | 1 | -8/+2 |
* | Make the file not found error actually useable. | Chris Larson | 2010-07-02 | 1 | -3/+5 |
* | fetch: commentary typo fix in fetcher_init() | Bernhard Reutner-Fischer | 2010-07-02 | 1 | -1/+1 |
* | cache: fix typo in error message of cacheValidUpdate() | Bernhard Reutner-Fischer | 2010-07-02 | 1 | -1/+1 |
* | fetch: documentation typo fix | Bernhard Reutner-Fischer | 2010-07-02 | 1 | -1/+1 |
* | fetch: Check for existence of tar file along with md5 signature | Khem Raj | 2010-07-02 | 1 | -2/+2 |
* | Revert "In expand, drop the unnecessary second regular expression match" | Chris Larson | 2010-07-02 | 1 | -11/+11 |
* | Don't emit vars starting with __, as those are internal | Chris Larson | 2010-07-02 | 1 | -1/+1 |
* | In expand, drop the unnecessary second regular expression match | Chris Larson | 2010-07-02 | 1 | -11/+11 |
* | Simplify _findVar a bit | Chris Larson | 2010-07-02 | 1 | -9/+6 |
* | Fix major bug that slipped in when moving update_data | Chris Larson | 2010-07-02 | 1 | -9/+10 |
* | Move a var definition in cooker.parse_next | Chris Larson | 2010-07-02 | 1 | -1/+1 |
* | Enhance the expansion exception message | Chris Larson | 2010-07-02 | 1 | -6/+3 |
* | For ${@}, run str() on the result | Chris Larson | 2010-07-02 | 1 | -6/+4 |
* | Allow emission of non-string objects in emit_var, instead running str() on it... | Chris Larson | 2010-07-02 | 1 | -4/+2 |
* | emit_env: clean up, iterate once | Chris Larson | 2010-07-02 | 1 | -11/+7 |
* | Fix the debug level check in print_exception | Chris Larson | 2010-07-02 | 1 | -1/+1 |
* | Don't try to expand non-string values | Chris Larson | 2010-07-02 | 4 | -19/+21 |
* | Move the python version check into the python package | Chris Larson | 2010-07-02 | 2 | -5/+5 |
* | Drop an unnecessary second python version check and use the less ugly sys.ver... | Chris Larson | 2010-07-02 | 1 | -6/+2 |
* | Bump version to 1.11.0 | Chris Larson | 2010-07-02 | 2 | -2/+2 |
* | Move the python version check before the module imports, in case the modules ... | Chris Larson | 2010-07-02 | 1 | -4/+7 |
* | Search up the directory tree for bblayers.conf | Chris Larson | 2010-07-02 | 1 | -2/+12 |
* | Add a hack to avoid the req that all vars using LAYERDIR be immediately expanded | Chris Larson | 2010-07-02 | 1 | -0/+14 |
* | Move the unset BBPATH sanity check after the bblayers processing | Chris Larson | 2010-07-02 | 2 | -4/+4 |
* | Kill unnecessary usages of the types module | Chris Larson | 2010-07-02 | 5 | -22/+22 |
* | Apply some 2to3 transforms that don't cause issues in 2.6 | Chris Larson | 2010-07-02 | 26 | -269/+268 |
* | Add __contains__ to COWDictMeta | Chris Larson | 2010-07-02 | 1 | -0/+3 |
* | Drop unused bb.data.expandData function | Chris Larson | 2010-07-02 | 1 | -16/+0 |
* | Ignore deprecation warnings for now | Chris Larson | 2010-07-02 | 1 | -0/+1 |
* | Switch some references to moved functions | Chris Larson | 2010-07-02 | 4 | -7/+11 |
* | Add a missing import of print_function | Chris Larson | 2010-07-02 | 1 | -0/+1 |
* | Apply the 2to3 print function transform | Chris Larson | 2010-07-02 | 17 | -218/+220 |
* | Deprecate the usage of certain objects via certain modules | Chris Larson | 2010-07-02 | 2 | -4/+42 |