2020-01-02 10:43:19 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
. scripts.inc
|
|
|
|
|
2020-01-03 06:47:15 +01:00
|
|
|
rm -rf dist
|
|
|
|
|
2020-01-02 10:43:19 +01:00
|
|
|
for dir in $DEVEL; do
|
|
|
|
echo $dir
|
|
|
|
(cd $dir && make build BUILDFLAGS="$BUILDFLAGS")
|
|
|
|
done
|
2020-01-03 06:47:15 +01:00
|
|
|
|
|
|
|
# add build hash to outputs
|
|
|
|
ver=$(cat meta/version)
|
|
|
|
hash=$(cat meta/buildhash)
|
|
|
|
(cd dist && rename "s/$ver/${ver}+$hash/" *.whl)
|