unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#49792] [PATCH] gnu: Add r-ggh4x.
@ 2021-07-31 12:48 Wiktor Żelazny
  2021-08-18 14:03 ` zimoun
  0 siblings, 1 reply; 5+ messages in thread
From: Wiktor Żelazny @ 2021-07-31 12:48 UTC (permalink / raw)
  To: 49792

* gnu/packages/cran.scm (r-ggh4x): New variable.
---
 gnu/packages/cran.scm | 32 +++++++++++++++++++++++++++++++-
 1 file changed, 31 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 25a6f71ca4..b2b86995ca 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -17,7 +17,7 @@
 ;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
 ;;; Copyright © 2018, 2019 Brett Gilio <brettg@gnu.org>
 ;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
-;;; Copyright © 2019, 2020 Wiktor Żelazny <wzelazny@vurv.cz>
+;;; Copyright © 2019, 2020, 2021 Wiktor Żelazny <wzelazny@vurv.cz>
 ;;; Copyright © 2019 Arne Babenhauserheide <arne_bab@web.de>
 ;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2020 Todor Kondić <tk.code@protonmail.com>
@@ -29958,3 +29958,33 @@ applications.  The OpenCPU server runs either as a single-user development
 server within the interactive R session, or as a multi-user stack based on
 Apache2.")
     (license license:asl2.0)))
+
+(define-public r-ggh4x
+  (package
+    (name "r-ggh4x")
+    (version "0.1.2.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "ggh4x" version))
+       (sha256
+        (base32
+         "1a3aiyc1shw5hlf3m90dc528dsx4li6mqrh9g5i7s353yck226mj"))))
+    (properties `((upstream-name . "ggh4x")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-ggplot2" ,r-ggplot2)
+       ("r-gtable" ,r-gtable)
+       ("r-rlang" ,r-rlang)
+       ("r-scales" ,r-scales)
+       ("r-vctrs" ,r-vctrs)))
+    (native-inputs
+     `(("r-knitr" ,r-knitr)))
+    (home-page "https://github.com/teunbrand/ggh4x")
+    (synopsis "Hacks for ggplot2")
+    (description "This package provides a @code{ggplot2} extension that does a
+variety of little helpful things.  The package extends @code{ggplot2} facets
+through customisation, by setting individual scales per panel, resizing panels
+and providing nested facets.  Also allows multiple colour and fill scales per
+plot.  Also hosts a smaller collection of stats, geoms and axis guides.")
+    (license license:expat)))

base-commit: 9f48f71398d7e95c496ecca6936e431811d3a1de
-- 
2.32.0





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

* [bug#49792] [PATCH] gnu: Add r-ggh4x.
  2021-07-31 12:48 [bug#49792] [PATCH] gnu: Add r-ggh4x Wiktor Żelazny
@ 2021-08-18 14:03 ` zimoun
  2021-09-02 16:43   ` Wiktor Żelazny
  0 siblings, 1 reply; 5+ messages in thread
From: zimoun @ 2021-08-18 14:03 UTC (permalink / raw)
  To: Wiktor Żelazny, 49792; +Cc: Ricardo Wurmus

Hi,

CC Ricardo in case they miss it. ;-)

On Sat, 31 Jul 2021 at 14:48, Wiktor Żelazny <wz@freeshell.de> wrote:

> +    (synopsis "Hacks for ggplot2")

Instead of “Hacks”, I would write “Extension”.

> +    (description "This package provides a @code{ggplot2} extension that does a
> +variety of little helpful things.  The package extends @code{ggplot2} facets
> +through customisation, by setting individual scales per panel, resizing panels
> +and providing nested facets.  Also allows multiple colour and fill scales per
> +plot.  Also hosts a smaller collection of stats, geoms and axis guides.")

I would write something like that:

    (description "This package is a @code{ggplot2} extension.  It
    provides some utility functions that do not entirely fit within the
    grammar of graphics concept.  The package extends @code{ggpplots}
    facets through customisation, by setting individual scales per
    panel, resizing panels and providing nested facets.  It also allows
    multiple colour, fill scales per plot and hosts a smaller collection
    of stats, geoms and axis guides.")


All the best,
simon




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

* [bug#49792] [PATCH] gnu: Add r-ggh4x.
  2021-08-18 14:03 ` zimoun
@ 2021-09-02 16:43   ` Wiktor Żelazny
  2021-09-17 18:17     ` [bug#49792] [PATCH v2] " Wiktor Żelazny
  0 siblings, 1 reply; 5+ messages in thread
From: Wiktor Żelazny @ 2021-09-02 16:43 UTC (permalink / raw)
  To: zimoun; +Cc: Ricardo Wurmus, 49792

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

On Wed, Aug 18, 2021 at 04:03:39PM +0200, zimoun wrote:

> Instead of “Hacks”, I would write “Extension”.

> I would write something like that:

Hi simon,

Thanks for taking a look. I will resubmit the definition modified
according to your suggestions sometime later this month. It’s currently
holidays time for me.

Bye,

WŻ

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 963 bytes --]

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

* [bug#49792] [PATCH v2] gnu: Add r-ggh4x.
  2021-09-02 16:43   ` Wiktor Żelazny
@ 2021-09-17 18:17     ` Wiktor Żelazny
  2021-09-18 21:41       ` bug#49792: " Ricardo Wurmus
  0 siblings, 1 reply; 5+ messages in thread
From: Wiktor Żelazny @ 2021-09-17 18:17 UTC (permalink / raw)
  To: 49792; +Cc: rekado, zimon.toutoune

* gnu/packages/cran.scm (r-ggh4x): New variable.
---
 gnu/packages/cran.scm | 33 ++++++++++++++++++++++++++++++++-
 1 file changed, 32 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index f80256c901..7c25d17fbf 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -17,7 +17,7 @@
 ;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
 ;;; Copyright © 2018, 2019 Brett Gilio <brettg@gnu.org>
 ;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
-;;; Copyright © 2019, 2020 Wiktor Żelazny <wzelazny@vurv.cz>
+;;; Copyright © 2019, 2020, 2021 Wiktor Żelazny <wzelazny@vurv.cz>
 ;;; Copyright © 2019 Arne Babenhauserheide <arne_bab@web.de>
 ;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2020 Todor Kondić <tk.code@protonmail.com>
@@ -31842,3 +31842,34 @@ deleting and uploading forecast data, and downloading scores.")
 regression and obtain Bayesian inference of the model via the Markov Chain
 Monte Carlo approach implemented in JAGS.")
     (license license:gpl3+)))
+
+(define-public r-ggh4x
+  (package
+    (name "r-ggh4x")
+    (version "0.2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "ggh4x" version))
+       (sha256
+        (base32
+         "0gv9ckkdqbcjknzsv8h3955wnikawdfypr279v74hvwyq86af29r"))))
+    (properties `((upstream-name . "ggh4x")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-ggplot2" ,r-ggplot2)
+       ("r-gtable" ,r-gtable)
+       ("r-rlang" ,r-rlang)
+       ("r-scales" ,r-scales)
+       ("r-vctrs" ,r-vctrs)))
+    (native-inputs
+     `(("r-knitr" ,r-knitr)))
+    (home-page "https://github.com/teunbrand/ggh4x")
+    (synopsis "Extension for ggplot2")
+    (description "This package is a @code{ggplot2} extension.  It provides some
+utility functions that do not entirely fit within the grammar of graphics
+concept.  The package extends @code{ggpplots} facets through customisation, by
+setting individual scales per panel, resizing panels and providing nested
+facets.  It also allows multiple colour, fill scales per plot and hosts a
+smaller collection of stats, geoms and axis guides.")
+    (license license:expat)))

base-commit: 05605998b2f70403c360ad5e27d942cef2b9502c
-- 
2.33.0





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

* bug#49792: [PATCH v2] gnu: Add r-ggh4x.
  2021-09-17 18:17     ` [bug#49792] [PATCH v2] " Wiktor Żelazny
@ 2021-09-18 21:41       ` Ricardo Wurmus
  0 siblings, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2021-09-18 21:41 UTC (permalink / raw)
  To: Wiktor Żelazny; +Cc: 49792-done, zimon.toutoune


Wiktor Żelazny <wz@freeshell.de> writes:

> * gnu/packages/cran.scm (r-ggh4x): New variable.

Thank you.  I applied it with commit 
337b7f5a13b8fd8b5ee320fd5a850ede1ad63b6d.

-- 
Ricardo




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

end of thread, other threads:[~2021-09-18 21:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-31 12:48 [bug#49792] [PATCH] gnu: Add r-ggh4x Wiktor Żelazny
2021-08-18 14:03 ` zimoun
2021-09-02 16:43   ` Wiktor Żelazny
2021-09-17 18:17     ` [bug#49792] [PATCH v2] " Wiktor Żelazny
2021-09-18 21:41       ` bug#49792: " Ricardo Wurmus

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