From owner-svn-ports-all@freebsd.org Sat Sep 12 13:37:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 93229A02A21; Sat, 12 Sep 2015 13:37:35 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 77D0B1F4F; Sat, 12 Sep 2015 13:37:35 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8CDbZVr060529; Sat, 12 Sep 2015 13:37:35 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8CDbYiH060524; Sat, 12 Sep 2015 13:37:34 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201509121337.t8CDbYiH060524@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Sat, 12 Sep 2015 13:37:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r396746 - in head/textproc: . py-sphinx_wikipedia X-SVN-Group: ports-head 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.20 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: Sat, 12 Sep 2015 13:37:35 -0000 Author: kmoore Date: Sat Sep 12 13:37:33 2015 New Revision: 396746 URL: https://svnweb.freebsd.org/changeset/ports/396746 Log: This is a Sphinx extension for linking to wikipedia articles. WWW: https://github.com/quiver/sphinx-ext-wikipedia Added: head/textproc/py-sphinx_wikipedia/ head/textproc/py-sphinx_wikipedia/Makefile (contents, props changed) head/textproc/py-sphinx_wikipedia/distinfo (contents, props changed) head/textproc/py-sphinx_wikipedia/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Sep 12 13:36:35 2015 (r396745) +++ head/textproc/Makefile Sat Sep 12 13:37:33 2015 (r396746) @@ -1261,6 +1261,7 @@ SUBDIR += py-sphinx-intl SUBDIR += py-sphinx_rtd_theme SUBDIR += py-sphinx_numfig + SUBDIR += py-sphinx_wikipedia SUBDIR += py-sphinxcontrib-adadomain SUBDIR += py-sphinxcontrib-bitbucket SUBDIR += py-sphinxcontrib-httpdomain Added: head/textproc/py-sphinx_wikipedia/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-sphinx_wikipedia/Makefile Sat Sep 12 13:37:33 2015 (r396746) @@ -0,0 +1,29 @@ +# Created by: Dru Lavigne +# $FreeBSD$ + +PORTNAME= sphinx_wikipedia +PORTVERSION= 20150903 +CATEGORIES= textproc +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kris@FreeBSD.org +COMMENT= Sphinx extension which adds role to create links to Wikipedia articles + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.3.1:${PORTSDIR}/textproc/py-sphinx + +USES= python +NO_BUILD= yes +USE_GITHUB= yes +GH_ACCOUNT= quiver +GH_PROJECT= sphinx-ext-wikipedia +GH_TAGNAME= f6b2f6 +PLIST_FILES= ${PYTHON_SITELIBDIR}/sphinx/ext/wikipedia.py + +do-install: + ${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}/sphinx/ext + ${CP} ${WRKSRC}/sphinx-ext/wikipedia.py \ + ${STAGEDIR}${PYTHON_SITELIBDIR}/sphinx/ext/wikipedia.py + +.include Added: head/textproc/py-sphinx_wikipedia/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-sphinx_wikipedia/distinfo Sat Sep 12 13:37:33 2015 (r396746) @@ -0,0 +1,2 @@ +SHA256 (quiver-sphinx-ext-wikipedia-20150903-f6b2f6_GH0.tar.gz) = dff17c721e54e975f2bfaff258a56394c77848172b22d591591b773114e3a342 +SIZE (quiver-sphinx-ext-wikipedia-20150903-f6b2f6_GH0.tar.gz) = 1580 Added: head/textproc/py-sphinx_wikipedia/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-sphinx_wikipedia/pkg-descr Sat Sep 12 13:37:33 2015 (r396746) @@ -0,0 +1,3 @@ +This is a Sphinx extension for linking to wikipedia articles. + +WWW: https://github.com/quiver/sphinx-ext-wikipedia