aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2005-05-23bitbake/TODO:Holger Hans Peter Freyther
-Not much is done yet but at least fake that we've done something
2005-05-23Slight OO refactoring of BitBake command line utility in order toMichael 'Mickey' Lauer
prepare for the BitBake shell which will need to have instance based variables as opposed to module global ones. Sorry, this diff is larger than it should be, but I had to reorder methods and change indenting all over the place. What I basically did is: 1.) Add a class managing the statistics values: BBStatistics 2.) Add a class managing the build process: BBCooker 3.) Refactor all unbound methods into the BBCooker class 4.) Refactor all module global values into the BBCooker class 5.) Adjust function calls and accesses of the module global values accordingly The shell module itself is under construction and will be uploaded asap.
2005-05-22bitbake/bin/bitbake:Holger Hans Peter Freyther
-Drastically increase the amount of needed RAM to the unbelievable amount of 12MB when parsing ~2320 bb files. -Start creating the provider hash and other lists/dictionaries from the progressCallback. A BBStatusProgress struct was added to accumulate the data to be used in the buildPackage, showVersions and similiar methods. This makes it possible to kill the long delay and also building the provider hash completely. Only for building and checking if a package was built (has stamps) it is necessary to get the data instace from make.pkgdata.
2005-05-22bitbake/ChangeLog:Holger Hans Peter Freyther
-Mention changes in bitbake since the 1.2.1 release
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/TODO:Holger Hans Peter Freyther
Add basics tasks I want to see finished
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-18bitbake/bin/bitbake:Holger Hans Peter Freyther
Update the version to 1.2.1 (now a string)
2005-05-18add missing copyright and fix __ignored_dependencies scoping problemMichael 'Mickey' Lauer
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-17bin/bitbake:Holger Hans Peter Freyther
-Access pkgdata[] less. This means unpickling the data less often. This results in a faster initial parsing. We still access each file three times though
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-17add authors fileMichael 'Mickey' Lauer
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-17Add a ChangeLog to lay out the 'API' changes of bitbakeHolger Hans Peter Freyther
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-17Add data_dict.py to the MANIFESTHolger Hans Peter Freyther
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-03-11Adjust the version in setup.py.Chris Larson
2005-01-23Evaluate dependencies in try_build(), even if stamp file is up to date for ↵Phil Blundell
the current package.
2005-01-22bin/bitbake:Chris Larson
* check if a package's task is already complete _before_ calling the functions to try to build it. * don't bother trying to build a package's deps if the package has already been built. * cache the information about the 'perhaps you should define PREFERRED_PROVIDER_blah' messages so that the user only sees one for each provider.
2005-01-17Add -nochunks makefile targets for documentation generation (user's manual).1.1Chris Larson
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-06Test trigger alterations.Chris Larson
2005-01-06Test trigger alterations.Chris Larson
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-26bbread: wrap the call to bb.data.emit_env() in a try: except block.Chris Larson
2004-12-26Remove references to 'BBMAKE' from the debug messages in the bitbake command.Chris Larson
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-24Update the user manual -- add example usage of the bitbake command. add ↵Chris Larson
example usage of bbfile collections.
2004-12-24Add information on the bitbake command to the User Manual.Chris Larson
2004-12-22Handle the parse only cmdline option when using --buildfile.Chris Larson
2004-12-22Apply patch from Richard Purdie to fix the --force support in the bitbake ↵Chris Larson
script.