summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2005-05-28bitbake/lib/bb/*:1.3.0Holger Hans Peter Freyther
include 'time' into the scope. For bitbake 1.3.1 we need to define which modules will be visible when executing embedded python methods
2005-05-28bitbake/bin/bitbake:Holger Hans Peter Freyther
update_data() of make.cfg after we've parsed the each and every bitbake file. Call me paranoid but this way we make sure that changes made in the bb files are actually taken...
2005-05-27- add command specific tab completionMichael 'Mickey' Lauer
- add expert mode - an embedded python interpreter - add exec command
2005-05-26bitbake:Holger Hans Peter Freyther
-Prepare the 1.3.0 release of bitbake
2005-05-26some fixesMichael 'Mickey' Lauer
2005-05-26catch parse error in parseConfigurationFile()Michael 'Mickey' Lauer
2005-05-26add bbfile completionMichael 'Mickey' Lauer
2005-05-26- remove checking for return if parse-only is set when executing just one BBMichael 'Mickey' Lauer
- don't sys.exit() for parse-only, but return. This makes dropping into the Python interactive mode possible.
2005-05-26have bb.parse.handle() throw ParseError if the input file is not Phil Blundell
understood by any handler, rather than quietly returning None
2005-05-26- add more commands: edit, clean, rebuild.Michael 'Mickey' Lauer
- load command history on startup - save command history on exit Bug: A bug can be seen when you call rebuild on a package more than once - somehow the make module no longer calls the tasks then.
2005-05-25call update_data right after parsing the conf filesMichael 'Mickey' Lauer
2005-05-25Python 2.3.x compatibility fixMichael 'Mickey' Lauer
2005-05-25add first (preview) version of the bitbake interactive modeMichael 'Mickey' Lauer
2005-05-25bitbake: factor out methods parseConfigurationFile() and handleCollections()Michael 'Mickey' Lauer
2005-05-25tolerate ${...} in function namesPhil Blundell
2005-05-24Mickey's style and performance tunings, volume I:Michael 'Mickey' Lauer
* substitute 'if dictionary.has_key( key )' with 'if key in dictionary' It's faster, more understandable and looks much better
2005-05-23update data to make _append's etc. appear. patch courtesy BB-MeisterMichael 'Mickey' Lauer
Zecke
2005-05-23bitbake/MANIFEST:Holger Hans Peter Freyther
-Include data_smart.py in the MANIFEST
2005-05-23bitbake/lib/bb module:Holger Hans Peter Freyther
Bump the version number to be different from the last version
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