Blame SOURCES/get-lxml-source.sh

d2a091
#! /bin/bash -ex
d2a091
d2a091
# Download a release of lxml (if missing) and remove the isoschematron module from it
d2a091
d2a091
version=$1
d2a091
d2a091
if [ -z "${version}" ]; then
d2a091
    echo "Usage: $0 VERSION" >& 2
d2a091
    echo "" >& 2
d2a091
    echo "example: $0 4.9.2" >& 2
d2a091
    exit 1
d2a091
fi
d2a091
d2a091
versionedname=lxml-${version}
d2a091
orig_archive=${versionedname}.tar.gz
d2a091
new_archive=${versionedname}-no-isoschematron.tar.gz
d2a091
d2a091
if [ ! -e ${orig_archive} ]; then
d2a091
    wget -N https://files.pythonhosted.org/packages/source/l/lxml/${orig_archive}
d2a091
fi
d2a091
d2a091
deleted_module=lxml-${version}/src/lxml/isoschematron/
d2a091
deleted_test=lxml-${version}/src/lxml/tests/test_isoschematron.py
d2a091
d2a091
# tar --delete does not operate on compressed archives, so do
d2a091
# gz decompression explicitly
d2a091
gzip --decompress ${orig_archive}
d2a091
tar -v --delete -f ${orig_archive//.gz} {$deleted_module,$deleted_test}
d2a091
gzip -cf ${orig_archive//.gz} > ${new_archive}