Advertisement
Guest User

Untitled

a guest
Sep 25th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.70 KB | None | 0 0
  1. # project.conf
  2. # Unique project name
  3. name: test
  4.  
  5. # Required BuildStream format version
  6. format-version: 16
  7.  
  8. # Subdirectory where elements are stored
  9. element-path: elements
  10.  
  11. # Define an alias
  12. aliases:
  13. gitlab: https://gitlab.com/
  14.  
  15. # elemnts/base.bst
  16. kind: junction
  17. description: |
  18.  
  19. Base image.
  20.  
  21. sources:
  22. - kind: git
  23. url: gitlab:freedesktop-sdk/freedesktop-sdk
  24. ref: 18.08
  25.  
  26. # elements/test.bst
  27. kind: stack
  28.  
  29. depends:
  30. - junction: base.bst
  31. filename: desktop.bst
  32.  
  33. # >> bst build test.bst
  34. Traceback (most recent call last):
  35. File "/home/raoulhidalgo/.local/bin/bst", line 8, in <module>
  36. sys.exit(cli())
  37. File "/home/raoulhidalgo/.local/lib/python3.5/site-packages/click/core.py", line 722, in __call__
  38. return self.main(*args, **kwargs)
  39. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/_frontend/cli.py", line 162, in override_main
  40. standalone_mode=standalone_mode, **extra)
  41. File "/home/raoulhidalgo/.local/lib/python3.5/site-packages/click/core.py", line 697, in main
  42. rv = self.invoke(ctx)
  43. File "/home/raoulhidalgo/.local/lib/python3.5/site-packages/click/core.py", line 1066, in invoke
  44. return _process_result(sub_ctx.command.invoke(sub_ctx))
  45. File "/home/raoulhidalgo/.local/lib/python3.5/site-packages/click/core.py", line 895, in invoke
  46. return ctx.invoke(self.callback, **ctx.params)
  47. File "/home/raoulhidalgo/.local/lib/python3.5/site-packages/click/core.py", line 535, in invoke
  48. return callback(*args, **kwargs)
  49. File "/home/raoulhidalgo/.local/lib/python3.5/site-packages/click/decorators.py", line 27, in new_func
  50. return f(get_current_context().obj, *args, **kwargs)
  51. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/_frontend/cli.py", line 330, in build
  52. build_all=all_)
  53. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/_stream.py", line 184, in build
  54. dynamic_plan=True)
  55. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/_stream.py", line 873, in _load
  56. fetch_subprojects=fetch_subprojects)
  57. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/_pipeline.py", line 111, in load
  58. fetch_subprojects=fetch_subprojects)
  59. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/_project.py", line 325, in load_elements
  60. for meta in meta_elements
  61. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/_project.py", line 325, in <listcomp>
  62. for meta in meta_elements
  63. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/element.py", line 898, in _new_from_meta
  64. dependency = Element._new_from_meta(meta_dep, artifacts)
  65. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/element.py", line 898, in _new_from_meta
  66. dependency = Element._new_from_meta(meta_dep, artifacts)
  67. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/element.py", line 898, in _new_from_meta
  68. dependency = Element._new_from_meta(meta_dep, artifacts)
  69. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/element.py", line 898, in _new_from_meta
  70. dependency = Element._new_from_meta(meta_dep, artifacts)
  71. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/element.py", line 898, in _new_from_meta
  72. dependency = Element._new_from_meta(meta_dep, artifacts)
  73. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/element.py", line 898, in _new_from_meta
  74. dependency = Element._new_from_meta(meta_dep, artifacts)
  75. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/element.py", line 898, in _new_from_meta
  76. dependency = Element._new_from_meta(meta_dep, artifacts)
  77. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/element.py", line 901, in _new_from_meta
  78. dependency = Element._new_from_meta(meta_dep, artifacts)
  79. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/element.py", line 901, in _new_from_meta
  80. dependency = Element._new_from_meta(meta_dep, artifacts)
  81. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/element.py", line 898, in _new_from_meta
  82. dependency = Element._new_from_meta(meta_dep, artifacts)
  83. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/element.py", line 898, in _new_from_meta
  84. dependency = Element._new_from_meta(meta_dep, artifacts)
  85. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/element.py", line 898, in _new_from_meta
  86. dependency = Element._new_from_meta(meta_dep, artifacts)
  87. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/element.py", line 888, in _new_from_meta
  88. first_pass=meta.first_pass)
  89. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/_project.py", line 253, in create_source
  90. return self.config.source_factory.create(self._context, self, meta)
  91. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/_sourcefactory.py", line 60, in create
  92. source_type, _ = self.lookup(meta.kind)
  93. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/_plugincontext.py", line 77, in lookup
  94. return self._ensure_plugin(kind)
  95. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/_plugincontext.py", line 161, in _ensure_plugin
  96. self._types[kind] = self._load_plugin(source, kind, defaults)
  97. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/_plugincontext.py", line 170, in _load_plugin
  98. plugin = source.load_plugin(kind)
  99. File "/home/raoulhidalgo/.local/lib/python3.5/site-packages/pluginbase.py", line 302, in load_plugin
  100. globals(), {}, ['__name__'])
  101. File "/home/raoulhidalgo/.local/lib/python3.5/site-packages/pluginbase.py", line 439, in plugin_import
  102. fromlist, level)
  103. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/plugins/sources/ostree.py", line 57, in <module>
  104. from buildstream import _ostree
  105. File "/home/raoulhidalgo/.local/lib/python3.5/site-packages/pluginbase.py", line 439, in plugin_import
  106. fromlist, level)
  107. File "/home/raoulhidalgo/Documents/buildstream/buildstream/buildstream/_ostree.py", line 36, in <module>
  108. gi.require_version('OSTree', '1.0')
  109. File "/usr/lib/python3/dist-packages/gi/__init__.py", line 118, in require_version
  110. raise ValueError('Namespace %s not available' % namespace)
  111. ValueError: Namespace OSTree not available
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement