Thanks. Applied to toaster-next and send upstream to bitbake-devel
Michael On 15/08/16 01:47, David Reyna wrote:
From: David Reyna <[email protected]> The layer index update command has a special case for the updating 'openembedded-core' layer, and it was missing reading and updating the git web URL fields. [YOCTO #8037] Signed-off-by: David Reyna <[email protected]> --- bitbake/lib/toaster/orm/management/commands/lsupdates.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bitbake/lib/toaster/orm/management/commands/lsupdates.py b/bitbake/lib/toaster/orm/management/commands/lsupdates.py index 89817c8..10870fb 100644 --- a/bitbake/lib/toaster/orm/management/commands/lsupdates.py +++ b/bitbake/lib/toaster/orm/management/commands/lsupdates.py @@ -165,6 +165,9 @@ class Command(NoArgsCommand): # layerindex oe_core_l.summary = li['summary'] oe_core_l.description = li['description'] + oe_core_l.vcs_web_url = li['vcs_web_url'] + oe_core_l.vcs_web_tree_base_url = li['vcs_web_tree_base_url'] + oe_core_l.vcs_web_file_base_url = li['vcs_web_file_base_url'] oe_core_l.save() li_layer_id_to_toaster_layer_id[li['id']] = oe_core_l.pk self.mini_progress("layers", i, total)
--------------------------------------------------------------------- Intel Corporation (UK) Limited Registered No. 1134945 (England) Registered Office: Pipers Way, Swindon SN3 1RJ VAT No: 860 2173 47 This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies. -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
