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