From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Bavier Subject: Re: [PATCH] gnu: Add slurm Date: Mon, 28 Dec 2015 17:13:58 -0600 Message-ID: <20151228171358.3890a4e7@openmailbox.org> References: <703783d13c12d8834743d02578ec9311@riseup.net> 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]:38358) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aDlZx-0006SS-Ew for guix-devel@gnu.org; Mon, 28 Dec 2015 23:08:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aDlZu-0003St-7P for guix-devel@gnu.org; Mon, 28 Dec 2015 23:08:09 -0500 Received: from smtp29.openmailbox.org ([62.4.1.63]:57117) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aDlZt-0003SD-Ua for guix-devel@gnu.org; Mon, 28 Dec 2015 23:08:06 -0500 In-Reply-To: <703783d13c12d8834743d02578ec9311@riseup.net> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: swedebugia@riseup.net Cc: guix-devel Hello, Welcome, and thanks for the patch. > If okay I would like to avoid providing my legal name. Using a pseudonym is fine. On Mon, 28 Dec 2015 23:00:14 +0100 swedebugia@riseup.net wrote: > gnu/packages/networking.scm | 21 +++++++++++++++++++++ > 1 file changed, 21 insertions(+) Please see the manual and `git log' for examples of proper commit messages. > diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm > index 0a7cde0..d84551d 100644 > --- a/gnu/packages/networking.scm > +++ b/gnu/packages/networking.scm > @@ -3,6 +3,7 @@ > ;;; Copyright =C2=A9 2015 Ricardo Wurmus > ;;; Copyright =C2=A9 2015 Mark H Weaver > ;;; Copyright =C2=A9 2015 Stefan Reich=C3=B6r > +;;; Copyright =C2=A9 2015 swedebugia > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -187,3 +188,23 @@ needed/wanted real-time traffic statistics of multip= le network > interfaces, with a simple and efficient view on the command line. It is > intended as a substitute for the PPPStatus and EthStatus projects.") > (license license:gpl2+))) > + > +(define-public slurm > + (package > + (name "slurm") Aside: It's too bad the name clashes with SLURM the work-load manager, but we can use the name "slurm-wlm" for that (like debian) when it's packaged. > + (version "0.4.3") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "https://github.com/mattthias/slurm/archive/up= stream/" > + version ".tar.gz")) > + (sha256 > + (base32 > + "1b53sckvg1j8510gi4bc48q61191jcc1nvhp5k8f2ywj2p9c0q5r")))) > + (build-system gnu-build-system) > + (inputs `(("ncurses" ,ncurses) Align the opening parentheses with the previous. > + (home-page "https://github.com/mattthias/slurm") > + (synopsis "yet another network load monitor") Perhaps just "Network load monitor" > + (description > + "slurm is a generic network load monitor for *BSD, Linux, HP-UX and= Solaris. It features 3 graph modes with curses ascii graphics, traffic sta= tistics and works on any interface supported by the kernel.") > + (license gpl2+))) Finally, please execute "guix lint slurm" and fix the issues reported there. `~Eric