diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
commit | 9e3c08db40b8916968b9f30096c7be3f00ce9647 (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /third_party/drm/moz.yaml | |
parent | Initial commit. (diff) | |
download | thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.tar.xz thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/drm/moz.yaml')
-rw-r--r-- | third_party/drm/moz.yaml | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/third_party/drm/moz.yaml b/third_party/drm/moz.yaml new file mode 100644 index 0000000000..4772b10081 --- /dev/null +++ b/third_party/drm/moz.yaml @@ -0,0 +1,56 @@ +# Version of this schema +schema: 1 + +bugzilla: + # Bugzilla product and component for this directory and subdirectories + product: "Core" + component: "WebRTC" + +# The source in this directory was copied from upstream by running the +# update.py script from third_party/libdrm. Any changes made relative to +# upstream should be reflected in that script, e.g. by applying patch files +# after the copy step. + +origin: + name: "libdrm" + description: "Userspace interface to controlling GPUs on linux" + + url: "https://cgit.freedesktop.org/drm/libdrm/" + license: MIT + + release: 0e2c7d05712d65903a9b77fb9f960ddff43bac64 + + revision: 0e2c7d05712d65903a9b77fb9f960ddff43bac64 + # The codebase does not provide a LICENSE file! + # https://docs.mesa3d.org/license.html#license-copyright-information + # license-file: LICENSE + +updatebot: + maintainer-phab: chew + maintainer-bz: ngrunbaum@mozilla.com + tasks: + - type: vendoring + enabled: true + frequency: release + +vendoring: + url: https://gitlab.freedesktop.org/mesa/drm + source-hosting: gitlab + vendor-directory: third_party/drm/drm + skip-vendoring-steps: ['update-moz-build'] + exclude: + - '**' + - '**/.*' + + include: + - include/drm/drm.h + - include/drm/drm_fourcc.h + - include/drm/drm_mode.h + - xf86drm.h + keep: + - LICENSE + update-actions: + - action: move-dir + from: '{vendor_dir}/include/drm' + to: '{vendor_dir}/include/libdrm' + |