aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb
AgeCommit message (Collapse)Author
2005-05-22bitbake/lib/bb/make.py:Holger Hans Peter Freyther
Pass more data to the parsing progressCallBack. We will soon use this data to eliminate the long delay before building. bitbake/bin/bitbake: Just change the signature of the callback method for now. We will soon keep the 'parsing status' in a instance we will fill while parsing and only evaluate in build_depgraph
2005-05-21bitbake/lib/bb/data_smart.py:Holger Hans Peter Freyther
-Do a deepcopy of the parent for the persistent data storage constructor. -Store the dict as _data member and not the instance -Operate on the dict in the methods instead of the DataSmart instances... Happy deletion of the cache
2005-05-20bitbake/lib/bb/fetch.py:Holger Hans Peter Freyther
-be less anoying and only print debug messages when d is none
2005-05-20bitbake/lib/bb/fetch.py:Holger Hans Peter Freyther
-Warn when init is called without a data instance, we're not able to reorder them as it would break bitbake <= 1.2.1 and OpenEmbedded bitbake/lib/bb/parse/BBHandler.py: -Do not call fetch.init without a data instance. This changes the AtiCore problem the OE folks are seeing a bit...
2005-05-20bitbake/lib/bb/data.py:Holger Hans Peter Freyther
-Don't be too keen finding a bug in expand when there is None... Fix the testcase to delete {TARGET_MOO} first.
2005-05-20bitbake/lib/bb/data.py:Holger Hans Peter Freyther
-Write an expand test case that actually shows a bug I need to fix
2005-05-20bitbake/lib/bb/data.py:Holger Hans Peter Freyther
-Add two test cases to the expand method. The behaviour was not tested before.
2005-05-20bitbake/lib/bb/data.py:Holger Hans Peter Freyther
-We've killed the default arguments in the methods now the tests were updatet to initialize a data instance to work again.
2005-05-20bitbake/lib/bb/data_dict.py:Holger Hans Peter Freyther
-Fix one bug in the unused data_dict.py. There is still one left... again cookies for the one finding it
2005-05-20bitbake/lib/bb/data_smart.py:Holger Hans Peter Freyther
Return only the mtime from the os.stat syscall bitbake/lib/bb/data_dict.py: Return only the mtime from the os.stat syscall
2005-05-18tbake/lib/bb/fetch.py:Holger Hans Peter Freyther
Stop sf.net from bull?#*... us. We will fail when we wanted to download a file and got something with a different name. This should solve sf.net related problems as we go immediately to the next mirror and it should work for all other packages as well.
2005-05-18bitbake/lib/bb/fetch.pyHolger Hans Peter Freyther
Try to partially apply http://wiki.python.org/moin/PythonSpeed/PerformanceTips?highlight=%28performance%29#dots avoid finding data in bb
2005-05-18Change the bb.__version__ to 1.2.1, and adjust setup.py to actually import ↵Chris Larson
the bb module to obtain the version it uses.
2005-05-17lib/bb/data.py:Holger Hans Peter Freyther
Use the new data_smart dictionary lib/bb/data_smart.py: The old COW Implementation, made persistent and pass the test suite. I commit it because the persistent mode in data_dict.py seems broken and I don't want to leave you with a broken bitbake. Todo: -do a deepcopy on the parent. When we pickle we use sharing anyway and it is pretty obvious we will pickle as we're the persistent implementation.
2005-05-17lib/bb/data.py:Holger Hans Peter Freyther
-Remove default arguments from the data methods. They cast errors. (we need to update the test case though) lib/bb/parse/ConfHandler.py: -Use the right dictionary
2005-05-17lib/bb/data.py:Holger Hans Peter Freyther
-Provide a special 'collection/dict' for the collected bb-files. If we use a persistent storage (CACHE) we will not hold any data instance in memory but load it from disk on demand. This reduces bitbakes memory usage to roughly 40MB. The initial parsing currently takes roughly thirty seconds more. lib/bb/make.py: -Use the new data implementation for pkgdata. -Do not access pkgdata[f] if we've the data already in our hands
2005-05-17lib/bb/data.py:Holger Hans Peter Freyther
· -Add a method to get the modify time of named bb.data instance · -Add a method to create a named bb.data instance. These instances · inherit the global configuration. lib/bb/data_dict.py: · -Add persistents to the data_dict implementation, on the commit method we will now pickle the internal dict lib/bb/make.py: -Use the new persistent/named bb.data methods.
2005-05-17lib/bb/build.py:Holger Hans Peter Freyther
Do not assume we hold a reference to the variable we got with a bb.data.getVar*. Always set changes back to the variable.
2005-05-17lib/bb/fetch.py:Holger Hans Peter Freyther
* Remove default params from the fetcher methods to avoid problems with scoping. The meaning of 'd' is quite overloaded and we try to undo it one by one. This change is a bit more invasive than I had hoped for but it is needed. -- Holger Hans Peter Freyther <freyther@handhelds.org>
2005-05-17createCopy:Holger Hans Peter Freyther
-Move a createCopy method into data.py -Make code creating deepcopies of the data instance use this new createCopy
2005-05-17bitbake data module abstraction:Holger Hans Peter Freyther
-bb.data is now a delegate to hookable Data implementation. -bb.data.init() is the 'factory' method to create a instance of a concrete implementation. -Kill assumptions that bb.data.init() returns a {} (python dict) -Add the old Dictionary Based Implementation as data_dict.py
2005-01-17Unbork our event classes a bit. Added a 'data' property to the Build events ↵Chris Larson
to be more consistent with the other events.
2005-01-17As recommended by pb_ and RP, prepend the task name with 'task_' when ↵Chris Larson
mangling OVERRIDES in bb.data.exec_task().
2005-01-16add current task name to OVERRIDES during executionPhil Blundell
2005-01-02correct transposed protocol/revision parameters to svn checkout;Phil Blundell
patch courtesy Paul Eggleton
2004-12-27emit_var(): if showing all vars, emit even those with invalid names1.0Phil Blundell
2004-12-26Re-raise bb.build.FuncFailed if it's encountered in emit_var. This ensures ↵Chris Larson
that builds of packages that attempt to read the kernel-version file (like kernel modules) fail as they should.
2004-12-09Clean up the BBPATH mangling bits in the parser.Chris Larson
2004-12-09Fix the BBPATH mangling fix..Chris Larson
2004-12-09Add the location of the .bb file to BBPATH in the parser's handle() function ↵Chris Larson
rather than load_oefile, since we need it done for 'include'd files as well as those directly loaded by the 'bitbake' commandline tool.
2004-12-09Adapt bits to the new way of handling the debug level.Chris Larson
2004-12-09Apply patch from seb (proti) to fix OEDEBUG and add a debug commandline ↵Chris Larson
argument.
2004-12-07Initial import.Chris Larson