From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53906) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fntC1-0006FK-Fn for guix-patches@gnu.org; Thu, 09 Aug 2018 18:14:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fntBy-0004QY-Pv for guix-patches@gnu.org; Thu, 09 Aug 2018 18:14:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:41185) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fntBy-0004QQ-L1 for guix-patches@gnu.org; Thu, 09 Aug 2018 18:14:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fntBy-0002DF-C2 for guix-patches@gnu.org; Thu, 09 Aug 2018 18:14:02 -0400 Subject: [bug#32411] [PATCH] Update r-ggplot2 to 3.0.0 Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53647) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fntAq-0004rs-B3 for guix-patches@gnu.org; Thu, 09 Aug 2018 18:12:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fntAn-0003c5-Jw for guix-patches@gnu.org; Thu, 09 Aug 2018 18:12:52 -0400 Received: from mail-qk0-x244.google.com ([2607:f8b0:400d:c09::244]:40554) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fntAn-0003ay-BS for guix-patches@gnu.org; Thu, 09 Aug 2018 18:12:49 -0400 Received: by mail-qk0-x244.google.com with SMTP id c126-v6so5149837qkd.7 for ; Thu, 09 Aug 2018 15:12:49 -0700 (PDT) Received: from guixvm (cpe-70-114-192-208.austin.res.rr.com. [70.114.192.208]) by smtp.gmail.com with ESMTPSA id o18-v6sm3862912qtm.84.2018.08.09.15.12.46 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 09 Aug 2018 15:12:47 -0700 (PDT) From: Alex Branham Date: Thu, 09 Aug 2018 17:12:13 -0500 Message-ID: <87pnyr6vgi.fsf@guixvm> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 32411@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi all - This is my first patch. It's just updating the version, sha sums, and adding a few new dependencies. Let me know if I've done something wrong. Thanks, Alex ----- >From 8f021a4b9a19a4ab777ef114ff7b251614ce9a8a Mon Sep 17 00:00:00 2001 From: Alex Branham Date: Thu, 9 Aug 2018 17:01:40 -0500 Subject: [PATCH] gnu: r-ggplot2: Update to 3.0.0 * gnu/packages/statistics.scm (r-ggplot2): Update to 3.0.0 --- gnu/packages/statistics.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index d8c1e6df3..602b2bfe8 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1061,13 +1061,13 @@ legends.") (define-public r-ggplot2 (package (name "r-ggplot2") - (version "2.2.1") + (version "3.0.0") (source (origin (method url-fetch) (uri (cran-uri "ggplot2" version)) (sha256 - (base32 "0543782ddv2hp6s0l702mnxfg8n7a6qlbm8bm55x22hnqgz8kg2z")))) + (base32 "0kb977hizsvk3b1k3zr717q78bpmbabhl8cj9a3w717nkq1zas67")))) (build-system r-build-system) (propagated-inputs `(("r-digest" ,r-digest) @@ -1075,11 +1075,15 @@ legends.") ("r-plyr" ,r-plyr) ("r-lazyeval" ,r-lazyeval) ("r-mass" ,r-mass) + ("r-mgcv" ,r-mgcv) ("r-tibble" ,r-tibble) ("r-reshape2" ,r-reshape2) + ("r-rlang" ,r-rlang) ("r-scales" ,r-scales) - ("r-svglite" ,r-svglite))) ; Needed for 'ggsave' - (home-page "http://ggplot2.org") + ("r-svglite" ,r-svglite) ; Needed for 'ggsave' + ("r-viridislite" ,r-viridislite) + ("r-withr" ,r-withr))) + (home-page "http://ggplot2.tidyverse.org") (synopsis "An implementation of the grammar of graphics") (description "Ggplot2 is an implementation of the grammar of graphics in R. It -- 2.18.0 --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-r-ggplot2-Update-to-3.0.0.patch >From 8f021a4b9a19a4ab777ef114ff7b251614ce9a8a Mon Sep 17 00:00:00 2001 From: Alex Branham Date: Thu, 9 Aug 2018 17:01:40 -0500 Subject: [PATCH] gnu: r-ggplot2: Update to 3.0.0 * gnu/packages/statistics.scm (r-ggplot2): Update to 3.0.0 --- gnu/packages/statistics.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index d8c1e6df3..602b2bfe8 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1061,13 +1061,13 @@ legends.") (define-public r-ggplot2 (package (name "r-ggplot2") - (version "2.2.1") + (version "3.0.0") (source (origin (method url-fetch) (uri (cran-uri "ggplot2" version)) (sha256 - (base32 "0543782ddv2hp6s0l702mnxfg8n7a6qlbm8bm55x22hnqgz8kg2z")))) + (base32 "0kb977hizsvk3b1k3zr717q78bpmbabhl8cj9a3w717nkq1zas67")))) (build-system r-build-system) (propagated-inputs `(("r-digest" ,r-digest) @@ -1075,11 +1075,15 @@ legends.") ("r-plyr" ,r-plyr) ("r-lazyeval" ,r-lazyeval) ("r-mass" ,r-mass) + ("r-mgcv" ,r-mgcv) ("r-tibble" ,r-tibble) ("r-reshape2" ,r-reshape2) + ("r-rlang" ,r-rlang) ("r-scales" ,r-scales) - ("r-svglite" ,r-svglite))) ; Needed for 'ggsave' - (home-page "http://ggplot2.org") + ("r-svglite" ,r-svglite) ; Needed for 'ggsave' + ("r-viridislite" ,r-viridislite) + ("r-withr" ,r-withr))) + (home-page "http://ggplot2.tidyverse.org") (synopsis "An implementation of the grammar of graphics") (description "Ggplot2 is an implementation of the grammar of graphics in R. It -- 2.18.0 --=-=-=--