notcurses/tools/release.sh

63 lines
1.6 KiB
Bash
Raw Normal View History

2020-04-19 06:23:08 +00:00
#!/bin/sh
set -e
usage() { echo "usage: `basename $0` oldversion newversion quip" ; }
2020-04-19 06:23:08 +00:00
[ $# -eq 3 ] || { usage >&2 ; exit 1 ; }
2020-04-19 06:23:08 +00:00
OLDVERSION="$1"
VERSION="$2"
QUIP="$3"
2020-04-19 06:23:08 +00:00
2020-05-11 01:38:46 +00:00
vi NEWS.md
2020-04-19 06:23:08 +00:00
git clean -f -d -x
# bump version numbers wherever they occur (wherever we enumerate them, anyway)
2020-08-16 12:54:22 +00:00
BUMP="CMakeLists.txt doc/Doxyfile doc/man/man*/* doc/man/index.html python/setup.py python/notcurses-pydemo.1.md rust/Cargo.toml rust/build/build.rs"
2020-04-19 06:23:08 +00:00
for i in $BUMP ; do
sed -i -e "s/$OLDVERSION/$VERSION/g" $i
done
# do a build with Doxygen enabled, upload docs, clean it up
mkdir build
cd build
cmake -DUSE_DOXYGEN=on ..
make -j
make test
ssh qemfd.net rm -rf /var/www/notcurses/html
scp -r html qemfd.net:/var/www/notcurses/html
scp *.html ../doc/man/index.html qemfd.net:/var/www/notcurses/
cd ..
rm -rf build
# if that all worked, commit, push, and tag
2020-04-19 06:23:08 +00:00
git commit -a -m v$VERSION
git push
git pull
2020-05-17 12:12:26 +00:00
git tag -a v$VERSION -m v$VERSION -s
2020-04-19 06:23:08 +00:00
git push origin --tags
git pull
TARBALL=v$VERSION.tar.gz
wget https://github.com/dankamongmen/notcurses/archive/$TARBALL
gpg --sign --armor --detach-sign $TARBALL
rm v$VERSION.tar.gz
2020-04-19 06:23:08 +00:00
echo "Cut $VERSION, signed to $TARBALL.asc"
echo "Now upload the sig to https://github.com/dankamongmen/notcurses/releases"
echo "The bastards are trying to immanentize the Eschaton"
# requires token in ~/.netrc
github-release dankamongmen/notcurses create v$VERSION --name "v$VERSION$QUIP" --publish $TARBALL.asc
cd python
2020-08-03 06:52:27 +00:00
python3 setup.py sdist
twine upload -s -udankamongmen dist/*
# FIXME need to install fresh notcurses for rust to compile
2020-08-16 12:55:38 +00:00
cd ../rust
cargo clean
cargo publish
# FIXME and at this point, uninstall, yuck