all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Mădălin Ionel Patrașcu" <madalinionel.patrascu@mdc-berlin.de>
To: <61838@debbugs.gnu.org>
Cc: rekado@elephly.net
Subject: [bug#61838] [PATCH 01/13] gnu: Add r-simplermarkdown.
Date: Mon, 27 Feb 2023 11:28:38 +0100	[thread overview]
Message-ID: <20230227102850.18782-1-madalinionel.patrascu@mdc-berlin.de> (raw)
In-Reply-To: <669c9a4b05f74824b87f3bb57fd23c98@mdc-berlin.de>

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index c80e98134a..f63112c3be 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -9652,6 +9652,28 @@ (define-public r-signal
 It also includes interpolation functions.")
     (license license:gpl2)))
 
+(define-public r-simplermarkdown
+  (package
+    (name "r-simplermarkdown")
+    (version "0.0.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "simplermarkdown" version))
+       (sha256
+        (base32 "069pgx5m22rdqa21lyn5zqm9ym3g7w6z1d2wjwms8b1f2cp6266g"))))
+    (properties `((upstream-name . "simplermarkdown")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-rjson))
+    (home-page "https://github.com/djvanderlaan/simplermarkdown")
+    (synopsis "Simple engine for generating reports using R")
+    (description
+     "This package runs R-code present in a pandoc markdown file and includes the
+resulting output in the resulting markdown file.  This file can then be converted
+into any of the output formats supported by pandoc.  The package can also be used
+as an engine for writing package vignettes.")
+    (license license:gpl3+)))
+
 (define-public r-gsubfn
   (package
     (name "r-gsubfn")

base-commit: 5d10644371abd54d0edcd638691113f0a92de743
-- 
2.39.1





  reply	other threads:[~2023-02-27 10:31 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-27 10:24 [bug#61838] [PAtCH] gnu: Add r-simplermarkdown, r-rcppspdlog, r-n2r, r-sccore, r-leidenalg, r-drat, r-dendsort, r-pagoda2, r-conospanel, r-p2data, r-pma, r-rmumps and r-conos MadalinIonel.Patrascu
2023-02-27 10:28 ` Mădălin Ionel Patrașcu [this message]
2023-02-27 10:28   ` [bug#61838] [PATCH 02/13] gnu: Add r-rcppspdlog Mădălin Ionel Patrașcu
2023-02-27 19:12     ` Ricardo Wurmus
2023-02-27 10:28   ` [bug#61838] [PATCH 03/13] gnu: Add r-n2r Mădălin Ionel Patrașcu
2023-02-27 19:13     ` Ricardo Wurmus
2023-02-27 10:28   ` [bug#61838] [PATCH 04/13] gnu: Add r-sccore Mădălin Ionel Patrașcu
2023-02-27 19:14     ` Ricardo Wurmus
2023-02-27 10:28   ` [bug#61838] [PATCH 05/13] gnu: Add r-leidenalg Mădălin Ionel Patrașcu
2023-02-27 10:28   ` [bug#61838] [PATCH 06/13] gnu: Add r-drat Mădălin Ionel Patrașcu
2023-02-27 10:28   ` [bug#61838] [PATCH 07/13] gnu: Add r-dendsort Mădălin Ionel Patrașcu
2023-02-27 10:28   ` [bug#61838] [PATCH 08/13] gnu: Add r-pagoda2 Mădălin Ionel Patrașcu
2023-02-27 10:28   ` [bug#61838] [PATCH 09/13] gnu: Add r-conos Mădălin Ionel Patrașcu
2023-02-27 10:28   ` [bug#61838] [PATCH 10/13] gnu: Add r-conospanel Mădălin Ionel Patrașcu
2023-02-27 10:28   ` [bug#61838] [PATCH 11/13] gnu: Add r-p2data Mădălin Ionel Patrașcu
2023-02-27 10:28   ` [bug#61838] [PATCH 12/13] gnu: Add r-pma Mădălin Ionel Patrașcu
2023-02-27 10:28   ` [bug#61838] [PATCH 13/13] gnu: Add r-rmumps Mădălin Ionel Patrașcu
2023-02-27 19:10   ` [bug#61838] [PATCH 01/13] gnu: Add r-simplermarkdown Ricardo Wurmus
2023-03-01 13:20   ` bug#61838: " Ricardo Wurmus
2023-02-27 20:42 ` [bug#61838] [PATCH v2 " Mădălin Ionel Patrașcu
2023-03-01 11:07   ` Ricardo Wurmus
2023-02-27 21:17 ` [bug#61838] [PATCH v2 02/13] gnu: Add r-rcppspdlog Mădălin Ionel Patrașcu
2023-02-27 23:37 ` [bug#61838] [PATCH v2 03/13] gnu: Add r-n2r Mădălin Ionel Patrașcu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230227102850.18782-1-madalinionel.patrascu@mdc-berlin.de \
    --to=madalinionel.patrascu@mdc-berlin.de \
    --cc=61838@debbugs.gnu.org \
    --cc=rekado@elephly.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.