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