Date: Sun, 25 Mar 2018 23:46:06 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465550 - in head/textproc: . py-gfm Message-ID: <201803252346.w2PNk6DB087366@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sun Mar 25 23:46:05 2018 New Revision: 465550 URL: https://svnweb.freebsd.org/changeset/ports/465550 Log: New port: textproc/py-gfm: Github-flavored Markdown for the py-markdown module Submitted by: Kai <freebsd_ports@k-worx.org> Added: head/textproc/py-gfm/ head/textproc/py-gfm/Makefile (contents, props changed) head/textproc/py-gfm/distinfo (contents, props changed) head/textproc/py-gfm/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Mar 25 22:06:45 2018 (r465549) +++ head/textproc/Makefile Sun Mar 25 23:46:05 2018 (r465550) @@ -1304,6 +1304,7 @@ SUBDIR += py-feedparser SUBDIR += py-gambit-elasticsearch SUBDIR += py-genshi + SUBDIR += py-gfm SUBDIR += py-guess-language SUBDIR += py-hexdump SUBDIR += py-html2text Added: head/textproc/py-gfm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-gfm/Makefile Sun Mar 25 23:46:05 2018 (r465550) @@ -0,0 +1,35 @@ +# $FreeBSD$ + +PORTNAME= gfm +DISTVERSION= 0.1.3 +CATEGORIES= textproc python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= py-${PORTNAME}-${PORTVERSION} + +MAINTAINER= freebsd_ports@k-worx.org +COMMENT= Github-flavored Markdown for the py-markdown module + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}markdown>0:textproc/py-markdown@${PY_FLAVOR} + +USES= python +USE_GITHUB= yes +GH_ACCOUNT= Zopieux +GH_PROJECT= py-${PORTNAME} +USE_PYTHON= distutils concurrent autoplist +NO_ARCH= yes + +OPTIONS_DEFINE= DOCS + +DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR} +DOCS_VARS= PYDISTUTILS_BUILD_TARGET+=build_sphinx + +PORTDOCS= * + +post-install-DOCS-on: + cd ${WRKSRC}/build/sphinx/html && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} "! -name .buildinfo -and ! -path objects.inv" + +.include <bsd.port.mk> Added: head/textproc/py-gfm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-gfm/distinfo Sun Mar 25 23:46:05 2018 (r465550) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522021092 +SHA256 (py-gfm-0.1.3_GH0.tar.gz) = 5d8cf9d8fbdaf4c9d28a7f00dcfdaa6212cfb2f3f89b15f347ba6a9970902b39 +SIZE (py-gfm-0.1.3_GH0.tar.gz) = 20821 Added: head/textproc/py-gfm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-gfm/pkg-descr Sun Mar 25 23:46:05 2018 (r465550) @@ -0,0 +1,4 @@ +Enables Github-flavored Markdown for the py-markdown module. It aims for +maximal compatibility with GitHub's rendering. + +WWW: https://github.com/Zopieux/py-gfm
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803252346.w2PNk6DB087366>