From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36829) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ejlTl-0003hf-J7 for guix-patches@gnu.org; Thu, 08 Feb 2018 07:39:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ejlTi-0000xt-GG for guix-patches@gnu.org; Thu, 08 Feb 2018 07:39:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:54132) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ejlTi-0000xo-Ca for guix-patches@gnu.org; Thu, 08 Feb 2018 07:39:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ejlTi-0007f9-6S for guix-patches@gnu.org; Thu, 08 Feb 2018 07:39:02 -0500 Subject: [bug#30391] [PATCH] gnu: Add sipcalc. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36740) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ejlTK-0003XC-2d for guix-patches@gnu.org; Thu, 08 Feb 2018 07:38:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ejlTG-0000S1-Vs for guix-patches@gnu.org; Thu, 08 Feb 2018 07:38:38 -0500 Received: from mail-lf0-x236.google.com ([2a00:1450:4010:c07::236]:39520) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ejlTG-0000Qo-OV for guix-patches@gnu.org; Thu, 08 Feb 2018 07:38:34 -0500 Received: by mail-lf0-x236.google.com with SMTP id x20so4235447lff.6 for ; Thu, 08 Feb 2018 04:38:34 -0800 (PST) From: Oleg Pykhalov Date: Thu, 8 Feb 2018 15:37:34 +0300 Message-Id: <20180208123734.9756-1-go.wigust@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30391@debbugs.gnu.org * gnu/packages/admin.scm (sipcalc): New public variable. --- gnu/packages/admin.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index a5c9d410c..1c4dda1c0 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -523,6 +523,50 @@ and exploration tool, since it can create almost any kind of connection you would need and has several interesting built-in capabilities.") (license license:gpl2+))) +(define-public sipcalc + (package + (name "sipcalc") + (version "1.1.6") + (source + (origin + (method url-fetch) + (uri (string-append "http://www.routemeister.net/projects" + "/sipcalc/files/sipcalc" "-" version ".tar.gz")) + (sha256 + (base32 + "0mv3wndj4z2bsshh2k8d5sy3j8wxzgf8mzmmkvj1k8gpcz37dm6g")))) + (build-system gnu-build-system) + (home-page "http://www.routemeister.net/projects/sipcalc/") + (synopsis "Command-line IP subnet calculator") + (description + "Sipcalc is an advanced command-line IP subnet calculator. It can take +multiple forms of input (IPv4/IPv6/interface/hostname) and output a multitude +of information about a given subnet. + +Features include: + +@itemize @bullet +@item IPv4 +@itemize +@item Retrieving of address information from interfaces. +@item Classfull and CIDR output. +@item Multiple address and netmask input and output formats (dotted quad, hex, +number of bits). +@item Output of broadcast address, network class, Cisco wildcard, +hosts/range, network range. +@item The ability to split a network based on a smaller netmask, now also with +recursive runs on the generated subnets. (also IPv6) +@end itemize +@item IPv6 +@itemize +@item Compressed and expanded input and output addresses. +@item Standard IPv6 network output. +@item v4 in v6 output. +@item Reverse DNS address generation. +@end itemize +@end itemize\n") + (license license:bsd-3))) + (define-public alive (package (name "alive") -- 2.15.1