vuplus_bitbake
18 years agobitbake/
Holger Hans Peter Freyther [Wed, 6 Jul 2005 17:34:56 +0000 (17:34 +0000)]
bitbake/
    Update MANIFEST and setup.py to cope with the removal
    of make.py and bbread and add utils.py to the MANIFEST

18 years agoShell: grab a deepcopy from the initial cooker data to reuse
Michael 'Mickey' Lauer [Wed, 6 Jul 2005 15:42:10 +0000 (15:42 +0000)]
Shell: grab a deepcopy from the initial cooker data to reuse
it in file**** commands. Otherwise we would pollute
cooker.configuration.data (i.e. do_configure_append() appending
multiple times). This fixes BitBake bug #133

18 years agoadd missing self to find_bbfiles() and get_bbfile()
Michael 'Mickey' Lauer [Wed, 6 Jul 2005 12:01:37 +0000 (12:01 +0000)]
add missing self to find_bbfiles() and get_bbfile()

18 years agoremove last trace of make.py
Michael 'Mickey' Lauer [Wed, 6 Jul 2005 08:47:24 +0000 (08:47 +0000)]
remove last trace of make.py

18 years agoThis (large) patch reintegrates the bb.make module into the bitbake executable.
Michael 'Mickey' Lauer [Tue, 5 Jul 2005 14:32:26 +0000 (14:32 +0000)]
This (large) patch reintegrates the bb.make module into the bitbake executable.
Said make module has been factorered out back in the old days when we had two concurrent
oemake implementations which were in need of code sharing. Nowadays, there's no
more use of a seperated make module and in fact the split has always been a bit
artificial.

A brief overview of the changes:
 * create utils.py which contains three unbound functions for comparing versions
 * create a class BBConfiguration that holds variables which were formerly living in make module scope
 * make functions use the BBConfiguration instance that lives in BBCooker instance
 * move functions into the BBCooker class, adapt them to work as class methods
 * integrate the function of the bbread executable into BitBake; use it with option '-e' and (optionally) -b
 * remove make.py
 * remove bbread
 * adapt the shell module which has been using the make module directly

18 years agoFix for #88 - written by proti:
Marcin Juszkiewicz [Thu, 30 Jun 2005 09:44:36 +0000 (09:44 +0000)]
Fix for #88 - written by proti:
The function should be shielded against the posibility that prevdir could be removed by the function.

18 years agoPatch by Yann Dirson to show a more verbose error log
Holger Hans Peter Freyther [Mon, 27 Jun 2005 21:40:28 +0000 (21:40 +0000)]
Patch by Yann Dirson to show a more verbose error log
when not beeing able to parse a file

18 years agobitbake Poke Changes:
Holger Hans Peter Freyther [Tue, 21 Jun 2005 21:25:24 +0000 (21:25 +0000)]
bitbake Poke Changes:
    make.pkgdata is when used with a CACHE just a holder
    of a list of filenames + the path to the cache.
    Now when poking at files the changes will be lost immediately,
    we now offer a mean to mark a data instance as dirty and we
    will not throw it away in this case...
    setDirty is not meant to be public API

18 years ago- fix _findProvider() for 'PN-PV'
Michael 'Mickey' Lauer [Tue, 21 Jun 2005 20:48:19 +0000 (20:48 +0000)]
- fix _findProvider() for 'PN-PV'
- add columnize helper function
- outcomment poke function and add warning

18 years agobitbake/bin/bitbake:
Holger Hans Peter Freyther [Sat, 18 Jun 2005 22:21:12 +0000 (22:21 +0000)]
bitbake/bin/bitbake:
    -Possible fix for #103 make findBestProvider operate
    on a given, limited pkg_pn (the one we created).

18 years agobitbake/lib/bb/build.py:
Holger Hans Peter Freyther [Sat, 18 Jun 2005 14:48:31 +0000 (14:48 +0000)]
bitbake/lib/bb/build.py:
    -Fix the task_cache as reference assumption as described
     in bug report #60

    Patch courtsey keturn

