From f30637062ce1f72517e61d96a9b65c73dae890a9 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Wed, 2 Oct 2019 11:45:51 +0300 Subject: [PATCH] Initial module support --- INSTALL | 30 ++++++++++++++++++++++++++++++ go.mod | 3 +++ 2 files changed, 33 insertions(+) create mode 100644 INSTALL create mode 100644 go.mod diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..51d1ff2 --- /dev/null +++ b/INSTALL @@ -0,0 +1,30 @@ +There are several installation possibilities: + +* using go get (although there is no explicit authentication against my + public PGP key!): + + $ go get go.cypherpunks.ru/gocheese + + will install gocheese executable in GOPATH/bin/gocheese. + +* using manual build: + + $ git clone https://git.cypherpunks.ru/git/gocheese.git + or + $ git clone git://git.cypherpunks.ru/gocheese.git + $ cd gocheese + $ git tag -v v1.0.0 + $ go build + + will place gocheese executable in ./gocheese. + +For the very first time it is necessary to get signing public key and +import it for verifying git's tag. Its fingerprint is: + + CF60 E89A 5923 1E76 E263 6422 AE1A 8109 E498 57EF + +You can locate it using: + + $ gpg --auto-key-locate dane --locate-keys stargrave at stargrave dot org + $ gpg --auto-key-locate wkd --locate-keys stargrave at stargrave dot org + $ gpg --auto-key-locate wkd --locate-keys stargrave at gnupg dot net diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..07c0715 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module go.cypherpunks.ru/gocheese + +go 1.12 -- 2.44.0