Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Jun 2020 18:15:57 +0000 (UTC)
From:      "Danilo G. Baio" <dbaio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r538114 - in head/textproc: . py-docrepr
Message-ID:  <202006061815.056IFvjW079484@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dbaio
Date: Sat Jun  6 18:15:57 2020
New Revision: 538114
URL: https://svnweb.freebsd.org/changeset/ports/538114

Log:
  Add textproc/py-docrepr: Generate rich representations for docstrings
  
  docrepr renders Python docstrings in HTML. It is based on the sphinxify module
  developed by Tim Dumol for the Sage Notebook and the utils.help module
  developed for the Spyder IDE.
  
  WWW: https://github.com/spyder-ide/docrepr/

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Sat Jun  6 17:41:16 2020	(r538113)
+++ head/textproc/Makefile	Sat Jun  6 18:15:57 2020	(r538114)
@@ -1227,6 +1227,7 @@
     SUBDIR += py-custom_inherit
     SUBDIR += py-dbfread
     SUBDIR += py-diff-match-patch
+    SUBDIR += py-docrepr
     SUBDIR += py-docutils
     SUBDIR += py-docx2txt
     SUBDIR += py-dominate

Added: head/textproc/py-docrepr/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-docrepr/Makefile	Sat Jun  6 18:15:57 2020	(r538114)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	docrepr
+DISTVERSION=	0.1.1
+CATEGORIES=	textproc
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dbaio@FreeBSD.org
+COMMENT=	Generate rich representations for docstrings
+
+LICENSE=	BSD3CLAUSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}docutils>=0:textproc/py-docutils@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py-Jinja2@${PY_FLAVOR} \
+		${PY_SPHINX}
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/textproc/py-docrepr/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-docrepr/distinfo	Sat Jun  6 18:15:57 2020	(r538114)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1591466666
+SHA256 (docrepr-0.1.1.tar.gz) = d7b27b0105d19267be74ff8048f213b8968ff366ded45357d112ef02e109f715
+SIZE (docrepr-0.1.1.tar.gz) = 144136

Added: head/textproc/py-docrepr/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-docrepr/pkg-descr	Sat Jun  6 18:15:57 2020	(r538114)
@@ -0,0 +1,5 @@
+docrepr renders Python docstrings in HTML. It is based on the sphinxify module
+developed by Tim Dumol for the Sage Notebook and the utils.help module
+developed for the Spyder IDE.
+
+WWW: https://github.com/spyder-ide/docrepr/



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