utils.py: Add md5 and sha256 checksum generation functions from Ross Burton (via...
[vuplus_bitbake] / ChangeLog
1 Changes in BitBake 1.8.x:
2         - Fix -f (force) in conjunction with -b
3         - Fix exit code for build failures in --continue mode
4         - Fix git branch tags fetching
5         - Change parseConfigurationFile so it works on real data, not a copy
6         - Handle 'base' inherit and all other INHERITs from parseConfigurationFile 
7           instead of BBHandler
8         - Fix getVarFlags bug in data_smart
9         - Optmise cache handling by more quickly detecting an invalid cache, only 
10           saving the cache when its changed, moving the cache validity check into
11           the parsing loop and factoring some getVar calls outside a for loop
12         - Cooker: Remove a debug message from the parsing loop to lower overhead
13         - Convert build.py exec_task to use getVarFlags
14         - Update shell to use cooker.buildFile
15         - Add StampUpdate event
16         - Convert -b option to use taskdata/runqueue
17         - Remove digraph and switch to new stamp checking code. exec_task no longer
18           honours dependencies
19         - Make fetcher timestamp updating non-fatal when permissions don't allow 
20           updates
21         - Add BB_SCHEDULER variable/option ("completion" or "speed") controlling
22           the way bitbake schedules tasks
23         - Add BB_STAMP_POLICY variable/option ("perfile" or "full") controlling
24           how extensively stamps are looked at for validity
25         - When handling build target failures make sure idepends are checked and
26           failed where needed. Fixes --continue mode crashes.
27         - Fix problems with recrdeptask handling where some idepends weren't handled
28           correctly.
29         - Work around refs/HEAD issues with git over http (#3410)
30         - Add proxy support to the CVS fetcher (from Cyril Chemparathy)
31         - Improve runfetchcmd so errors are seen and various GIT variables are exported
32         - Add ability to fetchers to check URL validity without downloading
33         - Improve runtime PREFERRED_PROVIDERS warning message
34         - Add BB_STAMP_WHITELIST option which contains a list of stamps to ignore when
35           checking stamp dependencies and using a BB_STAMP_POLICY of "whitelist"
36         - No longer weight providers on the basis of a package being "already staged". This
37           leads to builds being non-deterministic.
38         - Flush stdout/stderr before forking to fix duplicate console output
39         - Make sure recrdeps tasks include all inter-task dependencies of a given fn
40         - Add bb.runqueue.check_stamp_fn() for use by packaged-staging
41         - Add PERSISTENT_DIR to store the PersistData in a persistent
42           directory != the cache dir.
43         - Add md5 and sha256 checksum generation functions to utils.py
44
45 Changes in BitBake 1.8.10:
46         - Psyco is available only for x86 - do not use it on other architectures.
47         - Fix a bug in bb.decodeurl where http://some.where.com/somefile.tgz decoded to host="" (#1530)
48         - Warn about malformed PREFERRED_PROVIDERS (#1072)
49         - Add support for BB_NICE_LEVEL option (#1627)
50         - Sort initial providers list by default preference (#1145, #2024)
51         - Improve provider sorting so prefered versions have preference over latest versions (#768)
52         - Detect builds of tasks with overlapping providers and warn (will become a fatal error) (#1359)
53         - Add MULTI_PROVIDER_WHITELIST variable to allow known safe multiple providers to be listed
54         - Handle paths in svn fetcher module parameter
55         - Support the syntax "export VARIABLE"
56         - Add bzr fetcher
57         - Add support for cleaning directories before a task in the form:
58           do_taskname[cleandirs] = "dir"
59         - bzr fetcher tweaks from Robert Schuster (#2913)
60         - Add mercurial (hg) fetcher from Robert Schuster (#2913)
61         - Fix bogus preferred_version return values
62         - Fix 'depends' flag splitting
63         - Fix unexport handling (#3135)
64         - Add bb.copyfile function similar to bb.movefile (and improve movefile error reporting)
65         - Allow multiple options for deptask flag
66         - Use git-fetch instead of git-pull removing any need for merges when 
67           fetching (we don't care about the index). Fixes fetch errors.
68         - Add BB_GENERATE_MIRROR_TARBALLS option, set to 0 to make git fetches 
69           faster at the expense of not creating mirror tarballs.
70         - SRCREV handling updates, improvements and fixes from Poky
71         - Add bb.utils.lockfile() and bb.utils.unlockfile() from Poky
72         - Add support for task selfstamp and lockfiles flags
73         - Disable task number acceleration since it can allow the tasks to run 
74           out of sequence
75         - Improve runqueue code comments
76         - Add task scheduler abstraction and some example schedulers
77         - Improve circular dependency chain debugging code and user feedback
78         - Don't give a stacktrace for invalid tasks, have a user friendly message (#3431)
79         - Add support for "-e target" (#3432)
80         - Fix shell showdata command (#3259)
81         - Fix shell data updating problems (#1880)
82         - Properly raise errors for invalid source URI protocols
83         - Change the wget fetcher failure handling to avoid lockfile problems
84         - Add git branch support
85         - Add support for branches in git fetcher (Otavio Salvador, Michael Lauer)
86         - Make taskdata and runqueue errors more user friendly
87         - Add norecurse and fullpath options to cvs fetcher
88
89 Changes in Bitbake 1.8.8:
90         - Rewrite svn fetcher to make adding extra operations easier 
91           as part of future SRCDATE="now" fixes
92           (requires new FETCHCMD_svn definition in bitbake.conf)
93         - Change SVNDIR layout to be more unique (fixes #2644 and #2624)
94         - Import persistent data store from trunk
95         - Sync fetcher code with that in trunk, adding SRCREV support for svn
96         - Add ConfigParsed Event after configuration parsing is complete
97         - data.emit_var() - only call getVar if we need the variable
98         - Stop generating the A variable (seems to be legacy code)
99         - Make sure intertask depends get processed correcting in recursive depends
100         - Add pn-PN to overrides when evaluating PREFERRED_VERSION
101         - Improve the progress indicator by skipping tasks that have 
102           already run before starting the build rather than during it
103         - Add profiling option (-P)
104         - Add BB_SRCREV_POLICY variable (clear or cache) to control SRCREV cache
105         - Add SRCREV_FORMAT support
106         - Fix local fetcher's localpath return values
107         - Apply OVERRIDES before performing immediate expansions
108         - Allow the -b -e option combination to take regular expressions
109         - Add plain message function to bb.msg
110         - Sort the list of providers before processing so dependency problems are 
111           reproducible rather than effectively random
112         - Add locking for fetchers so only one tries to fetch a given file at a given time
113         - Fix int(0)/None confusion in runqueue.py which causes random gaps in dependency chains
114         - Fix handling of variables with expansion in the name using _append/_prepend
115           e.g. RRECOMMENDS_${PN}_append_xyz = "abc"
116         - Expand data in addtasks
117         - Print the list of missing DEPENDS,RDEPENDS for the "No buildable providers available for required...."
118           error message.
119         - Rework add_task to be more efficient (6% speedup, 7% number of function calls reduction)
120         - Sort digraph output to make builds more reproducible
121         - Split expandKeys into two for loops to benefit from the expand_cache (12% speedup)
122         - runqueue.py: Fix idepends handling to avoid dependency errors
123         - Clear the terminal TOSTOP flag if set (and warn the user)
124         - Fix regression from r653 and make SRCDATE/CVSDATE work for packages again
125
126 Changes in Bitbake 1.8.6:
127         - Correctly redirect stdin when forking
128         - If parsing errors are found, exit, too many users miss the errors
129         - Remove supriours PREFERRED_PROVIDER warnings
130
131 Changes in Bitbake 1.8.4:
132         - Make sure __inherit_cache is updated before calling include() (from Michael Krelin)
133         - Fix bug when target was in ASSUME_PROVIDED (#2236)
134         - Raise ParseError for filenames with multiple underscores instead of infinitely looping (#2062)
135         - Fix invalid regexp in BBMASK error handling (missing import) (#1124)
136         - Don't run build sanity checks on incomplete builds
137         - Promote certain warnings from debug to note 2 level
138         - Update manual
139
140 Changes in Bitbake 1.8.2:
141         - Catch truncated cache file errors
142         - Add PE (Package Epoch) support from Philipp Zabel (pH5)
143         - Add code to handle inter-task dependencies
144         - Allow operations other than assignment on flag variables
145         - Fix cache errors when generation dotGraphs
146
147 Changes in Bitbake 1.8.0:
148         - Release 1.7.x as a stable series
149
150 Changes in BitBake 1.7.x:
151         - Major updates of the dependency handling and execution
152           of tasks. Code from bin/bitbake replaced with runqueue.py
153           and taskdata.py
154         - New task execution code supports multithreading with a simplistic
155           threading algorithm controlled by BB_NUMBER_THREADS
156         - Change of the SVN Fetcher to keep the checkout around
157           courtsey of Paul Sokolovsky (#1367)
158         - PATH fix to bbimage (#1108)
159         - Allow debug domains to be specified on the commandline (-l)
160         - Allow 'interactive' tasks
161         - Logging message improvements
162         - Drop now uneeded BUILD_ALL_DEPS variable
163         - Add support for wildcards to -b option
164         - Major overhaul of the fetchers making a large amount of code common
165           including mirroring code
166         - Fetchers now touch md5 stamps upon access (to show activity)
167         - Fix -f force option when used without -b (long standing bug)
168         - Add expand_cache to data_cache.py, caching expanded data (speedup)
169         - Allow version field in DEPENDS (ignored for now)
170         - Add abort flag support to the shell
171         - Make inherit fail if the class doesn't exist (#1478)
172         - Fix data.emit_env() to expand keynames as well as values
173         - Add ssh fetcher
174         - Add perforce fetcher
175         - Make PREFERRED_PROVIDER_foobar defaults to foobar if available
176         - Share the parser's mtime_cache, reducing the number of stat syscalls
177         - Compile all anonfuncs at once! 
178           *** Anonfuncs must now use common spacing format ***
179         - Memorise the list of handlers in __BBHANDLERS and tasks in __BBTASKS
180           This removes 2 million function calls resulting in a 5-10% speedup
181         - Add manpage
182         - Update generateDotGraph to use taskData/runQueue improving accuracy
183           and also adding a task dependency graph
184         - Fix/standardise on GPLv2 licence
185         - Move most functionality from bin/bitbake to cooker.py and split into
186           separate funcitons
187         - CVS fetcher: Added support for non-default port
188         - Add BBINCLUDELOGS_LINES, the number of lines to read from any logfile
189         - Drop shebangs from lib/bb scripts
190
191 Changes in Bitbake 1.6.0:
192         - Better msg handling
193         - COW dict implementation from Tim Ansell (mithro) leading
194           to better performance
195         - Speed up of -s
196
197 Changes in Bitbake 1.4.4:
198         - SRCDATE now handling courtsey Justin Patrin
199         - #1017 fix to work with rm_work
200
201 Changes in BitBake 1.4.2:
202         - Send logs to oe.pastebin.com instead of pastebin.com
203           fixes #856
204         - Copy the internal bitbake data before building the
205           dependency graph. This fixes nano not having a
206           virtual/libc dependency
207         - Allow multiple TARBALL_STASH entries
208         - Cache, check if the directory exists before changing
209           into it
210         - git speedup cloning by not doing a checkout
211         - allow to have spaces in filenames (.conf, .bb, .bbclass)
212
213 Changes in BitBake 1.4.0:
214         - Fix to check both RDEPENDS and RDEPENDS_${PN}
215         - Fix a RDEPENDS parsing bug in utils:explode_deps()
216         - Update git fetcher behaviour to match git changes
217         - ASSUME_PROVIDED allowed to include runtime packages
218         - git fetcher cleanup and efficency improvements
219         - Change the format of the cache
220         - Update usermanual to document the Fetchers
221         - Major changes to caching with a new strategy
222           giving a major performance increase when reparsing
223           with few data changes
224
225 Changes in BitBake 1.3.3:
226         - Create a new Fetcher module to ease the
227           development of new Fetchers.
228           Issue #438 fixed by rpurdie@openedhand.com
229         - Make the Subversion fetcher honor the SRC Date
230           (CVSDATE).
231           Issue #555 fixed by chris@openedhand.com
232         - Expand PREFERRED_PROVIDER properly
233           Issue #436 fixed by rprudie@openedhand.com
234         - Typo fix for Issue #531 by Philipp Zabel for the
235           BitBake Shell
236         - Introduce a new special variable SRCDATE as
237           a generic naming to replace CVSDATE.
238         - Introduce a new keyword 'required'. In contrast
239           to 'include' parsing will fail if a to be included
240           file can not be found.
241         - Remove hardcoding of the STAMP directory. Patch
242           courtsey pHilipp Zabel
243         - Track the RDEPENDS of each package (rpurdie@openedhand.com)
244         - Introduce BUILD_ALL_DEPS to build all RDEPENDS. E.g
245           this is used by the OpenEmbedded Meta Packages.
246           (rpurdie@openedhand.com).
247
248 Changes in BitBake 1.3.2:
249         - reintegration of make.py into BitBake
250         - bbread is gone, use bitbake -e
251         - lots of shell updates and bugfixes
252         - Introduction of the .= and =. operator
253         - Sort variables, keys and groups in bitdoc
254         - Fix regression in the handling of BBCOLLECTIONS
255         - Update the bitbake usermanual
256
257 Changes in BitBake 1.3.0:
258         - add bitbake interactive shell (bitbake -i)
259         - refactor bitbake utility in OO style
260         - kill default arguments in methods in the bb.data module
261         - kill default arguments in methods in the bb.fetch module
262         - the http/https/ftp fetcher will fail if the to be 
263           downloaded file was not found in DL_DIR (this is needed
264           to avoid unpacking the sourceforge mirror page)
265         - Switch to a cow like data instance for persistent and non
266           persisting mode (called data_smart.py)
267         - Changed the callback of bb.make.collect_bbfiles to carry
268           additional parameters
269         - Drastically reduced the amount of needed RAM by not holding
270           each data instance in memory when using a cache/persistent
271           storage
272
273 Changes in BitBake 1.2.1:
274         The 1.2.1 release is meant as a intermediate release to lay the
275         ground for more radical changes. The most notable changes are:
276
277         - Do not hardcode {}, use bb.data.init() instead if you want to
278           get a instance of a data class
279         - bb.data.init() is a factory and the old bb.data methods are delegates
280         - Do not use deepcopy use bb.data.createCopy() instead.
281         - Removed default arguments in bb.fetch
282