]> Cypherpunks repositories - goredo.git/commitdiff
Ability to build tai64nlocal from the tarball
authorSergey Matveev <stargrave@stargrave.org>
Fri, 16 Jan 2026 09:44:49 +0000 (12:44 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Fri, 16 Jan 2026 13:52:31 +0000 (16:52 +0300)
doc/INSTALL
doc/cmd/Logs
makedist

index 8f781a90e18e08e4e9be5180d92e3a148337fdd4..94273798a1f581de9be42f3ee23edc153c047417 100644 (file)
@@ -21,6 +21,9 @@ Preferable way is to [Download] tarball with the signature from website:
     $ ./goredo -symlinks        # create redo-* commands symlinks
     $ export PATH=`pwd`:$PATH   # let your system know about goredo
 
+    # to additionally build tai64nlocal utility for [Logs]
+    $ go build -mod=vendor -o tai64nlocal go.cypherpunks.su/tai64n/v4/cmd/tai64nlocal
+
 A [Env] GOPRIVATE\r
 If you have problems with *.golang.org's inability to verify
 authenticity of go.cypherpunks.su TLS connection, then you can
index 3f0aeac48aee2a3d3d4f1f9585b8e00f080248d0..58e481fca3dc826f5e3189d54288553a286da411 100644 (file)
@@ -15,7 +15,8 @@ Each line of it is prefixed with
 that you can decode with tai64nlocal utility from
   => http://cr.yp.to/daemontools.html daemontools\r
 or similar one:
-    go install go.cypherpunks.su/tai64n/v4/cmd/tai64nlocal@latest
+    $ cd goredo/src
+    $ go build -mod=vendor -o tai64nlocal go.cypherpunks.su/tai64n/v4/cmd/tai64nlocal
 
 When -k is in use, all environment variables, working directory, command
 line arguments, start/finish times, duration, participated PIDs, return
index 9bdbc3d8cc8eeb298b06e740b5ab751ddddbc8bf..ca43412c6d26ece80619be73fe9582ee3c429282 100755 (executable)
--- a/makedist
+++ b/makedist
@@ -9,10 +9,10 @@ git clone . $tmp/goredo-$release
 cd $tmp/goredo-$release
 git checkout v$release
 go generate
-
 redo-ifchange VERSION
 
 ########################################################################
+
 cat >doc/Download <<EOF
 You can obtain releases source code prepared tarballs on
 => http://www.goredo.cypherpunks.su/\r
@@ -28,6 +28,7 @@ mv *.go go.* src
 mv doc/cmd src/doc
 cd src
 go mod vendor
+echo go.cypherpunks.su/tai64n/v4/cmd/tai64nlocal >>vendor/modules.txt
 modvendor -v -copy="**/*_test.go **/private-gen.go **/main.go **/vectors.json **/gen.go"
 rm -rf vendor/golang.org/x/sys/plan9 vendor/golang.org/x/sys/windows
 find vendor/golang.org/x/sys -name "*_test.go" -delete