From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 03 17:41:10 2021 Received: (at 49494) by debbugs.gnu.org; 3 Aug 2021 21:41:10 +0000 Received: from localhost ([127.0.0.1]:41692 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mB29m-0006wP-3i for submit@debbugs.gnu.org; Tue, 03 Aug 2021 17:41:10 -0400 Received: from out1.migadu.com ([91.121.223.63]:63492) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mB29j-0006vr-S1 for 49494@debbugs.gnu.org; Tue, 03 Aug 2021 17:41:01 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mgsn.dev; s=key1; t=1628026857; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/WmzRll8b3++g6KdTePXCBiTI3kkLwwVwMs1Brgz4MM=; b=L6D7yK2so4ApIbjJbciP2vVyqdOou15eHWSlPCD7vhA/JyhmMun4dMlbljh/vNIkTyLKDg 3y190Y9ckYiEEfifXh3URFO4086oMlWr8o4Bdrwj0Vs7wktc6syJIzgp3IuA3V9F7JclN1 bX1pAgTC5hEQfCMnX4PjSkCc0hdTNMc= From: Sarah Morgensen To: Arun Isaac Subject: Re: bug#49494: [PATCH 0/7] Add nncp References: <86y29j4rlz.fsf_-_@mgsn.dev> <20210803201617.19077-1-arunisaac@systemreboot.net> Date: Tue, 03 Aug 2021 14:40:54 -0700 In-Reply-To: <20210803201617.19077-1-arunisaac@systemreboot.net> (Arun Isaac's message of "Wed, 4 Aug 2021 01:46:17 +0530") Message-ID: <86y29i2om1.fsf_-_@mgsn.dev> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 49494 Cc: 49494@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi, Arun Isaac writes: > * gnu/packages/uucp.scm (nncp): New variable. > --- > gnu/packages/uucp.scm | 118 +++++++++++++++++++++++++++++++++++++++++- > 1 file changed, 117 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/uucp.scm b/gnu/packages/uucp.scm > index 1bb4fdb975..120417dea1 100644 > --- a/gnu/packages/uucp.scm > +++ b/gnu/packages/uucp.scm > @@ -1,5 +1,6 @@ > ;;; GNU Guix --- Functional package management for GNU > ;;; Copyright =C2=A9 2014 Ludovic Court=C3=A8s > +;;; Copyright =C2=A9 2021 Arun Isaac > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -17,10 +18,13 @@ > ;;; along with GNU Guix. If not, see . >=20=20 > (define-module (gnu packages uucp) > + #:use-module (gnu packages golang) > + #:use-module (gnu packages texinfo) > #:use-module (guix licenses) > #:use-module (guix packages) > #:use-module (guix download) > - #:use-module (guix build-system gnu)) > + #:use-module (guix build-system gnu) > + #:use-module (guix build-system go)) >=20=20 > (define-public uucp > (package > @@ -54,3 +58,115 @@ > set of utilities for remotely transferring files, email and net news > between computers.") > (license gpl2+))) > + > +(define-public nncp > + (package > + (name "nncp") > + (version "7.5.0") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "http://www.nncpgo.org/download/nncp-" > + version ".tar.xz")) > + (sha256 > + (base32 > + "1r1zgj7gpkdmdm3wf31m0xi8y313kzd4dbyp4r4y8khnp32jvn8l")) > + (modules '((ice-9 ftw) > + (guix build utils))) > + (snippet > + '(begin > + ;; Unbundle dependencies. > + ;; TODO: go.cypherpunks.ru was down at the time of > + ;; packaging. Unbundle go.cypherpunks dependencies as well on= ce it > + ;; comes back online. > + (for-each (lambda (file) > + (unless (member file (list "." ".." "go.cypherpun= ks.ru")) > + (delete-file-recursively (string-append "src/ve= ndor/" file)))) > + (scandir "src/vendor")) > + ;; Delete built documentation. > + (delete-file "doc/nncp.info") > + #t)))) > + (build-system gnu-build-system) > + (arguments > + `(#:modules ((guix build gnu-build-system) > + ((guix build go-build-system) #:prefix go:) > + (guix build utils)) > + #:imported-modules ,%go-build-system-modules > + #:phases > + (modify-phases %standard-phases > + (add-before 'unpack 'setup-go-environment > + (assoc-ref go:%standard-phases 'setup-go-environment)) > + (add-after 'unpack 'go-unpack > + (lambda* (#:key source #:allow-other-keys) > + ;; Copy source to GOPATH. > + (copy-recursively "src" "../src/go.cypherpunks.ru/nncp/v7") > + ;; Move bundled dependencies to GOPATH. > + (for-each (lambda (dependency) > + (rename-file (string-append "src/vendor/go.cyph= erpunks.ru/" > + dependency) > + (string-append "../src/go.cypherpu= nks.ru/" > + dependency))) > + (list "balloon" "recfile")) > + ;; Delete empty bundled dependencies directory. > + (delete-file-recursively "src/vendor"))) > + (replace 'configure > + (lambda* (#:key outputs #:allow-other-keys) > + (let ((out (assoc-ref outputs "out"))) > + ;; Set configuration path. > + (setenv "CFGPATH" "/etc/nncp.hjson") > + ;; Set output directories. > + (setenv "BINDIR" (string-append out "/bin")) > + (setenv "INFODIR" (string-append out "/share/info")) > + (setenv "DOCDIR" (string-append out "/share/doc/nncp"))) > + ;; Set absolute store paths to sh and cat. > + (substitute* (list "src/pipe.go" "src/toss_test.go") > + (("/bin/sh") (which "sh"))) > + (substitute* "src/toss_test.go" > + (("; cat") (string-append "; " (which "cat")))) > + ;; Remove module flags. > + (substitute* (list "bin/default.do" "bin/hjson-cli.do" "tes= t.do") > + ((" -mod=3Dvendor") "") > + ((" -m") "")) > + ;; Use the correct module path. `go list` does not report t= he > + ;; correct module path since we have moved the source files. > + (substitute* "bin/default.do" > + (("^mod=3D[^\n]*" all) "mod=3Dgo.cypherpunks.ru/nncp/v7")) > + ;; Disable timeout in tests. Tests can take longer than the > + ;; default timeout on spinning disks. > + (substitute* "test.do" > + (("test") "test -timeout 0")))) > + (replace 'check > + (lambda* (#:key tests? #:allow-other-keys) > + (when tests? > + (invoke "contrib/do" "-c" "test")))) > + (add-after 'install 'remove-go-references > + (assoc-ref go:%standard-phases 'remove-go-references))))) > + (inputs > + `(("go-github-com-davecgh-go-xdr" ,go-github-com-davecgh-go-xdr) > + ("go-github-com-dustin-go-humanize" ,go-github-com-dustin-go-huma= nize) > + ("go-github-com-flynn-noise" ,go-github-com-flynn-noise) > + ("go-github-com-gorhill-cronexpr" ,go-github-com-gorhill-cronexpr) > + ("go-github-com-hjson-hjson-go" ,go-github-com-hjson-hjson-go) > + ("go-github-com-klauspost-compress" ,go-github-com-klauspost-comp= ress) > + ("go-golang-org-x-crypto" ,go-golang-org-x-crypto) > + ("go-golang-org-x-net" ,go-golang-org-x-net) > + ("go-golang-org-x-term" ,go-golang-org-x-term) > + ("go-lukechampine-com-blake3" ,go-lukechampine-com-blake3))) > + (native-inputs > + `(("go" ,go) > + ("texinfo" ,texinfo))) > + (home-page "http://www.nncpgo.org/") > + (synopsis "Store and forward utilities") > + (description "NNCP (Node to Node copy) is a collection of utilities > +simplifying secure store-and-forward files, mail and command exchanging. > +These utilities are intended to help build up small size (dozens of node= s) > +ad-hoc friend-to-friend (F2F) statically routed darknet delay-tolerant > +networks for fire-and-forget secure reliable files, file requests, Inter= net > +mail and commands transmission. All packets are integrity checked, end-= to-end > +encrypted, explicitly authenticated by known participants public keys. = Onion > +encryption is applied to relayed packets. Each node acts both as a clie= nt and > +server, can use push and poll behaviour model. Multicasting areas, offl= ine > +sneakernet/floppynet, dead drops, sequential and append-only CD-ROM/tape > +storages, air-gapped computers and online TCP daemon with full-duplex > +resumable data transmission exists are all supported.") > + (license gpl3))) This LGTM! -- Sarah