svn commit: r542830 - in head/textproc: . R-cran-commonmark

TAKATSU Tomonari tota at FreeBSD.org
Wed Jul 22 03:53:53 UTC 2020


Author: tota
Date: Wed Jul 22 03:53:51 2020
New Revision: 542830
URL: https://svnweb.freebsd.org/changeset/ports/542830

Log:
  - Add new port: textproc/R-cran-commonmark
  
    The CommonMark specification defines a rationalized version of
    markdown syntax. This package uses the 'cmark' reference implementation
    for converting markdown text into various formats including html,
    latex and groff man. In addition it exposes the markdown parse tree
    in xml format. Also includes opt-in support for GFM extensions
    including tables, autolinks, and strikethrough text.
  
    WWW: https://cran.r-project.org/web/packages/commonmark/

Added:
  head/textproc/R-cran-commonmark/
  head/textproc/R-cran-commonmark/Makefile   (contents, props changed)
  head/textproc/R-cran-commonmark/distinfo   (contents, props changed)
  head/textproc/R-cran-commonmark/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Wed Jul 22 03:17:20 2020	(r542829)
+++ head/textproc/Makefile	Wed Jul 22 03:53:51 2020	(r542830)
@@ -5,6 +5,7 @@
 
     SUBDIR += 2bsd-diff
     SUBDIR += CLDR
+    SUBDIR += R-cran-commonmark
     SUBDIR += R-cran-DT
     SUBDIR += R-cran-R2HTML
     SUBDIR += R-cran-XML

Added: head/textproc/R-cran-commonmark/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/R-cran-commonmark/Makefile	Wed Jul 22 03:53:51 2020	(r542830)
@@ -0,0 +1,15 @@
+# $FreeBSD$
+
+PORTNAME=	commonmark
+DISTVERSION=	1.7
+CATEGORIES=	textproc
+DISTNAME=	${PORTNAME}_${DISTVERSION}
+
+MAINTAINER=	tota at FreeBSD.org
+COMMENT=	High Performance CommonMark and Github Markdown Rendering in R
+
+LICENSE=	BSD2CLAUSE
+
+USES=		cran:auto-plist,compiles
+
+.include <bsd.port.mk>

Added: head/textproc/R-cran-commonmark/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/R-cran-commonmark/distinfo	Wed Jul 22 03:53:51 2020	(r542830)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1595324231
+SHA256 (commonmark_1.7.tar.gz) = d14a767a3ea9778d6165f44f980dd257423ca6043926e3cd8f664f7171f89108
+SIZE (commonmark_1.7.tar.gz) = 134002

Added: head/textproc/R-cran-commonmark/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/R-cran-commonmark/pkg-descr	Wed Jul 22 03:53:51 2020	(r542830)
@@ -0,0 +1,8 @@
+The CommonMark specification defines a rationalized version of
+markdown syntax. This package uses the 'cmark' reference implementation
+for converting markdown text into various formats including html,
+latex and groff man. In addition it exposes the markdown parse tree
+in xml format. Also includes opt-in support for GFM extensions
+including tables, autolinks, and strikethrough text.
+
+WWW: https://cran.r-project.org/web/packages/commonmark/


More information about the svn-ports-all mailing list