From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Woodcroft Subject: [PATCH 1/2] gnu: Add r-bit. Date: Tue, 13 Dec 2016 20:00:07 +1000 Message-ID: <20161213100008.19640-1-donttrustben@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47898) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cGju5-0001W5-S7 for guix-devel@gnu.org; Tue, 13 Dec 2016 05:01:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cGju2-00025X-PU for guix-devel@gnu.org; Tue, 13 Dec 2016 05:01:45 -0500 Received: from mail-pg0-f65.google.com ([74.125.83.65]:33537) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cGju2-0001v5-KH for guix-devel@gnu.org; Tue, 13 Dec 2016 05:01:42 -0500 Received: by mail-pg0-f65.google.com with SMTP id 3so4057928pgd.0 for ; Tue, 13 Dec 2016 02:01:19 -0800 (PST) Received: from localhost.localdomain ([103.25.181.216]) by smtp.googlemail.com with ESMTPSA id 131sm79579876pfx.92.2016.12.13.02.00.15 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 13 Dec 2016 02:00:17 -0800 (PST) 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: guix-devel@gnu.org * gnu/packages/statistics.scm (r-bit): New variable. --- gnu/packages/statistics.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 36f1889ef..ea9ef0e39 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -205,6 +205,29 @@ publication-quality data plots. A large amount of 3rd-party packages are available, greatly increasing its breadth and scope.") (license license:gpl3+))) +(define-public r-bit + (package + (name "r-bit") + (version "1.1-12") + (source + (origin + (method url-fetch) + (uri (cran-uri "bit" version)) + (sha256 + (base32 + "0a6ig6nnjzq80r2ll4hc74za3xwzbzig6wlyb4dby0knzf3iqa6f")))) + (build-system r-build-system) + (home-page "http://ff.r-forge.r-project.org") + (synopsis "A class for vectors of 1-bit booleans") + (description + "This package provides bitmapped vectors of booleans (no NAs), coercion +from and to logicals, integers and integer subscripts; fast boolean operators +and fast summary statistics. With 'bit' vectors true binary booleans +{FALSE,TRUE} can be stored with 1 bit only, on a 32 bit architecture this +means factor of 32 less RAM and a factor of 32 more speed on boolean +operations.") + (license license:gpl2))) + (define-public r-colorspace (package (name "r-colorspace") -- 2.11.0