| Commit message (Expand) | Author | Age | Files | Lines |
* | Drop unused bb.data.expandData function | Chris Larson | 2010-07-02 | 1 | -16/+0 |
* | 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 |
* | Exception handling fixups | Chris Larson | 2010-07-02 | 1 | -2/+2 |
* | Add some missing docstrings | Chris Larson | 2010-07-02 | 1 | -0/+3 |
* | Drop __all__ usage | Chris Larson | 2010-07-02 | 3 | -34/+0 |
* | Drop some unused functions | Chris Larson | 2010-07-02 | 1 | -28/+0 |
* | Drop some unused classes | Chris Larson | 2010-07-02 | 2 | -4/+0 |
* | Drop some unused vars | Chris Larson | 2010-07-02 | 1 | -1/+1 |
* | Import fixups | Chris Larson | 2010-07-02 | 14 | -40/+33 |
* | Formatting cleanups | Chris Larson | 2010-07-02 | 40 | -575/+544 |
* | Drop doctest, as we aren't utilizing it | Chris Larson | 2010-07-02 | 3 | -175/+14 |
* | Don't run metadata event handlers for bb.msg events | Chris Larson | 2010-07-02 | 1 | -0/+4 |
* | Stop using functions via 'bb' that were moved from there to other modules | Chris Larson | 2010-07-02 | 3 | -7/+9 |
* | Add a function to get the debug level, without poking into debug_levels manually | Chris Larson | 2010-07-02 | 1 | -0/+3 |
* | Fix invalid logging domain warning | Chris Larson | 2010-07-02 | 1 | -3/+3 |
* | Make the default domain a proper domain, not a string | Chris Larson | 2010-07-02 | 1 | -26/+29 |
* | Implement bb.msg.domain as a named tuple, drop the Enum class | Chris Larson | 2010-07-02 | 2 | -59/+21 |
* | Fix an error in the ncurses UI | Chris Larson | 2010-07-02 | 1 | -3/+3 |
* | Immediately display messages if no UI handlers are installed yet | Chris Larson | 2010-07-02 | 1 | -3/+12 |
* | Fix the task event handling in the ncurses UI | Chris Larson | 2010-07-02 | 1 | -1/+1 |
* | Ensure we always utilize the correct messaging domains | Chris Larson | 2010-07-02 | 6 | -14/+14 |
* | bb.event: NotHandled and Handled are on the way out | Chris Larson | 2010-07-02 | 1 | -2/+6 |
* | Rename the finalise method for consistency | Chris Larson | 2010-07-02 | 1 | -4/+4 |
* | Move update_data into the DataSmart class as a finalize() method | Chris Larson | 2010-07-02 | 2 | -136/+67 |
* | Drop doctest, as we aren't utilizing it | Chris Larson | 2010-07-02 | 1 | -33/+0 |
* | Made '-b' work with BBCLASSEXTEND | Enrico Scholz | 2010-07-02 | 2 | -4/+11 |
* | Resurrect the old bb.vercmp as bb.utils.vercmp, and its deps | Chris Larson | 2010-07-02 | 2 | -1/+144 |
* | Pass the config metadata into the Cache constructor rather than the cooker | Chris Larson | 2010-07-02 | 1 | -4/+4 |
* | Resurrect merged anonfunc execution | Chris Larson | 2010-07-02 | 1 | -4/+9 |
* | Add & utilize a simple_exec utility function | Chris Larson | 2010-07-02 | 2 | -1/+4 |
* | Consolidate the exec/eval bits, switch anonfunc to better_exec, etc | Chris Larson | 2010-07-02 | 6 | -53/+36 |
* | Pass an empty locals dict in expansion, since list comprehensions apparently ... | Chris Larson | 2010-07-02 | 1 | -2/+2 |
* | Two minor changes to the way python snippet expansion happens | Chris Larson | 2010-07-02 | 1 | -8/+8 |
* | bitbake: providers.py: Fix typo | Richard Purdie | 2010-07-01 | 1 | -1/+1 |
* | bitbake: Add bb.utils.join_deps to handle creation of dependency strings with... | Richard Purdie | 2010-06-30 | 1 | -0/+12 |
* | bitbake: Move the logger initialization from cooker to utils | Jeff Dike | 2010-06-29 | 2 | -11/+16 |
* | bitbake: allow fakeroot functionality to be provided by an alternative program | Joshua Lock | 2010-06-25 | 1 | -1/+1 |
* | bitbake decodeurl: fix the file:// url handling | Nitin A Kamble | 2010-06-07 | 1 | -1/+4 |
* | bitbake/event.py: Run class eventhandlers in the task context but ensure UI h... | Richard Purdie | 2010-03-25 | 1 | -8/+17 |
* | bitbake/cooker.py: Finishing the command needs to happen after the BuildCompl... | Richard Purdie | 2010-03-25 | 1 | -2/+2 |
* | cache.py: Bump the cache version after the BBVERSIONS update | Richard Purdie | 2010-03-25 | 1 | -1/+1 |
* | bb.manifest: Drop, its unused and obsolete. No point in having dead code around | Richard Purdie | 2010-03-25 | 1 | -144/+0 |
* | BBFILES: use a set to remove duplicates when collecting. | Chris Larson | 2010-03-25 | 1 | -4/+4 |
* | bb/command was importing bb and accessing some of its own classes indirectly ... | Chris Larson | 2010-03-25 | 1 | -3/+5 |
* | Why is bb/__init__.py importing bb? | Chris Larson | 2010-03-25 | 1 | -1/+2 |
* | data_smart: be explicit about what we make available to eval'd python code | Chris Larson | 2010-03-25 | 1 | -2/+7 |
* | Fix 7 references to undefined variables, as spotted by pyflakes | Chris Larson | 2010-03-25 | 4 | -8/+7 |