From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- media/libogg/moz.yaml | 107 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 media/libogg/moz.yaml (limited to 'media/libogg/moz.yaml') diff --git a/media/libogg/moz.yaml b/media/libogg/moz.yaml new file mode 100644 index 0000000000..6873951af8 --- /dev/null +++ b/media/libogg/moz.yaml @@ -0,0 +1,107 @@ +schema: 1 + +bugzilla: + product: Core + component: "Audio/Video" + +origin: + name: libogg + description: multimedia container format + + url: https://www.xiph.org/ogg/ + + release: v1.3.5 (2021-06-03T16:38:31-07:00). + revision: v1.3.5 + + license: BSD-3-Clause + license-file: COPYING + +vendoring: + url: https://gitlab.xiph.org/xiph/ogg/ + source-hosting: gitlab + tracking: tag + + exclude: + - "**" + + keep: + - geckoextra + - sources.mozbuild + + include: + - "include/ogg/config_types.h.in" + - "include/ogg/ogg.h" + - "include/ogg/os_types.h" + - "src/bitwise.c" + - "src/crctable.h" + - "src/framing.c" + - AUTHORS + - CHANGES + - COPYING + - README.md + + update-actions: + - action: move-file + from: '{vendor_dir}/README.md' + to: '{vendor_dir}/README' + - action: move-file + from: '{vendor_dir}/src/bitwise.c' + to: '{vendor_dir}/src/ogg_bitwise.c' + - action: move-file + from: '{vendor_dir}/src/crctable.h' + to: '{vendor_dir}/src/crctable.h' + - action: move-file + from: '{vendor_dir}/src/framing.c' + to: '{vendor_dir}/src/ogg_framing.c' + + # Manually reproduce configure step here + - action: replace-in-file + pattern: '@INCLUDE_INTTYPES_H@' + with: '1' + file: '{vendor_dir}/include/ogg/config_types.h.in' + - action: replace-in-file + pattern: '@INCLUDE_STDINT_H@' + with: '1' + file: '{vendor_dir}/include/ogg/config_types.h.in' + - action: replace-in-file + pattern: '@INCLUDE_SYS_TYPES_H@' + with: '1' + file: '{vendor_dir}/include/ogg/config_types.h.in' + - action: replace-in-file + pattern: '@SIZE16@' + with: 'int16_t' + file: '{vendor_dir}/include/ogg/config_types.h.in' + - action: replace-in-file + pattern: '@USIZE16@' + with: 'uint16_t' + file: '{vendor_dir}/include/ogg/config_types.h.in' + - action: replace-in-file + pattern: '@SIZE32@' + with: 'int32_t' + file: '{vendor_dir}/include/ogg/config_types.h.in' + - action: replace-in-file + pattern: '@USIZE32@' + with: 'uint32_t' + file: '{vendor_dir}/include/ogg/config_types.h.in' + - action: replace-in-file + pattern: '@SIZE64@' + with: 'int64_t' + file: '{vendor_dir}/include/ogg/config_types.h.in' + - action: replace-in-file + pattern: '@USIZE64@' + with: 'uint64_t' + file: '{vendor_dir}/include/ogg/config_types.h.in' + - action: move-file + from: '{vendor_dir}/include/ogg/config_types.h.in' + to: '{vendor_dir}/include/ogg/config_types.h' + + patches: + - memory-reporting.patch + +updatebot: + maintainer-phab: "#media-playback-reviewers" + maintainer-bz: padenot@mozilla.com + tasks: + - type: vendoring + enabled: true + frequency: release -- cgit v1.2.3