* Publish PyPI manylinux aarch64 wheels built and tested on aarch64. * Publish PyPI musllinux aarch64 and arm7l wheels built and tested on aarch64. * Publish PyPI manylinux Python 3.13 wheels for i686, arm7l, ppc64le, and s390x. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-orjson?expand=0&rev=25
12 lines
351 B
Bash
12 lines
351 B
Bash
#!/bin/sh
|
|
file=$(find . -maxdepth 1 -name 'orjson-*.tar.gz' -print | sort -rn | tail -1)
|
|
echo "Removing the cargo vendoring from upstream ${file}"
|
|
dir=${file%.tar.gz}
|
|
tar -x -z -f $file
|
|
rm ${dir}/Cargo.lock
|
|
rm -r ${dir}/include/cargo
|
|
rm -r ${dir}/.cargo
|
|
outfile=${dir}-devendored.tar.xz
|
|
echo "Repackaging to ${outfile}"
|
|
tar -c -J -f ${outfile} ${dir}
|