summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/ChangeLog10
-rw-r--r--bitbake/doc/bitbake.113
-rw-r--r--bitbake/doc/manual/usermanual.xml1
-rw-r--r--bitbake/lib/bb/fetch/cvs.py6
4 files changed, 23 insertions, 7 deletions
diff --git a/bitbake/ChangeLog b/bitbake/ChangeLog
index 561b618ae4..c4aa5ba198 100644
--- a/bitbake/ChangeLog
+++ b/bitbake/ChangeLog
@@ -41,7 +41,17 @@ Changes in BitBake 1.8.x:
41 - Add PERSISTENT_DIR to store the PersistData in a persistent 41 - Add PERSISTENT_DIR to store the PersistData in a persistent
42 directory != the cache dir. 42 directory != the cache dir.
43 - Add md5 and sha256 checksum generation functions to utils.py 43 - Add md5 and sha256 checksum generation functions to utils.py
44 - Make sure Build Completed events are generated even when tasks fail
45 - Correctly handle '-' characters in class names (#2958)
46 - Make sure expandKeys has been called on the data dictonary before running tasks
47 - Correctly add a task override in the form task-TASKNAME.
44 - Revert the '-' character fix in class names since it breaks things 48 - Revert the '-' character fix in class names since it breaks things
49 - When a regexp fails to compile for PACKAGES_DYNAMIC, print a more useful error (#4444)
50 - Allow to checkout CVS by Date and Time. Just add HHmm to the SRCDATE.
51 - Move prunedir function to utils.py and add explode_dep_versions function
52 - Raise an exception if SRCREV == 'INVALID'
53 - Fix hg fetcher username/password handling and fix crash
54 - Fix PACKAGES_DYNAMIC handling of packages with '++' in the name
45 55
46Changes in BitBake 1.8.10: 56Changes in BitBake 1.8.10:
47 - Psyco is available only for x86 - do not use it on other architectures. 57 - Psyco is available only for x86 - do not use it on other architectures.
diff --git a/bitbake/doc/bitbake.1 b/bitbake/doc/bitbake.1
index e6cbe7df0e..01172d7412 100644
--- a/bitbake/doc/bitbake.1
+++ b/bitbake/doc/bitbake.1
@@ -97,12 +97,13 @@ emit the dependency trees of the specified packages in the dot syntax
97.B \-IIGNORED\_DOT\_DEPS, \-\-ignore-deps=IGNORED_DOT_DEPS 97.B \-IIGNORED\_DOT\_DEPS, \-\-ignore-deps=IGNORED_DOT_DEPS
98Stop processing at the given list of dependencies when generating dependency 98Stop processing at the given list of dependencies when generating dependency
99graphs. This can help to make the graph more appealing 99graphs. This can help to make the graph more appealing
100.\" 100.TP
101.\" Next option is only in BitBake 1.7.x (trunk) 101.B \-lDEBUG_DOMAINS, \-\-log-domains=DEBUG_DOMAINS
102.\" 102Show debug logging for the specified logging domains
103.\".TP 103.TP
104.\".B \-lDEBUG_DOMAINS, \-\-log-domains=DEBUG_DOMAINS 104.B \-P, \-\-profile
105.\"Show debug logging for the specified logging domains 105profile the command and print a report
106.TP
106 107
107.SH AUTHORS 108.SH AUTHORS
108BitBake was written by 109BitBake was written by
diff --git a/bitbake/doc/manual/usermanual.xml b/bitbake/doc/manual/usermanual.xml
index a79716a0aa..a01801e03f 100644
--- a/bitbake/doc/manual/usermanual.xml
+++ b/bitbake/doc/manual/usermanual.xml
@@ -415,6 +415,7 @@ options:
415 the graph more appealing 415 the graph more appealing
416 -l DEBUG_DOMAINS, --log-domains=DEBUG_DOMAINS 416 -l DEBUG_DOMAINS, --log-domains=DEBUG_DOMAINS
417 Show debug logging for the specified logging domains 417 Show debug logging for the specified logging domains
418 -P, --profile profile the command and print a report
418 419
419</screen> 420</screen>
420 </para> 421 </para>
diff --git a/bitbake/lib/bb/fetch/cvs.py b/bitbake/lib/bb/fetch/cvs.py
index c4ccf4303f..aa55ad8bf6 100644
--- a/bitbake/lib/bb/fetch/cvs.py
+++ b/bitbake/lib/bb/fetch/cvs.py
@@ -118,7 +118,11 @@ class Cvs(Fetch):
118 if 'norecurse' in ud.parm: 118 if 'norecurse' in ud.parm:
119 options.append("-l") 119 options.append("-l")
120 if ud.date: 120 if ud.date:
121 options.append("-D \"%s UTC\"" % ud.date) 121 # treat YYYYMMDDHHMM specially for CVS
122 if len(ud.date) == 12:
123 options.append("-D \"%s %s:%s UTC\"" % (ud.date[0:8], ud.date[8:10], ud.date[10:12]))
124 else:
125 options.append("-D \"%s UTC\"" % ud.date)
122 if ud.tag: 126 if ud.tag:
123 options.append("-r %s" % ud.tag) 127 options.append("-r %s" % ud.tag)
124 128