From owner-svn-ports-head@freebsd.org Tue Jul 24 20:23:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 213CB10553A3; Tue, 24 Jul 2018 20:23:21 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CAC4F7E8BB; Tue, 24 Jul 2018 20:23:20 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ABDE3107ED; Tue, 24 Jul 2018 20:23:20 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6OKNKjN054111; Tue, 24 Jul 2018 20:23:20 GMT (envelope-from arved@FreeBSD.org) Received: (from arved@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6OKNJ13054107; Tue, 24 Jul 2018 20:23:19 GMT (envelope-from arved@FreeBSD.org) Message-Id: <201807242023.w6OKNJ13054107@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arved set sender to arved@FreeBSD.org using -f From: Tilman Keskinoz Date: Tue, 24 Jul 2018 20:23:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475274 - in head/textproc: . py-markdown-math X-SVN-Group: ports-head X-SVN-Commit-Author: arved X-SVN-Commit-Paths: in head/textproc: . py-markdown-math X-SVN-Commit-Revision: 475274 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jul 2018 20:23:21 -0000 Author: arved Date: Tue Jul 24 20:23:19 2018 New Revision: 475274 URL: https://svnweb.freebsd.org/changeset/ports/475274 Log: Add python-markdown-math Math Extension for textproc/py-markdown Added: head/textproc/py-markdown-math/ head/textproc/py-markdown-math/Makefile (contents, props changed) head/textproc/py-markdown-math/distinfo (contents, props changed) head/textproc/py-markdown-math/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Jul 24 20:22:15 2018 (r475273) +++ head/textproc/Makefile Tue Jul 24 20:23:19 2018 (r475274) @@ -1320,6 +1320,7 @@ SUBDIR += py-m2r SUBDIR += py-mako SUBDIR += py-markdown + SUBDIR += py-markdown-math SUBDIR += py-markdown2 SUBDIR += py-mistune SUBDIR += py-mkdocs Added: head/textproc/py-markdown-math/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-markdown-math/Makefile Tue Jul 24 20:23:19 2018 (r475274) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= markdown-math +PORTVERSION= 0.6 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= python-${PORTNAME}-${PORTVERSION} + +MAINTAINER= arved@FreeBSD.org +COMMENT= This extension adds math formulas support to Python-Markdown + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}markdown>=2.0.3:textproc/py-markdown@${PY_FLAVOR} + +USES= python:3.2+ +USE_PYTHON= distutils autoplist + +.include Added: head/textproc/py-markdown-math/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-markdown-math/distinfo Tue Jul 24 20:23:19 2018 (r475274) @@ -0,0 +1,3 @@ +TIMESTAMP = 1532463389 +SHA256 (python-markdown-math-0.6.tar.gz) = c68d8cb9695cb7b435484403dc18941d1bad0ff148e4166d9417046a0d5d3022 +SIZE (python-markdown-math-0.6.tar.gz) = 6406 Added: head/textproc/py-markdown-math/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-markdown-math/pkg-descr Tue Jul 24 20:23:19 2018 (r475274) @@ -0,0 +1,3 @@ +This extension adds math formulas support to Python-Markdown + +WWW: https://pypi.org/project/python-markdown-math/