From owner-svn-ports-all@freebsd.org Fri Sep 6 10:02:16 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 07597EECAB; Fri, 6 Sep 2019 10:02:16 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46PtQH6Qv3z47Sk; Fri, 6 Sep 2019 10:02:15 +0000 (UTC) (envelope-from koobs@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 A74661B207; Fri, 6 Sep 2019 10:02:15 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x86A2FUn021851; Fri, 6 Sep 2019 10:02:15 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x86A2ElO021847; Fri, 6 Sep 2019 10:02:14 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201909061002.x86A2ElO021847@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 6 Sep 2019 10:02:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r511289 - in head/textproc: . py-jsx-lexer X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: in head/textproc: . py-jsx-lexer X-SVN-Commit-Revision: 511289 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Sep 2019 10:02:16 -0000 Author: koobs Date: Fri Sep 6 10:02:14 2019 New Revision: 511289 URL: https://svnweb.freebsd.org/changeset/ports/511289 Log: [NEW] textproc/py-jsx-lexer: JSX lexer for Pygments A JSX lexer for Pygments. Supports: * Sphinx * mkdocs WWW: https://github.com/fcurella/jsx-lexer Added: head/textproc/py-jsx-lexer/ head/textproc/py-jsx-lexer/Makefile (contents, props changed) head/textproc/py-jsx-lexer/distinfo (contents, props changed) head/textproc/py-jsx-lexer/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Fri Sep 6 09:59:48 2019 (r511288) +++ head/textproc/Makefile Fri Sep 6 10:02:14 2019 (r511289) @@ -1283,6 +1283,7 @@ SUBDIR += py-hypua2jamo SUBDIR += py-jaxml SUBDIR += py-jsonslicer + SUBDIR += py-jsx-lexer SUBDIR += py-jtextfsm SUBDIR += py-junit-xml SUBDIR += py-langdetect Added: head/textproc/py-jsx-lexer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-jsx-lexer/Makefile Fri Sep 6 10:02:14 2019 (r511289) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= jsx-lexer +PORTVERSION= 0.0.7 +DISTVERSIONPREFIX=v +CATEGORIES= textproc python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= JSX lexer for Pygments + +LICENSE= MIT +#LICENSE_FILE= Not packaged yet in sdist + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments>=2.1:textproc/py-pygments@${PY_FLAVOR} + +USES= python +USE_GITHUB= yes # tests not in sdist +USE_PYTHON= autoplist distutils + +GH_ACCOUNT= fcurella + +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + +.include Added: head/textproc/py-jsx-lexer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-jsx-lexer/distinfo Fri Sep 6 10:02:14 2019 (r511289) @@ -0,0 +1,3 @@ +TIMESTAMP = 1567760207 +SHA256 (fcurella-jsx-lexer-v0.0.7_GH0.tar.gz) = 0ee40ef9d210056b6e2d834bd57d5cf90f338b1ced2222f5b30a1b5ba71acd21 +SIZE (fcurella-jsx-lexer-v0.0.7_GH0.tar.gz) = 5437 Added: head/textproc/py-jsx-lexer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-jsx-lexer/pkg-descr Fri Sep 6 10:02:14 2019 (r511289) @@ -0,0 +1,6 @@ +A JSX lexer for Pygments. Supports: + + * Sphinx + * mkdocs + +WWW: https://github.com/fcurella/jsx-lexer