unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#40101] [PATCH 0/3] gnu: Add r-remoter and its dependencies
@ 2020-03-17 12:54 Todor Kondić via Guix-patches via
  2020-03-17 13:06 ` [bug#40101] [PATCH 1/3] gnu: Add r-argon2 Todor Kondić via Guix-patches via
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Todor Kondić via Guix-patches via @ 2020-03-17 12:54 UTC (permalink / raw)
  To: 40101

Lets make life difficult by submitting git patches using a web interface.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#40101] [PATCH 1/3] gnu: Add r-argon2
  2020-03-17 12:54 [bug#40101] [PATCH 0/3] gnu: Add r-remoter and its dependencies Todor Kondić via Guix-patches via
@ 2020-03-17 13:06 ` Todor Kondić via Guix-patches via
  2020-03-17 13:08 ` [bug#40101] [PATCH 2/3] gnu: Add r-getpass Todor Kondić via Guix-patches via
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Todor Kondić via Guix-patches via @ 2020-03-17 13:06 UTC (permalink / raw)
  To: 40101@debbugs.gnu.org

* gnu/packages/statistics.scm (r-argon2): New variable.
---
 gnu/packages/statistics.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 6616780081..7e3b62c035 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -5824,3 +5824,23 @@ Java package that provides routines for various statistical distributions.")
 Emacs.  It is designed to support editing of scripts and interaction with
 various statistical analysis programs such as R, Julia, and JAGS.")
     (license license:gpl2+)))
+
+(define-public r-argon2
+  (package
+    (name "r-argon2")
+    (version "0.2-0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "argon2" version))
+       (sha256
+        (base32
+         "0kqn06rpb39jlzizjlnc5c44mfic8llrshxn7ljgmyj35lbqwxqh"))))
+    (properties `((upstream-name . "argon2")))
+    (build-system r-build-system)
+    (home-page
+     "https://github.com/wrathematics/argon2")
+    (synopsis "Secure Password Hashing based on Argon2 Algorithm")
+    (description
+     "Utilities for secure password hashing via the argon2 algorithm.")
+    (license license:bsd-2)))
--
2.25.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#40101] [PATCH 2/3] gnu: Add r-getpass
  2020-03-17 12:54 [bug#40101] [PATCH 0/3] gnu: Add r-remoter and its dependencies Todor Kondić via Guix-patches via
  2020-03-17 13:06 ` [bug#40101] [PATCH 1/3] gnu: Add r-argon2 Todor Kondić via Guix-patches via
@ 2020-03-17 13:08 ` Todor Kondić via Guix-patches via
  2020-03-17 13:09 ` [bug#40101] [PATCH 3/3] gnu: Add r-remoter Todor Kondić via Guix-patches via
  2020-03-25 19:48 ` bug#40101: [PATCH 0/3] gnu: Add r-remoter and its dependencies Leo Famulari
  3 siblings, 0 replies; 5+ messages in thread
From: Todor Kondić via Guix-patches via @ 2020-03-17 13:08 UTC (permalink / raw)
  To: 40101@debbugs.gnu.org

* gnu/packages/statistics.scm (r-getpass) : New variable.
---
 gnu/packages/statistics.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 7e3b62c035..f161e6092e 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -5844,3 +5844,28 @@ various statistical analysis programs such as R, Julia, and JAGS.")
     (description
      "Utilities for secure password hashing via the argon2 algorithm.")
     (license license:bsd-2)))
