mirror of
https://github.com/Feodor2/Mypal68.git
synced 2025-06-18 23:05:40 -04:00
52 lines
1.4 KiB
Bash
52 lines
1.4 KiB
Bash
#!/bin/bash
|
|
# Script to update mp4parse-rust sources to latest upstream
|
|
|
|
set -e
|
|
|
|
# Default version.
|
|
VER="63ca8c6bde27b39dea87fb15e2922a23cb38c8df"
|
|
|
|
# Accept version or commit from the command line.
|
|
if test -n "$1"; then
|
|
VER=$1
|
|
fi
|
|
|
|
echo "Fetching sources..."
|
|
rm -rf _upstream
|
|
git clone --recurse-submodules https://github.com/mozilla/mp4parse-rust _upstream/mp4parse
|
|
|
|
pushd _upstream/mp4parse
|
|
git checkout ${VER}
|
|
echo "Verifying sources..."
|
|
cargo test
|
|
popd
|
|
rm -rf mp4parse
|
|
mkdir -p mp4parse/src
|
|
cp _upstream/mp4parse/mp4parse/Cargo.toml mp4parse/
|
|
cp _upstream/mp4parse/mp4parse/src/*.rs mp4parse/src/
|
|
mkdir -p mp4parse/tests
|
|
cp _upstream/mp4parse/mp4parse/tests/*.rs mp4parse/tests/
|
|
cp _upstream/mp4parse/mp4parse/tests/*.mp4 mp4parse/tests/
|
|
# Remove everything but the cbindgen.toml, since it's needed to configure the
|
|
# creation of the bindings as part of moz.build
|
|
find mp4parse_capi -not -name cbindgen.toml -delete
|
|
mkdir -p mp4parse_capi/src
|
|
cp _upstream/mp4parse/mp4parse_capi/Cargo.toml mp4parse_capi/
|
|
cp _upstream/mp4parse/mp4parse_capi/src/*.rs mp4parse_capi/src/
|
|
|
|
echo "Applying patches..."
|
|
patch -p3 < mp4parse-cargo.patch
|
|
|
|
echo "Cleaning up..."
|
|
rm -rf _upstream
|
|
|
|
echo "Updating gecko Cargo.lock..."
|
|
pushd ../../toolkit/library/rust/
|
|
cargo update --package mp4parse_capi
|
|
popd
|
|
pushd ../../toolkit/library/gtest/rust/
|
|
cargo update --package mp4parse_capi
|
|
popd
|
|
|
|
echo "Updated to ${VER}."
|