From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54941) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhP-0007iL-97 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhO-0000CC-3T for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:07 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36924) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhN-0000Bm-Vw for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:06 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhN-0008F6-WF for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:06 -0500 Subject: [bug#39416] [PATCH 03/34] gnu: Add package r-xmisc Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:55:55 +0100 Message-Id: <20200204135626.28261-3-ldb@leibniz-psychology.org> In-Reply-To: <20200204135626.28261-1-ldb@leibniz-psychology.org> References: <20200204135626.28261-1-ldb@leibniz-psychology.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 39416@debbugs.gnu.org Cc: Lars-Dominik Braun * gnu/packages/cran.scm (r-xmisc): New variable. --- gnu/packages/cran.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8c1e719143..9ab1d4ac84 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19320,3 +19320,25 @@ including inference and basic methods. Some alternative algorithms to estimate forecasts including exponential smoothing via state space models and automatic ARIMA modelling.") (license license:gpl3))) + +(define-public r-xmisc + (package + (name "r-xmisc") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "Xmisc" version)) + (sha256 + (base32 + "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1")))) + (properties `((upstream-name . "Xmisc"))) + (build-system r-build-system) + (home-page + "http://cran.r-project.org/package=Xmisc") + (synopsis + "Xiaobei's miscellaneous classes and functions") + (description + "This is Xiaobei's miscellaneous classes and functions useful when +developing R packages, particularly for OOP using R Reference Class.") + (license license:gpl2+))) -- 2.20.1