18 years agomake the cache also work when you use softlinks to the packages - patch courtesy...
Michael 'Mickey' Lauer [Fri, 17 Jun 2005 13:24:41 +0000 (13:24 +0000)]
make the cache also work when you use softlinks to the packages - patch courtesy Holger Schurig

18 years ago- add 'alias' command to allow shortcuts for commands
Michael 'Mickey' Lauer [Fri, 17 Jun 2005 10:46:21 +0000 (10:46 +0000)]
- add 'alias' command to allow shortcuts for commands
- bbshell now processes ~/.bbsh_startup, if existing
All commands valid inside the shell are valid in the startup file.
Don't use | in startup files.

18 years ago- add 'peek' command: Example Usage: peek nano SRC_URI
Michael 'Mickey' Lauer [Fri, 17 Jun 2005 09:47:15 +0000 (09:47 +0000)]
- add 'peek' command: Example Usage: peek nano SRC_URI
- add 'poke' command, outcommented because d.setVar seems not to be persistent

18 years agomake edit command more consistent:
Michael 'Mickey' Lauer [Fri, 17 Jun 2005 09:01:59 +0000 (09:01 +0000)]
make edit command more consistent:
- 'edit' now accepts a providee
- 'fileedit' now calls $EDITOR on a bbfile

18 years ago- fix pasteLog and pasteBin failure codepaths. Thanks to keturn for spotting.
Michael 'Mickey' Lauer [Thu, 16 Jun 2005 21:29:53 +0000 (21:29 +0000)]
- fix pasteLog and pasteBin failure codepaths. Thanks to keturn for spotting.

18 years ago- add 'showdata' command
Michael 'Mickey' Lauer [Thu, 16 Jun 2005 18:50:13 +0000 (18:50 +0000)]
- add 'showdata' command
- fix readline in python expert mode
- add some more IDEAS

18 years ago- add 'getvar' to print out a variable from the outer environment
Michael 'Mickey' Lauer [Thu, 16 Jun 2005 16:43:08 +0000 (16:43 +0000)]
- add 'getvar' to print out a variable from the outer environment
- 'print' now serves a different purpose, it lists either all bbfiles or all providers
- add '|' to allow the output of commands be piped into grep, sort, and friends: Hint try:
  parse; print files | grep opie
- internal: add debugOut()

18 years agoBitBake (minor update):
Holger Hans Peter Freyther [Wed, 15 Jun 2005 14:05:22 +0000 (14:05 +0000)]
BitBake (minor update):
     -Remove data_dict.py as it was not needed for sooo long
     -Remove TODOs related to data_dict.py
     -Remove data_dict from the MANIFEST

18 years agoKeep all temporary files in proper place not in TMPDIR (patch by Holger Schurig)
Marcin Juszkiewicz [Wed, 15 Jun 2005 09:15:50 +0000 (09:15 +0000)]
Keep all temporary files in proper place not in TMPDIR (patch by Holger Schurig)

18 years agobitbake/lib/bb/__init__.py
Holger Hans Peter Freyther [Tue, 14 Jun 2005 22:06:39 +0000 (22:06 +0000)]
bitbake/lib/bb/__init__.py
    -Fix testcase by silenting the ververify error message

19 years ago- add 'fetch', 'unpack', 'patch', 'configure', 'compile', 'stage'
Michael 'Mickey' Lauer [Tue, 14 Jun 2005 09:19:20 +0000 (09:19 +0000)]
- add 'fetch', 'unpack', 'patch', 'configure', 'compile', 'stage'
  which reflect the execution of the respective tasks on providees
- add 'force' to toggle make.options.force
- switch to a more sane context sensitive completion method inspecting the 'usage' attribute

