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