blob: 6873951af8e7731e07f692a05c61a36c4f9f05ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
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
|