2 Star 0 Fork 8

ocs-official-rebuild/firefox

forked from OpenCloudOS Stream/firefox 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
process-official-tarball 1.94 KB
Copy Edit Raw Blame History
#!/bin/sh
set -ex
# example: version=115.9.1esr
version=$1
date=$(date +"%Y%m%d")
sourcetar=firefox-$version.source.tar.xz
if [ -z $version ];then
echo " please input version of firefox!"
echo " Usage: sh $0 115.9.1esr"
exit 1
fi
rm -rf ./process-tarball-dir
mkdir ./process-tarball-dir
wget https://archive.mozilla.org/pub/firefox/releases/${version}/source/${sourcetar}
tar -xJf ${sourcetar} --directory process-tarball-dir
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0030-isvalid.html
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0008-isvalid.html
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfalite/0030-isvalid.html
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/css/css-ui/support/cursors/woolly-64.svg
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/css/css-ui/support/cursors/woolly.svg
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0230-novalid.html
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0231-isvalid.html
rm -vf ./process-tarball-dir/*/layout/inspector/tests/chrome/test_fontVariationsAPI.css
# A forbidden code point was found in:
rm -vf ./process-tarball-dir/*/mobile/android/android-components/components/browser/errorpages/src/main/res/values-ar/strings.xml
rm -vf ./process-tarball-dir/*/mobile/android/android-components/components/feature/addons/src/main/res/values-ur/strings.xml
rm -vf ./process-tarball-dir/*/third_party/webkit/PerformanceTests/Speedometer3/resources/editors/dist/assets/codemirror-521de7ab.js
rm -vf ./process-tarball-dir/*/third_party/python/pip/pip-24.0.dist-info/AUTHORS.txt
processed_tarball=${sourcetar/source/processed-source}
cd ./process-tarball-dir
tar -cf - ./* | xz -9 -T 0 -f > $processed_tarball
mv $processed_tarball ..
cd ..
rm $sourcetar
rm -rf ./process-tarball-dir
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ocs-official-rebuild/firefox.git
git@gitee.com:ocs-official-rebuild/firefox.git
ocs-official-rebuild
firefox
firefox
master

Search