all.do | 1 - doc/clean.do | 1 - doc/install.texi | 8 +------- main.go | 2 +- makedist | 7 ++----- test.do | 1 - diff --git a/all.do b/all.do deleted file mode 100644 index ff41028d8c0a8338d521159e9eb1d05ad2221603de62a9b76af6d12e1f7acd9b..0000000000000000000000000000000000000000 --- a/all.do +++ /dev/null @@ -1 +0,0 @@ -redo-ifchange gocheese doc/gocheese.info diff --git a/doc/clean.do b/doc/clean.do deleted file mode 100644 index f2c0c8efea746422f87cdcd5bf8e66f55345237209f17944aa8128754ae7a46d..0000000000000000000000000000000000000000 --- a/doc/clean.do +++ /dev/null @@ -1 +0,0 @@ -rm -f gocheese.info diff --git a/doc/install.texi b/doc/install.texi index 2484f3096e6c8fd21d2a6306c30f8dafadc9afd66ae02a313ca3bff6686615f0..de7b0c950d31bb8617488d1de464aec9fd33917910e42204b5ade8d4661c7766 100644 --- a/doc/install.texi +++ b/doc/install.texi @@ -15,14 +15,8 @@ $ [fetch|wget] http://www.gocheese.cypherpunks.ru/download/gocheese-@value{VERSION}.tar.zst.sig $ gpg --verify gocheese-@value{VERSION}.tar.zst.sig gocheese-@value{VERSION}.tar.zst $ zstd -d < gocheese-@value{VERSION}.tar.zst | tar xf - $ cd gocheese-@value{VERSION} -$ redo test all # or go build -mod=vendor +$ go build -mod=vendor @end example - -It uses @url{http://cr.yp.to/redo.html, redo} build system for that -examples. You can use either dozen of various implementations, or at -least minimalistic POSIX shell @command{contrib/do} (just replace -@command{redo} with @command{contrib/do} in the example above) included -in tarball. @include download.texi diff --git a/main.go b/main.go index cffce33d4c380e90bbb89513cfe11846b7ce5f455f7eacd0ae6a5f581ae40777..7b6f7e0457ba2fbb123be686c391fd020be4939211d61b1b472689f05dee800a 100644 --- a/main.go +++ b/main.go @@ -44,7 +44,7 @@ "golang.org/x/net/netutil" ) const ( - Version = "3.7.0" + Version = "3.7.1" UserAgent = "GoCheese/" + Version ) diff --git a/makedist b/makedist index 613aeb68e6c6c5cad0fffeefe929e0d0587da04d332158054520224f63b54cc7..175c845006180a7130a96677b3ad1d706d02e8f3a427d99e85bcb4b8593ee4ee 100755 --- a/makedist +++ b/makedist @@ -41,15 +41,12 @@ mkinfo --output ../INSTALL $texi rm $texi cd .. -rm -rf .git .gitignore doc/.gitignore doc/style.css makedist.sh doc/www.do VERSION.do +rm -rf .git .gitignore doc/.gitignore doc/style.css makedist 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 +chmod +x contrib/pyshop2packages.sh cd .. tar cvf gocheese-"$release".tar --uid=0 --gid=0 --numeric-owner gocheese-"$release" diff --git a/test.do b/test.do deleted file mode 100644 index 06cdb175bc690989f7b4f1813296cdee635758aa407643619be3566b78b4dcbb..0000000000000000000000000000000000000000 --- a/test.do +++ /dev/null @@ -1 +0,0 @@ -${GO:-go} test ./... >&2