GNU bug report logs - #32585
[PATCH] gnu: Add r-svgui.

Previous Next

Package: guix-patches;

Reported by: pimi <madalinionel.patrascu <at> mdc-berlin.de>

Date: Thu, 30 Aug 2018 10:24:01 UTC

Severity: normal

Tags: patch

Done: Ricardo Wurmus <ricardo.wurmus <at> mdc-berlin.de>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 32585 in the body.
You can then email your comments to 32585 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#32585; Package guix-patches. (Thu, 30 Aug 2018 10:24:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to pimi <madalinionel.patrascu <at> mdc-berlin.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 30 Aug 2018 10:24:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: pimi <madalinionel.patrascu <at> mdc-berlin.de>
To: <guix-patches <at> gnu.org>
Cc: pimi <madalinionel.patrascu <at> mdc-berlin.de>
Subject: [PATCH] gnu: Add r-svgui.
Date: Thu, 30 Aug 2018 12:16:32 +0200
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





Information forwarded to guix-patches <at> gnu.org:
bug#32585; Package guix-patches. (Mon, 03 Sep 2018 15:39:01 GMT) Full text and rfc822 format available.

Message #8 received at 32585 <at> debbugs.gnu.org (full text, mbox):

From: Ricardo Wurmus <ricardo.wurmus <at> mdc-berlin.de>
To: <32585 <at> debbugs.gnu.org>
Cc: pimi <madalinionel.patrasc <at> mdc-berlin.de>
Subject: [PATCH] gnu: Add r-svgui.
Date: Mon, 3 Sep 2018 17:38:20 +0200
Hi,

> 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))

It looks like these changes belong to another patch as the package added
by this patch doesn’t have any inputs.

> +(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")

“clients"

> +    (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?).")

Please reflow the description — the first line looks unusually long.

> +    (license license:gpl2)))

This is correct.

Could you please send an updated patch?

Thanks!

--
Ricardo




Information forwarded to guix-patches <at> gnu.org:
bug#32585; Package guix-patches. (Wed, 05 Sep 2018 10:53:02 GMT) Full text and rfc822 format available.

Message #11 received at 32585 <at> debbugs.gnu.org (full text, mbox):

From: pimi <madalinionel.patrascu <at> mdc-berlin.de>
To: <32585 <at> debbugs.gnu.org>
Cc: pimi <madalinionel.patrascu <at> mdc-berlin.de>
Subject: [PATCH] gnu: Add r-svgui.
Date: Wed, 5 Sep 2018 12:52:25 +0200
gnu/packages/cran.scm (r-svgui): New variable.
---
 gnu/packages/cran.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 016d1b1e4..105e81fb4 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -33,6 +33,8 @@
   #:use-module (guix build-system r)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages gcc)
+  #:use-module (gnu packages gnome)
+  #:use-module (gnu packages gtk)
   #:use-module (gnu packages machine-learning)
   #:use-module (gnu packages maths)
   #:use-module (gnu packages mpi)
@@ -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 clients 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





Reply sent to Ricardo Wurmus <ricardo.wurmus <at> mdc-berlin.de>:
You have taken responsibility. (Tue, 11 Sep 2018 15:45:02 GMT) Full text and rfc822 format available.

Notification sent to pimi <madalinionel.patrascu <at> mdc-berlin.de>:
bug acknowledged by developer. (Tue, 11 Sep 2018 15:45:02 GMT) Full text and rfc822 format available.

Message #16 received at 32585-done <at> debbugs.gnu.org (full text, mbox):

From: Ricardo Wurmus <ricardo.wurmus <at> mdc-berlin.de>
To: <32585-done <at> debbugs.gnu.org>
Subject: [PATCH] gnu: Add r-svgui.
Date: Tue, 11 Sep 2018 17:44:21 +0200
Thank you.  Pushed to the “master” branch with commit 01af264dc.

--
Ricardo




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 10 Oct 2018 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 6 years and 258 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.