Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Dec 2020 20:04:23 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r558478 - in head/textproc: . py-markdown-it-py
Message-ID:  <202012192004.0BJK4N2B095266@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Dec 19 20:04:23 2020
New Revision: 558478
URL: https://svnweb.freebsd.org/changeset/ports/558478

Log:
  Add py-markdown-it-py 0.6.0
  
  markdown-it-py is a Python port of markdown-it, and some of its associated
  plugins.
  - Follows the CommonMark spec for baseline parsing
  - Configurable syntax: you can add new rules and even replace existing ones.
  - Pluggable: Adds syntax extensions to extend the parser (see the plugin list).
  - High speed (see our benchmarking tests)
  - Safe by default
  
  WWW: https://github.com/executablebooks/markdown-it-py

Added:
  head/textproc/py-markdown-it-py/
  head/textproc/py-markdown-it-py/Makefile   (contents, props changed)
  head/textproc/py-markdown-it-py/distinfo   (contents, props changed)
  head/textproc/py-markdown-it-py/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Sat Dec 19 20:04:17 2020	(r558477)
+++ head/textproc/Makefile	Sat Dec 19 20:04:23 2020	(r558478)
@@ -1310,6 +1310,7 @@
     SUBDIR += py-m2r
     SUBDIR += py-mako
     SUBDIR += py-markdown
+    SUBDIR += py-markdown-it-py
     SUBDIR += py-markdown-math
     SUBDIR += py-markdown2
     SUBDIR += py-markuppy

Added: head/textproc/py-markdown-it-py/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-markdown-it-py/Makefile	Sat Dec 19 20:04:23 2020	(r558478)
@@ -0,0 +1,24 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	markdown-it-py
+PORTVERSION=	0.6.0
+CATEGORIES=	textproc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Python port of markdown-it
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}attrs>=19<21:devel/py-attrs@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}mdit-py-plugins>=0.2.1<0.3:textproc/py-mdit-py-plugins@${PY_FLAVOR}
+
+USES=		python:3.6+
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/textproc/py-markdown-it-py/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-markdown-it-py/distinfo	Sat Dec 19 20:04:23 2020	(r558478)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1608366078
+SHA256 (markdown-it-py-0.6.0.tar.gz) = 1c1413df39ef7baa55bca755d32c565d72e8b4114dcdd3da65eb468a61886659
+SIZE (markdown-it-py-0.6.0.tar.gz) = 55198

Added: head/textproc/py-markdown-it-py/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-markdown-it-py/pkg-descr	Sat Dec 19 20:04:23 2020	(r558478)
@@ -0,0 +1,9 @@
+markdown-it-py is a Python port of markdown-it, and some of its associated
+plugins.
+- Follows the CommonMark spec for baseline parsing
+- Configurable syntax: you can add new rules and even replace existing ones.
+- Pluggable: Adds syntax extensions to extend the parser (see the plugin list).
+- High speed (see our benchmarking tests)
+- Safe by default
+
+WWW: https://github.com/executablebooks/markdown-it-py



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012192004.0BJK4N2B095266>