From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: Re: [PATCH 2/2] gnu: Add nyx. Date: Mon, 30 Jan 2017 19:16:04 +0000 Message-ID: <87h94ge4uj.fsf@wasp.i-did-not-set--mail-host-address--so-tickle-me> References: <20170130000904.31174-1-me@tobias.gr> <20170130000904.31174-2-me@tobias.gr> <87zii9nki5.fsf@wasp.i-did-not-set--mail-host-address--so-tickle-me> <8e04c40c-8060-2f3a-f411-2a978455d7f4@tobias.gr> <87poj4bowq.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37783) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cYHPg-0001ag-JF for guix-devel@gnu.org; Mon, 30 Jan 2017 14:14:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cYHPd-0003qa-5y for guix-devel@gnu.org; Mon, 30 Jan 2017 14:14:52 -0500 In-Reply-To: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Tobias Geerinckx-Rice , ludo@gnu.org Cc: guix-devel@gnu.org Tobias Geerinckx-Rice writes: > Ludo', > > On 30/01/17 15:31, Ludovic Court=C3=A8s wrote: >> Yeah if you can make sure to integrate any missing bits of ng0=E2=80=99= s >> original patch and to address what was previously raised during review= , >> I think you can go ahead and push. > > Great. Thanks! > > Are you referring to any specific missing bits, or raised issues? I > thought I'd addressed them all in my reply. > > I have kept my =E2=80=981.9-=E2=80=99 version base, to highlight that N= yx 2.0 is > supposedly its own thing; a complete re-write since Arm 1.4.5. I think 1.9 is okay, we can verify if 2.0 works once it's out or tagged, or whatever. I just packaged the HEAD (so 2.0) as I had no clue about their versions. > Kind regards, > > T G-R > > --- > > The current package: > > (define-public nyx > ;; The last =E2=80=98arm=E2=80=99 relase was 5 years ago. Meanwhile,= python3 support > ;; has been added and the software was renamed to =E2=80=98nyx=E2=80=99= . > (let ((commit "fea209127484d9b304b908a4711c9528b1d065bc") > (revision "1")) ; Guix package revision > (package > (name "nyx") > (version (string-append "1.9-" > revision "." (string-take commit 7))) > (source > (origin > (method git-fetch) > (file-name (string-append name "-" version "-checkout")) > (uri (git-reference > (url "https://git.torproject.org/nyx.git") > (commit commit))) > (sha256 > (base32 > "1g0l4988076xg5gs0x0nxzlg58rfx5g5agmklvyh4yp03vxncdb9")))) > (build-system python-build-system) > (native-inputs > `(("python-mock" ,python-mock) > ("python-pep8" ,python-pep8) > ("python-pyflakes" ,python-pyflakes))) > (inputs > `(("python-stem" ,python-stem))) > (arguments > `(#:configure-flags > (list (string-append "--man-page=3D" > (assoc-ref %outputs "out") > "/share/man/man1/nyx.1") > (string-append "--sample-path=3D" > (assoc-ref %outputs "out") > "/share/doc/nyx/nyxrc.sample")) > #:use-setuptools? #f ; setup.py still uses distutils > #:phases > (modify-phases %standard-phases > (replace 'check > (lambda _ > (zero? (system* "./run_tests.py" "--unit"))))))) > ;; There's no home page yet. This should change before the 2.0 > release. > (home-page "https://gitweb.torproject.org/nyx.git") > (synopsis "Tor relay status monitor") > (description "Nyx (formerly Anonymizing Relay Monitor or \"arm\") > monitors the performance of relays participating in the > @uref{https://www.torproject.org/, Tor anonymity network}. It displays= this > information visually and in real time, using a curses-based terminal > interface. > This makes Nyx well-suited for remote shell connections and servers > without a > graphical display. It's like @command{top} for Tor, providing detailed > statistics and status reports on: > > @enumerate > @item connections (with IP address, hostname, fingerprint, and consensu= s > data), > @item bandwidth, processor, and memory usage, > @item the relay's current configuration, > @item logged events, > @item and much more. > @end enumerate > > Potential client and exit connections are scrubbed of sensitive > information.") > (license license:gpl3)))) > --=20 ng0 -- https://www.inventati.org/patternsinthechaos/