19 years agoBitBake:
Holger Hans Peter Freyther [Mon, 13 Jun 2005 21:25:31 +0000 (21:25 +0000)]
BitBake:
    -Remove old code (python version >= 2.3 check)
    -Remove commented code (as we've a scm)
    -Fix most of the testcases (only one is failing)
      -by importing string
      -by removing new lines
      -by changing '"' to "'"
      -by reodering some elements

19 years agocollect_bbfiles:
Michael 'Mickey' Lauer [Sat, 11 Jun 2005 14:46:09 +0000 (14:46 +0000)]
collect_bbfiles:
- save progress callback in function attribute
- remain completely silent when no progress callback is requested

19 years agoOO overhaul:
Michael 'Mickey' Lauer [Fri, 10 Jun 2005 20:59:09 +0000 (20:59 +0000)]
OO overhaul:
 - Introduce classes for commands and the command processor
 - Autoregister available commands
 - Fix 'shell' command to work with unlimited number of parameters
 - Remove 'exec' command

19 years ago- capture bb.parse exception in 'filebuild'
Michael 'Mickey' Lauer [Fri, 10 Jun 2005 09:20:28 +0000 (09:20 +0000)]
- capture bb.parse exception in 'filebuild'
- restore sys.stdout during raw_input, this repairs
tab completion which I broke two revisions ago

19 years agoadd 'shell <command>' which hands a command over to the shell and dumps the output
Michael 'Mickey' Lauer [Thu, 9 Jun 2005 18:03:25 +0000 (18:03 +0000)]
add 'shell <command>' which hands a command over to the shell and dumps the output
NOTE: Due to a limitation in the bbshell command processor, 'shell' and 'exec' are
currently broken when using more than one parameter. This will be sorted out asap.

19 years agoUse socket.gethostname() instead of os.environ["HOST"]. That should work on all systems.
Michael 'Mickey' Lauer [Thu, 9 Jun 2005 13:25:28 +0000 (13:25 +0000)]
Use socket.gethostname() instead of os.environ["HOST"]. That should work on all systems.

19 years agoGreatly improve pastebin functionality:
Michael 'Mickey' Lauer [Thu, 9 Jun 2005 13:11:42 +0000 (13:11 +0000)]
Greatly improve pastebin functionality:
The BitBake shell now features a generic output buffer for the last 10 commands.
You can dump an overview about the buffered commands with 'buffers' and dump
the contents of a buffer with 'buffer <n>'. Likewise, 'pastebin <n>' uploads
the contents of the said buffer. NOTE: 'lasterror' is still available, but has been
renamed to 'lastlog'. The old pastebin command is still available with 'pastelog'.

19 years agoremove sys.exc_info() hack and instead use the magic .args variable of the exception...
Michael 'Mickey' Lauer [Wed, 8 Jun 2005 17:30:37 +0000 (17:30 +0000)]
remove sys.exc_info() hack and instead use the magic .args variable of the exception instance variable

19 years agoadd pastebin command to upload the latest error log (if there is one)
Michael 'Mickey' Lauer [Wed, 8 Jun 2005 17:29:51 +0000 (17:29 +0000)]
add pastebin command to upload the latest error log (if there is one)

19 years ago- set magic args attribute for event exception
Michael 'Mickey' Lauer [Wed, 8 Jun 2005 17:29:07 +0000 (17:29 +0000)]
- set magic args attribute for event exception
- remove event property
- submit descriptive error messages when raising event exceptions

19 years agobuild in a try/except block and intercept faulty builds
Michael 'Mickey' Lauer [Tue, 7 Jun 2005 13:33:36 +0000 (13:33 +0000)]
build in a try/except block and intercept faulty builds

19 years agobitbake/bin/bitdoc:
Holger Hans Peter Freyther [Mon, 6 Jun 2005 23:04:19 +0000 (23:04 +0000)]
bitbake/bin/bitdoc:
     -Small utility to generate a Hyper Linked online version
     out of documentation.conf.
     An example can be found here:http://handhelds.org/~zecke/oe_html/

     TODO:
      -Beautify the HTML output (shameless rip off from gtkdoc)
      -Sort the keys
      -Fix and extend OpenEmbedded's documentation.conf to follow the
       simple ruleset
     KEY[doc] = "This is the description. It can go on \
     @see MOO_RELATED, FOO_DOO, GRUFT, BLUR, TOCOTRONIC @group rock, POP \
     NewWave"

     It will extract the description, related keys (everything after @see
     separated by ',') and the groups this key is in. This simple rules
     should and could bring us forward.

19 years agocatch build exceptions also when building just one file
Michael 'Mickey' Lauer [Fri, 3 Jun 2005 12:05:26 +0000 (12:05 +0000)]
catch build exceptions also when building just one file

19 years agobitbake/bin/bitbake:
Holger Hans Peter Freyther [Thu, 2 Jun 2005 20:22:55 +0000 (20:22 +0000)]
bitbake/bin/bitbake:
   Rework handling of pkg_pn. I still wonder if we should
   set pkg_pn[pn] at all in this method.

   Patch courtsey proti

19 years agouse cooker.findBestProvider() for the 'which' command
Michael 'Mickey' Lauer [Wed, 1 Jun 2005 14:08:52 +0000 (14:08 +0000)]
use cooker.findBestProvider() for the 'which' command

19 years agobitbake/bin/bitbake:
Holger Hans Peter Freyther [Tue, 31 May 2005 22:57:05 +0000 (22:57 +0000)]
bitbake/bin/bitbake:
Create a common method to get the preferred version
given a package name.
This patch was done by proti (seb BEI frankengul.org)
and made work by myself. The list in list logic does not
seem 'obvious' and I need to consider how to kill it.
(when I understand what the file_set should represent)

19 years agocalculate absolute path when parsing a bitbake file. this fixes -b with
Michael 'Mickey' Lauer [Mon, 30 May 2005 22:10:10 +0000 (22:10 +0000)]
calculate absolute path when parsing a bitbake file. this fixes -b with
relative paths

19 years agofix stupid typo. this repairs bitbake -f
Michael 'Mickey' Lauer [Mon, 30 May 2005 21:45:30 +0000 (21:45 +0000)]
fix stupid typo. this repairs bitbake -f

19 years agoadd ; as command seperator
Michael 'Mickey' Lauer [Mon, 30 May 2005 19:30:22 +0000 (19:30 +0000)]
add ; as command seperator
unify error messages
add new <directory> <bbfile> command

19 years agoadd some more things to TODO
Michael 'Mickey' Lauer [Mon, 30 May 2005 15:04:16 +0000 (15:04 +0000)]
add some more things to TODO

19 years ago- fix bug in file*** commands (need to clean the _task_cache per
Michael 'Mickey' Lauer [Mon, 30 May 2005 14:57:28 +0000 (14:57 +0000)]
- fix bug in file*** commands (need to clean the _task_cache per
  package)
- add fileRebuild (clean and rebuild a .bbfile)

19 years agoremove accidantly commited debug line
Michael 'Mickey' Lauer [Mon, 30 May 2005 11:39:42 +0000 (11:39 +0000)]
remove accidantly commited debug line

19 years agomajor update:
Michael 'Mickey' Lauer [Sun, 29 May 2005 21:33:46 +0000 (21:33 +0000)]
major update:
- improve registerCommand
- build, clean, and rebuild no longer work on providees or bbfiles, but just on providees
- filebuild, fileclean and filerebuild work on bbfiles
- add which 'providee'

19 years agomisc. refactoring bits for bin/bitbake:
Michael 'Mickey' Lauer [Sun, 29 May 2005 21:29:31 +0000 (21:29 +0000)]
misc. refactoring bits for bin/bitbake:
 - remove executeOneBB
 - add tryBuildPackage
 - add more docstrings
 - less abbrevations
 - s/buildPackage/buildProvider/

19 years agobitbake/lib/bb/*: 1.3.0
Holger Hans Peter Freyther [Sat, 28 May 2005 20:24:00 +0000 (20:24 +0000)]
bitbake/lib/bb/*:
include 'time' into the scope. For bitbake 1.3.1 we need
to define which modules will be visible when executing
embedded python methods

19 years agobitbake/bin/bitbake:
Holger Hans Peter Freyther [Sat, 28 May 2005 19:08:00 +0000 (19:08 +0000)]
bitbake/bin/bitbake:
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...

19 years ago- add command specific tab completion
Michael 'Mickey' Lauer [Fri, 27 May 2005 16:00:52 +0000 (16:00 +0000)]
- add command specific tab completion
- add expert mode - an embedded python interpreter
- add exec command

19 years agobitbake:
Holger Hans Peter Freyther [Thu, 26 May 2005 19:00:30 +0000 (19:00 +0000)]
bitbake:
-Prepare the 1.3.0 release of bitbake

19 years agosome fixes
Michael 'Mickey' Lauer [Thu, 26 May 2005 14:59:58 +0000 (14:59 +0000)]
some fixes

19 years agocatch parse error in parseConfigurationFile()
Michael 'Mickey' Lauer [Thu, 26 May 2005 14:57:24 +0000 (14:57 +0000)]
catch parse error in parseConfigurationFile()

19 years agoadd bbfile completion
Michael 'Mickey' Lauer [Thu, 26 May 2005 13:26:12 +0000 (13:26 +0000)]
add bbfile completion

19 years ago- remove checking for return if parse-only is set when executing just one BB
Michael 'Mickey' Lauer [Thu, 26 May 2005 13:25:30 +0000 (13:25 +0000)]
- remove checking for return if parse-only is set when executing just one BB
- don't sys.exit() for parse-only, but return. This makes dropping into the Python interactive mode possible.

19 years agohave bb.parse.handle() throw ParseError if the input file is not
Phil Blundell [Thu, 26 May 2005 12:30:02 +0000 (12:30 +0000)]
have bb.parse.handle() throw ParseError if the input file is not
understood by any handler, rather than quietly returning None

19 years ago- add more commands: edit, clean, rebuild.
Michael 'Mickey' Lauer [Thu, 26 May 2005 11:36:20 +0000 (11:36 +0000)]
- add more commands: edit, clean, rebuild.
- 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.

19 years agocall update_data right after parsing the conf files
Michael 'Mickey' Lauer [Wed, 25 May 2005 22:02:46 +0000 (22:02 +0000)]
call update_data right after parsing the conf files

19 years agoPython 2.3.x compatibility fix
Michael 'Mickey' Lauer [Wed, 25 May 2005 21:55:06 +0000 (21:55 +0000)]
Python 2.3.x compatibility fix

19 years agoadd first (preview) version of the bitbake interactive mode
Michael 'Mickey' Lauer [Wed, 25 May 2005 21:02:38 +0000 (21:02 +0000)]
add first (preview) version of the bitbake interactive mode

19 years agobitbake: factor out methods parseConfigurationFile() and handleCollections()
Michael 'Mickey' Lauer [Wed, 25 May 2005 21:02:11 +0000 (21:02 +0000)]
bitbake: factor out methods parseConfigurationFile() and handleCollections()

19 years agotolerate ${...} in function names
Phil Blundell [Wed, 25 May 2005 10:14:30 +0000 (10:14 +0000)]
tolerate ${...} in function names

19 years agoMickey's style and performance tunings, volume I:
Michael 'Mickey' Lauer [Tue, 24 May 2005 12:03:15 +0000 (12:03 +0000)]
Mickey's style and performance tunings, volume I:
 * substitute 'if dictionary.has_key( key )' with 'if key in dictionary'
It's faster, more understandable and looks much better

19 years agoupdate data to make _append's etc. appear. patch courtesy BB-Meister
Michael 'Mickey' Lauer [Mon, 23 May 2005 21:39:25 +0000 (21:39 +0000)]
update data to make _append's etc. appear. patch courtesy BB-Meister
Zecke

19 years agobitbake/MANIFEST:
Holger Hans Peter Freyther [Mon, 23 May 2005 18:41:38 +0000 (18:41 +0000)]
bitbake/MANIFEST:
-Include data_smart.py in the MANIFEST

19 years agobitbake/lib/bb module:
Holger Hans Peter Freyther [Mon, 23 May 2005 18:40:42 +0000 (18:40 +0000)]
bitbake/lib/bb module:
Bump the version number to be different from the
last version

19 years agobitbake/TODO:
Holger Hans Peter Freyther [Mon, 23 May 2005 18:39:43 +0000 (18:39 +0000)]
bitbake/TODO:
-Not much is done yet but at least fake that we've done
something

19 years agoSlight OO refactoring of BitBake command line utility in order to
Michael 'Mickey' Lauer [Mon, 23 May 2005 16:53:40 +0000 (16:53 +0000)]
Slight OO refactoring of BitBake command line utility in order to
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.

19 years agobitbake/bin/bitbake:
Holger Hans Peter Freyther [Sun, 22 May 2005 22:41:43 +0000 (22:41 +0000)]
bitbake/bin/bitbake:
-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.

19 years agobitbake/ChangeLog:
Holger Hans Peter Freyther [Sun, 22 May 2005 22:35:19 +0000 (22:35 +0000)]
bitbake/ChangeLog:
-Mention changes in bitbake since the 1.2.1 release

19 years agobitbake/lib/bb/make.py:
Holger Hans Peter Freyther [Sun, 22 May 2005 19:44:39 +0000 (19:44 +0000)]
bitbake/lib/bb/make.py:
        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

19 years agobitbake/lib/bb/data_smart.py:
Holger Hans Peter Freyther [Sat, 21 May 2005 13:53:38 +0000 (13:53 +0000)]
bitbake/lib/bb/data_smart.py:
        -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

19 years agobitbake/lib/bb/fetch.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 21:51:03 +0000 (21:51 +0000)]
bitbake/lib/bb/fetch.py:
-be less anoying and only print debug messages when
d is none

19 years agobitbake/lib/bb/fetch.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 19:39:59 +0000 (19:39 +0000)]
bitbake/lib/bb/fetch.py:
-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...

19 years agobitbake/lib/bb/data.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 19:37:06 +0000 (19:37 +0000)]
bitbake/lib/bb/data.py:
-Don't be too keen finding a bug in expand when there is None...
 Fix the testcase to delete {TARGET_MOO} first.

19 years agobitbake/lib/bb/data.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 19:11:10 +0000 (19:11 +0000)]
bitbake/lib/bb/data.py:
-Write an expand test case that actually shows a bug I need to fix

19 years agobitbake/lib/bb/data.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 18:55:41 +0000 (18:55 +0000)]
bitbake/lib/bb/data.py:
       -Add two test cases to the expand method. The behaviour
        was not tested before.

19 years agobitbake/lib/bb/data.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 18:38:01 +0000 (18:38 +0000)]
bitbake/lib/bb/data.py:
        -We've killed the default arguments in the methods
         now the tests were updatet to initialize a data
         instance to work again.

19 years agobitbake/lib/bb/data_dict.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 18:11:10 +0000 (18:11 +0000)]
bitbake/lib/bb/data_dict.py:
-Fix one bug in the unused data_dict.py. There is still one
         left... again cookies for the one finding it

19 years agobitbake/TODO:
Holger Hans Peter Freyther [Fri, 20 May 2005 17:42:34 +0000 (17:42 +0000)]
bitbake/TODO:
Add basics tasks I want to see finished

19 years agobitbake/lib/bb/data_smart.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 11:43:37 +0000 (11:43 +0000)]
bitbake/lib/bb/data_smart.py:
        Return only the mtime from the os.stat syscall

bitbake/lib/bb/data_dict.py:
        Return only the mtime from the os.stat syscall

19 years agotbake/lib/bb/fetch.py:
Holger Hans Peter Freyther [Wed, 18 May 2005 22:37:01 +0000 (22:37 +0000)]
tbake/lib/bb/fetch.py:
        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.

19 years agobitbake/lib/bb/fetch.py
Holger Hans Peter Freyther [Wed, 18 May 2005 22:09:05 +0000 (22:09 +0000)]
bitbake/lib/bb/fetch.py
Try to partially apply
http://wiki.python.org/moin/PythonSpeed/PerformanceTips?highlight=%28performance%29#dots avoid
finding data in bb

19 years agoChange the bb.__version__ to 1.2.1, and adjust setup.py to actually import the bb...
Chris Larson [Wed, 18 May 2005 18:39:23 +0000 (18:39 +0000)]
Change the bb.__version__ to 1.2.1, and adjust setup.py to actually import the bb module to obtain the version it uses.

19 years agobitbake/bin/bitbake:
Holger Hans Peter Freyther [Wed, 18 May 2005 18:37:44 +0000 (18:37 +0000)]
bitbake/bin/bitbake:
Update the version to 1.2.1 (now a string)

19 years agoadd missing copyright and fix __ignored_dependencies scoping problem
Michael 'Mickey' Lauer [Wed, 18 May 2005 13:44:02 +0000 (13:44 +0000)]
add missing copyright and fix __ignored_dependencies scoping problem

19 years agolib/bb/data.py:
Holger Hans Peter Freyther [Tue, 17 May 2005 22:55:10 +0000 (22:55 +0000)]
lib/bb/data.py:
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.

19 years agolib/bb/data.py:
Holger Hans Peter Freyther [Tue, 17 May 2005 22:47:14 +0000 (22:47 +0000)]
lib/bb/data.py:
-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

19 years agobin/bitbake:
Holger Hans Peter Freyther [Tue, 17 May 2005 22:30:59 +0000 (22:30 +0000)]
bin/bitbake:
-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

19 years agolib/bb/data.py:
Holger Hans Peter Freyther [Tue, 17 May 2005 22:25:07 +0000 (22:25 +0000)]
lib/bb/data.py:
-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

19 years agoadd authors file
Michael 'Mickey' Lauer [Tue, 17 May 2005 22:22:38 +0000 (22:22 +0000)]
add authors file

19 years agolib/bb/data.py:
Holger Hans Peter Freyther [Tue, 17 May 2005 22:20:02 +0000 (22:20 +0000)]
lib/bb/data.py:
·       -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.

19 years agolib/bb/build.py:
Holger Hans Peter Freyther [Tue, 17 May 2005 22:16:16 +0000 (22:16 +0000)]
lib/bb/build.py:
Do not assume we hold a reference to the variable
we got with a bb.data.getVar*. Always set changes
back to the variable.

19 years agoAdd a ChangeLog to lay out the 'API' changes of bitbake
Holger Hans Peter Freyther [Tue, 17 May 2005 22:02:04 +0000 (22:02 +0000)]
Add a ChangeLog to lay out the 'API' changes of bitbake

19 years agolib/bb/fetch.py:
Holger Hans Peter Freyther [Tue, 17 May 2005 19:20:55 +0000 (19:20 +0000)]
lib/bb/fetch.py:
  * 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>

19 years agoAdd data_dict.py to the MANIFEST
Holger Hans Peter Freyther [Tue, 17 May 2005 18:16:03 +0000 (18:16 +0000)]
Add data_dict.py to the MANIFEST

19 years agocreateCopy:
Holger Hans Peter Freyther [Tue, 17 May 2005 18:15:25 +0000 (18:15 +0000)]
createCopy:
-Move a createCopy method into data.py
-Make code creating deepcopies of the data instance
use this new createCopy

19 years agobitbake data module abstraction:
Holger Hans Peter Freyther [Tue, 17 May 2005 18:04:46 +0000 (18:04 +0000)]
bitbake data module abstraction:
-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

19 years agoAdjust the version in setup.py.
Chris Larson [Fri, 11 Mar 2005 04:44:44 +0000 (04:44 +0000)]
Adjust the version in setup.py.

19 years agoEvaluate dependencies in try_build(), even if stamp file is up to date for the curren...
Phil Blundell [Sun, 23 Jan 2005 18:42:20 +0000 (18:42 +0000)]
Evaluate dependencies in try_build(), even if stamp file is up to date for the current package.

19 years agobin/bitbake:
Chris Larson [Sat, 22 Jan 2005 05:50:23 +0000 (05:50 +0000)]
bin/bitbake:
    * 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.