Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Sep 2015 13:37:34 +0000 (UTC)
From:      Kris Moore <kmoore@FreeBSD.org>
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
Message-ID:  <201509121337.t8CDbYiH060524@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <dru@FreeBSD.org>
+# $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 <bsd.port.mk>

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



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