]> Cypherpunks.ru repositories - gocheese.git/blobdiff - makedist.sh
More convenient trusted-host
[gocheese.git] / makedist.sh
diff --git a/makedist.sh b/makedist.sh
deleted file mode 100755 (executable)
index 26c04c5..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-#!/bin/sh -ex
-
-cur=$(pwd)
-tmp=$(mktemp -d)
-release=$1
-[ -n "$release" ]
-
-git clone . $tmp/gocheese-$release
-cd $tmp/gocheese-$release
-git checkout v$release
-
-redo-ifchange VERSION
-
-go mod vendor
-
-cat > doc/download.texi <<EOF
-You can obtain releases source code prepared tarballs on
-@url{http://www.gocheese.cypherpunks.ru/}.
-EOF
-redo doc/gocheese.info
-
-cd doc
-mkinfo() {
-    ${MAKEINFO:=makeinfo} --plaintext \
-        --set-customization-variable SECTION_NAME_IN_TITLE=1 \
-        --set-customization-variable TREE_TRANSFORMATIONS=complete_tree_nodes_menus \
-        --set-customization-variable CLOSE_QUOTE_SYMBOL=\" \
-        --set-customization-variable OPEN_QUOTE_SYMBOL=\" \
-        -D "VERSION `cat ../VERSION`" $@
-}
-
-texi=$(mktemp)
-cat > $texi <<EOF
-\input texinfo
-@documentencoding UTF-8
-@settitle INSTALL
-@include install.texi
-@bye
-EOF
-perl -i -p -e "s/.verbatiminclude ...PUBKEY.asc/Look in PUBKEY.asc file./" install.texi
-mkinfo --output ../INSTALL $texi
-rm $texi
-cd ..
-
-rm -rf .git .gitignore doc/.gitignore doc/style.css makedist.sh doc/www.do VERSION.do
-redo-cleanup full
-perl -i -npe "s/go} build/go} build -mod=vendor/" gocheese.do
-perl -i -npe "s/go} test/go} test -mod=vendor/" test.do
-cp ~/work/redo/apenwarr/minimal/do contrib/do
-
-find . -type d -exec chmod 755 {} +
-find . -type f -exec chmod 644 {} +
-chmod +x contrib/pyshop2packages.sh contrib/do
-
-cd ..
-tar cvf gocheese-"$release".tar --uid=0 --gid=0 --numeric-owner gocheese-"$release"
-zstd -19 -v gocheese-"$release".tar
-tarball=gocheese-"$release".tar.zst
-gpg --detach-sign --sign --local-user CD5CD01F55343D88 $tarball
-gpg --enarmor < "$tarball".sig |
-    sed "/^Comment:/d ; s/ARMORED FILE/SIGNATURE/" > "$tarball".asc
-meta4-create -file "$tarball" -mtime "$tarball" -sig "$tarball".asc \
-    http://www.gocheese.cypherpunks.ru/download/"$tarball" \
-    http://y.www.gocheese.cypherpunks.ru/download/"$tarball" > "$tarball".meta4
-
-size=$(( $(stat -f %z $tarball) / 1024 ))
-hash=$(gpg --print-md SHA256 < $tarball)
-release_date=$(date "+%Y-%m-%d")
-
-cat <<EOF
-An entry for documentation:
-@item $release @tab $release_date @tab $size KiB
-@tab
-    @url{download/gocheese-${release}.tar.zst.meta4, meta4}
-    @url{download/gocheese-${release}.tar.zst, link}
-    @url{download/gocheese-${release}.tar.zst.sig, sig}
-@tab @code{$hash}
-EOF
-
-mv $tmp/$tarball $tmp/"$tarball".sig $tmp/"$tarball".meta4 $cur/doc/gocheese.html/download