From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43300) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fvK7i-0002jT-9X for guix-patches@gnu.org; Thu, 30 Aug 2018 06:24:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fvK7V-0004t6-OH for guix-patches@gnu.org; Thu, 30 Aug 2018 06:24:14 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:32930) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fvK7N-0004qm-TP for guix-patches@gnu.org; Thu, 30 Aug 2018 06:24:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fvK7N-0005g7-Or for guix-patches@gnu.org; Thu, 30 Aug 2018 06:24:01 -0400 Subject: [bug#32585] [PATCH] gnu: Add r-svgui. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42738) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fvK6Z-0002V4-4q for guix-patches@gnu.org; Thu, 30 Aug 2018 06:23:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fvK0a-0002f3-MP for guix-patches@gnu.org; Thu, 30 Aug 2018 06:17:05 -0400 Received: from sinope02.bbbm.mdc-berlin.de ([141.80.25.24]:36184) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fvK0W-0002cp-7e for guix-patches@gnu.org; Thu, 30 Aug 2018 06:16:59 -0400 Received: from localhost (localhost [127.0.0.1]) by sinope02.bbbm.mdc-berlin.de (Postfix) with ESMTP id 7AEA412CA753 for ; Thu, 30 Aug 2018 12:16:53 +0200 (CEST) Received: from sinope02.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (sinope02.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10En4znMDvOB for ; Thu, 30 Aug 2018 12:16:48 +0200 (CEST) Received: from SW-IT-P-CAS3.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by sinope02.bbbm.mdc-berlin.de (Postfix) with ESMTPS for ; Thu, 30 Aug 2018 12:16:48 +0200 (CEST) From: pimi Date: Thu, 30 Aug 2018 12:16:32 +0200 Message-ID: <20180830101632.9950-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain 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: 32585@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-svgui): New variable --- gnu/packages/cran.scm | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 016d1b1e4..e6fb6b8f7 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -41,7 +41,9 @@ #:use-module (gnu packages python) #:use-module (gnu packages statistics) #:use-module (gnu packages tls) - #:use-module (gnu packages web)) + #:use-module (gnu packages web) + #:use-module (gnu packages gtk) + #:use-module (gnu packages gnome)) (define-public r-tidyverse (package @@ -4988,3 +4990,25 @@ maximum cycle number. The @code{r-abcoptim} implements the Artificial bee colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}. This version is a work-in-progress and is written in R code.") (license license:expat))) + +(define-public r-svgui + (package + (name "r-svgui") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "svGUI" version)) + (sha256 + (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc")))) + (properties `((upstream-name . "svGUI"))) + (build-system r-build-system) + (home-page "https://github.com/SciViews/svGUI/") + (synopsis "Functions for managing GUI client in R") + (description + "The SciViews @code{svGUI} package eases the management of Graphical User Interfaces +(GUI) in R. It is independent from any particular GUI widgets (Tk, Gtk2, +native, ...). It centralizes info about GUI elements currently used, and it +dispatches GUI calls to the particular toolkits in use in function of the +context (is R run at the terminal, within a Tk application, a HTML page?).") + (license license:gpl2))) -- 2.17.1