+
+(define-public r-getpass
+  (package
+    (name "r-getpass")
+    (version "0.2-2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "getPass" version))
+        (sha256
+          (base32
+            "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc"))))
+    (properties `((upstream-name . "getPass")))
+    (build-system r-build-system)
+    (propagated-inputs
+      `(("r-rstudioapi" ,r-rstudioapi)))
+    (home-page
+      "https://github.com/wrathematics/getPass")
+    (synopsis "Masked User Input")
+    (description
+      "This package provides a micro-package for reading \"passwords\", i.e.
+reading user input with masking, so that the input is not displayed as it is
+typed.  Currently, RStudio, the command line (every OS), and any platform
+where tcltk is present are supported.")
+    (license license:bsd-2)))
--
2.25.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#40101] [PATCH 3/3] gnu: Add r-remoter
  2020-03-17 12:54 [bug#40101] [PATCH 0/3] gnu: Add r-remoter and its dependencies Todor Kondić via Guix-patches via
  2020-03-17 13:06 ` [bug#40101] [PATCH 1/3] gnu: Add r-argon2 Todor Kondić via Guix-patches via
  2020-03-17 13:08 ` [bug#40101] [PATCH 2/3] gnu: Add r-getpass Todor Kondić via Guix-patches via
@ 2020-03-17 13:09 ` Todor Kondić via Guix-patches via
  2020-03-25 19:48 ` bug#40101: [PATCH 0/3] gnu: Add r-remoter and its dependencies Leo Famulari
  3 siblings, 0 replies; 5+ messages in thread
From: Todor Kondić via Guix-patches via @ 2020-03-17 13:09 UTC (permalink / raw)
  To: 40101@debbugs.gnu.org

* gnu/packages/statistics.scm (r-remoter): New variable.
---
 gnu/packages/statistics.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index f161e6092e..216703e899 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -5869,3 +5869,30 @@ reading user input with masking, so that the input is not displayed as it is
 typed.  Currently, RStudio, the command line (every OS), and any platform
 where tcltk is present are supported.")
     (license license:bsd-2)))
+
+(define-public r-remoter
+  (package
+    (name "r-remoter")
+    (version "0.4-0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "remoter" version))
+        (sha256
+          (base32
+            "1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
+    (properties `((upstream-name . "remoter")))
+    (build-system r-build-system)
+    (propagated-inputs
+      `(("r-argon2" ,r-argon2)
+        ("r-getpass" ,r-getpass)
+        ("r-pbdzmq" ,r-pbdzmq)
+        ("r-png" ,r-png)))
+    (home-page "https://github.com/RBigData/remoter")
+    (synopsis
+      "Control a Remote R Session from a Local One")
+    (description
+      "This package provides a set of utilities for client/server computing
+with R, controlling a remote R session (the server) from a local one (the
+client).")
+    (license license:bsd-2)))
--
2.25.0






‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Tuesday, 17 March 2020 13:56, <help-debbugs@gnu.org> wrote:

> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 40101@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
>
> --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
>
> 40101: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=40101
> GNU Bug Tracking System
> Contact help-debbugs@gnu.org with problems

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#40101: [PATCH 0/3] gnu: Add r-remoter and its dependencies
  2020-03-17 12:54 [bug#40101] [PATCH 0/3] gnu: Add r-remoter and its dependencies Todor Kondić via Guix-patches via
                   ` (2 preceding siblings ...)
  2020-03-17 13:09 ` [bug#40101] [PATCH 3/3] gnu: Add r-remoter Todor Kondić via Guix-patches via
@ 2020-03-25 19:48 ` Leo Famulari
  3 siblings, 0 replies; 5+ messages in thread
From: Leo Famulari @ 2020-03-25 19:48 UTC (permalink / raw)
  To: Todor Kondić; +Cc: 40101-done

On Tue, Mar 17, 2020 at 12:54:56PM +0000, Todor Kondić via Guix-patches via wrote:
> Lets make life difficult by submitting git patches using a web interface.

Thanks! The only issue I noticed is that the email address used in the
patch was <guix-patches@gnu.org>.

I fixed that, moved the packages to 'gnu/packages/cran.scm' (they aren't
related to statistics AFAICT), added a copyright line for you, and
pushed as 0c549393b9b9194f47fbee2bdfa1caf8f4e32b12.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-03-25 19:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-17 12:54 [bug#40101] [PATCH 0/3] gnu: Add r-remoter and its dependencies Todor Kondić via Guix-patches via
2020-03-17 13:06 ` [bug#40101] [PATCH 1/3] gnu: Add r-argon2 Todor Kondić via Guix-patches via
2020-03-17 13:08 ` [bug#40101] [PATCH 2/3] gnu: Add r-getpass Todor Kondić via Guix-patches via
2020-03-17 13:09 ` [bug#40101] [PATCH 3/3] gnu: Add r-remoter Todor Kondić via Guix-patches via
2020-03-25 19:48 ` bug#40101: [PATCH 0/3] gnu: Add r-remoter and its dependencies Leo Famulari

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).