GNU bug report logs - #30784
[8/8] Add r-tidyverse (r-tidyverse)

Previous Next

Package: guix-patches;

Reported by: Charlie Ritter <chewzerita <at> posteo.net>

Date: Mon, 12 Mar 2018 16:37:05 UTC

Severity: normal

Tags: patch

Merged with 30740, 30777, 30778, 30779, 30780, 30781, 30782, 30783

Done: Marius Bakke <mbakke <at> fastmail.com>

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 30784 in the body.
You can then email your comments to 30784 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#30784; Package guix-patches. (Mon, 12 Mar 2018 16:37:07 GMT) Full text and rfc822 format available.

Acknowledgement sent to Charlie Ritter <chewzerita <at> posteo.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 12 Mar 2018 16:37:07 GMT) Full text and rfc822 format available.

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

From: Charlie Ritter <chewzerita <at> posteo.net>
To: guix-patches <at> gnu.org
Subject: [8/8] Add r-tidyverse (r-tidyverse)
Date: Mon, 12 Mar 2018 11:14:27 -0400
[0001-gnu-Add-r-tidyverse.patch (text/x-patch, inline)]
From 7bcfcd5a4be18cc34c442308c89f9555431c10a5 Mon Sep 17 00:00:00 2001
From: Charlie Ritter <chewzerita <at> posteo.net>
Date: Mon, 12 Mar 2018 11:07:22 -0400
Subject: [PATCH] gnu: Add r-tidyverse.

* gnu/packages/cran.scm (r-tidyverse): New variable.
---
 gnu/packages/cran.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 2a8bcc215..f2af917a8 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -34,6 +34,54 @@
   #:use-module (gnu packages statistics)
   #:use-module (gnu packages web))
 
+(define-public r-tidyverse
+  (package
+    (name "r-tidyverse")
+    (version "1.2.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "tidyverse" version))
+       (sha256
+        (base32
+         "0yy3fkjksgcn6wkbgsb0pbnmsyqs4m01mziqafhig578nixs4rxd"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-broom" ,r-broom)
+       ("r-cli" ,r-cli)
+       ("r-crayon" ,r-crayon)
+       ("r-dbplyr" ,r-dbplyr)
+       ("r-dplyr" ,r-dplyr)
+       ("r-forcats" ,r-forcats)
+       ("r-ggplot2" ,r-ggplot2)
+       ("r-haven" ,r-haven)
+       ("r-hms" ,r-hms)
+       ("r-httr" ,r-httr)
+       ("r-jsonlite" ,r-jsonlite)
+       ("r-lubridate" ,r-lubridate)
+       ("r-magrittr" ,r-magrittr)
+       ("r-modelr" ,r-modelr)
+       ("r-purrr" ,r-purrr)
+       ("r-readr" ,r-readr)
+       ("r-readxl" ,r-readxl)
+       ("r-reprex" ,r-reprex)
+       ("r-rlang" ,r-rlang)
+       ("r-rstudioapi" ,r-rstudioapi)
+       ("r-rvest" ,r-rvest)
+       ("r-stringr" ,r-stringr)
+       ("r-tibble" ,r-tibble)
+       ("r-tidyr" ,r-tidyr)
+       ("r-xml2" ,r-xml2)))
+    (home-page "http://tidyverse.tidyverse.org")
+    (synopsis
+     "Easily Install and Load the 'Tidyverse'")
+    (description
+     "The 'tidyverse' is a set of packages that work in harmony because they
+share common data representations and 'API' design.  This package is designed
+to make it easy to install and load multiple 'tidyverse' packages in a single
+step.  Learn more about the 'tidyverse' at <https://tidyverse.org>.")
+    (license license:gpl3)))
+
 (define-public r-rvest
   (package
     (name "r-rvest")
-- 
2.16.1

[signature.asc (application/pgp-signature, inline)]

Merged 30740 30777 30778 30779 30780 30781 30782 30783 30784. Request was from Christopher Baines <mail <at> cbaines.net> to control <at> debbugs.gnu.org. (Mon, 19 Mar 2018 07:57:02 GMT) Full text and rfc822 format available.

Added tag(s) patch. Request was from Christopher Baines <mail <at> cbaines.net> to control <at> debbugs.gnu.org. (Mon, 19 Mar 2018 08:23:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#30784; Package guix-patches. (Mon, 26 Mar 2018 19:46:01 GMT) Full text and rfc822 format available.

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

From: Marius Bakke <mbakke <at> fastmail.com>
To: Charlie Ritter <chewzerita <at> posteo.net>, 30784 <at> debbugs.gnu.org
Subject: Re: [bug#30784] [8/8] Add r-tidyverse (r-tidyverse)
Date: Mon, 26 Mar 2018 21:45:52 +0200
[Message part 1 (text/plain, inline)]
Charlie Ritter <chewzerita <at> posteo.net> writes:

> From 7bcfcd5a4be18cc34c442308c89f9555431c10a5 Mon Sep 17 00:00:00 2001
> From: Charlie Ritter <chewzerita <at> posteo.net>
> Date: Mon, 12 Mar 2018 11:07:22 -0400
> Subject: [PATCH] gnu: Add r-tidyverse.
>
> * gnu/packages/cran.scm (r-tidyverse): New variable.

Thanks!  I changed the home page to use HTTPS and again tweaked the
description to make 'guix lint' happy.

In the future, please make sure `guix lint` passes, and don't be afraid
to make synopses and descriptions more informative than what upstream
provides.

For patch series like these, please only send the first email to
'guix-patches <at> gnu.org', and the subsequent ones to NNNNN <at> debbugs.gnu.org
so that we don't get N different bug reports.

Now some homework: can you see if it's possible to remove the bundled
copy of libxsl from "r-readxl" and use the package from Guix instead?

Pushed the whole series as 96e22362..786d3de2.
[signature.asc (application/pgp-signature, inline)]

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

This bug report was last modified 7 years and 61 days ago.

Previous Next


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