no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / third_party / sqlite3 / moz.yaml
blob4860eaf52bd74d01a46a7498f50b34aed83de244
1 schema: 1
3 bugzilla:
4   product: Toolkit
5   component: Storage
7 origin:
8   name: SQLite
9   description: >
10     SQLite is a C-language library that implements a small, fast,
11     self-contained, high-reliability, full-featured, SQL database engine.
12   url: https://www.sqlite.org/
13   release: vesion-3.45.1 (2024-01-30T16:01:20+00:00).
14   revision: vesion-3.45.1
15   license: Public Domain
16   license-file: LICENSE.md
17   notes: >
18     We have Mozilla specific moz.build and sqlite.symbols in src/ to build the
19     engine. SQLite extensions with similar build files are in ext/.
20     Since this tracks the latest Github tag, if non-versioning tags are added
21     then the update script will fail, and you may have to pass a specific
22     --revision with the appropriate github tag to mach vendor.
24 vendoring:
25   url: https://github.com/sqlite/sqlite
26   source-hosting: github
27   tracking: tag
28   vendor-directory: third_party/sqlite3/src
29   skip-vendoring-steps:
30     - hg-add
31     - update-moz-build
32   exclude:
33     - "**"
34   include:
35     - LICENSE.md
36     - VERSION
37   keep:
38     - moz.build
39     - sqlite3.c
40     - sqlite3.h
41     - sqlite.symbols
43   update-actions:
44     - action: move-file
45       from: '{vendor_dir}/VERSION'
46       to: '{vendor_dir}/VERSION.txt'
47     - action: run-script
48       script: '{yaml_dir}/vendor.sh'
49       cwd: '{yaml_dir}'