]> Cypherpunks.ru repositories - gocheese.git/commitdiff
No redo for simplicity v3.7.1
authorSergey Matveev <stargrave@stargrave.org>
Thu, 23 Mar 2023 10:38:39 +0000 (13:38 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Thu, 23 Mar 2023 10:38:41 +0000 (13:38 +0300)
That is too simple project.

all.do [deleted file]
doc/clean.do [deleted file]
doc/install.texi
main.go
makedist
test.do [deleted file]

diff --git a/all.do b/all.do
deleted file mode 100644 (file)
index 0b4598e..0000000
--- 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 (file)
index 2c778e3..0000000
+++ /dev/null
@@ -1 +0,0 @@
-rm -f gocheese.info
index 163e31e64415b4688d49bbef5b6b4000dc113940..244078e357aab5f564c25a77fc33237135bda065 100644 (file)
@@ -15,15 +15,9 @@ $ [fetch|wget] http://www.gocheese.cypherpunks.ru/download/gocheese-@value{VERSI
 $ 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
 
 You @strong{have to} verify downloaded tarballs integrity and
diff --git a/main.go b/main.go
index c14906fb7c87ac04b9308b426850c2efb59346b3..b2d3250a3fbf57365a5161eb1be888466836c09d 100644 (file)
--- a/main.go
+++ b/main.go
@@ -44,7 +44,7 @@ import (
 )
 
 const (
-       Version   = "3.7.0"
+       Version   = "3.7.1"
        UserAgent = "GoCheese/" + Version
 )
 
index 1a5bdbd594b18609cd1606e2e0cfb606becee4d8..e5af33946a5249687b67e92259a66ec7028bb550 100755 (executable)
--- 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 (file)
index 21eb21b..0000000
--- a/test.do
+++ /dev/null
@@ -1 +0,0 @@
-${GO:-go} test ./... >&2