488d12
#!/bin/sh
488d12
488d12
rm -rf ./process-tarball-dir
488d12
mkdir ./process-tarball-dir
488d12
tar -xJf $1 --directory process-tarball-dir
488d12
488d12
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0030-isvalid.html
488d12
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0008-isvalid.html
488d12
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfalite/0030-isvalid.html
488d12
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/css/css-ui/support/cursors/woolly-64.svg
488d12
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/css/css-ui/support/cursors/woolly.svg
488d12
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0230-novalid.html
488d12
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0231-isvalid.html
488d12
rm -vf ./process-tarball-dir/*/layout/inspector/tests/chrome/test_fontVariationsAPI.css
488d12
488d12
processed_tarball=${1/source/processed-source}
488d12
488d12
cd ./process-tarball-dir
488d12
tar -cf - ./* | xz -9 -T 0 -f > $processed_tarball
488d12
mv $processed_tarball ..
488d12
cd ..
488d12
488d12
rm -rf ./process-tarball-dir