all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#55224] [PATCH]Add r-treemap
@ 2022-05-02 16:21 federico lopez
  2022-05-02 17:23 ` Maxime Devos
  2022-12-29 21:56 ` bug#55224: " Ricardo Wurmus
  0 siblings, 2 replies; 4+ messages in thread
From: federico lopez @ 2022-05-02 16:21 UTC (permalink / raw)
  To: 55224

[-- Attachment #1: Type: text/plain, Size: 52 bytes --]

Hi, I made a patch to add r-treemap

Federico Lopez

[-- Attachment #2: 0001-gnu-Add-r-treemap.patch --]
[-- Type: text/x-patch, Size: 746 bytes --]

From 845c54a34b750fd8be06b02697ac226c0417d7fb Mon Sep 17 00:00:00 2001
From: son0p <fede2001@gmail.com>
Date: Mon, 2 May 2022 10:58:03 -0500
Subject: [PATCH] gnu Add r-treemap

---
 gnu/packages/cran.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 10bb8606d3..72a5fed3ed 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -5145,7 +5145,7 @@ (define-public r-treemap
     (description
      "This package provides a treemap is a space-filling visualization of hierarchical
 structures.  This package offers great flexibility to draw treemaps.")
-    (license license:gpl3)))
+    (license license:gpl3+)))
 
 (define-public r-magic
   (package
-- 
2.36.0


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

* [bug#55224] [PATCH]Add r-treemap
  2022-05-02 16:21 [bug#55224] [PATCH]Add r-treemap federico lopez
@ 2022-05-02 17:23 ` Maxime Devos
  2022-05-02 18:08   ` federico lopez
  2022-12-29 21:56 ` bug#55224: " Ricardo Wurmus
  1 sibling, 1 reply; 4+ messages in thread
From: Maxime Devos @ 2022-05-02 17:23 UTC (permalink / raw)
  To: federico lopez, 55224

[-- Attachment #1: Type: text/plain, Size: 443 bytes --]

federico lopez schreef op ma 02-05-2022 om 16:21 [+0000]:
> @@ -5145,7 +5145,7 @@ (define-public r-treemap
>      (description
>       "This package provides a treemap is a space-filling
> visualization of hierarchical
>  structures.  This package offers great flexibility to draw
> treemaps.")
> -    (license license:gpl3)))
> +    (license license:gpl3+)))

Where's the rest of the patch?

Greetings,
Maxime.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

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

* [bug#55224] [PATCH]Add r-treemap
  2022-05-02 17:23 ` Maxime Devos
@ 2022-05-02 18:08   ` federico lopez
  0 siblings, 0 replies; 4+ messages in thread
From: federico lopez @ 2022-05-02 18:08 UTC (permalink / raw)
  To: Maxime Devos; +Cc: 55224

[-- Attachment #1: Type: text/plain, Size: 589 bytes --]

Hi Maxime,
Sorry, I am sending the complete patch.

Greetings,
Federico

On Mon, May 2, 2022 at 5:24 PM Maxime Devos <maximedevos@telenet.be> wrote:
>
> federico lopez schreef op ma 02-05-2022 om 16:21 [+0000]:
> > @@ -5145,7 +5145,7 @@ (define-public r-treemap
> >      (description
> >       "This package provides a treemap is a space-filling
> > visualization of hierarchical
> >  structures.  This package offers great flexibility to draw
> > treemaps.")
> > -    (license license:gpl3)))
> > +    (license license:gpl3+)))
>
> Where's the rest of the patch?
>
> Greetings,
> Maxime.

[-- Attachment #2: 0001-gnu-Add-r-treemap.patch --]
[-- Type: text/x-patch, Size: 1821 bytes --]

From ecc631b825466e8d3b2ac881cfb068ba8ebda0f7 Mon Sep 17 00:00:00 2001
From: son0p <fede2001@gmail.com>
Date: Mon, 2 May 2022 13:02:00 -0500
Subject: [PATCH] gnu Add r-treemap

---
 gnu/packages/cran.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 91c54bac9a..72a5fed3ed 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -36,6 +36,7 @@
 ;;; Copyright © 2021 Marcel Schilling <marcel.schilling@uni-luebeck.de>
 ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
 ;;; Copyright © 2022 Navid Afkhami  <navid.afkhami@mdc-berlin.de>
+;;; Copyright © 2022 Federico Lopez <fede2001@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -5118,6 +5119,34 @@ (define-public r-timedate
 calendar objects.")
     (license license:gpl2+)))
 
+(define-public r-treemap
+  (package
+    (name "r-treemap")
+    (version "2.4-3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "treemap" version))
+       (sha256
+        (base32 "1fg8gygw38x7msn32barx2irvcv8flm6wqvipnbj1qkh9w89y3q4"))))
+    (properties `((upstream-name . "treemap")))
+    (build-system r-build-system)
+    (propagated-inputs
+     (list r-colorspace
+           r-data-table
+           r-ggplot2
+           r-gridbase
+           r-igraph
+           r-rcolorbrewer
+           r-shiny))
+    (native-inputs (list r-knitr))
+    (home-page "https://cran.r-project.org/package=treemap")
+    (synopsis "Treemap Visualization")
+    (description
+     "This package provides a treemap is a space-filling visualization of hierarchical
+structures.  This package offers great flexibility to draw treemaps.")
+    (license license:gpl3+)))
+
 (define-public r-magic
   (package
     (name "r-magic")
-- 
2.36.0


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

* bug#55224: [PATCH]Add r-treemap
  2022-05-02 16:21 [bug#55224] [PATCH]Add r-treemap federico lopez
  2022-05-02 17:23 ` Maxime Devos
@ 2022-12-29 21:56 ` Ricardo Wurmus
  1 sibling, 0 replies; 4+ messages in thread
From: Ricardo Wurmus @ 2022-12-29 21:56 UTC (permalink / raw)
  To: 55224-done

Thank you for the patch and your patience!  I applied it.

-- 
Ricardo




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

end of thread, other threads:[~2022-12-29 21:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-02 16:21 [bug#55224] [PATCH]Add r-treemap federico lopez
2022-05-02 17:23 ` Maxime Devos
2022-05-02 18:08   ` federico lopez
2022-12-29 21:56 ` bug#55224: " Ricardo Wurmus

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.