Index: head/textproc/py-sphinxcontrib-adadomain/Makefile =================================================================== --- head/textproc/py-sphinxcontrib-adadomain/Makefile (revision 533054) +++ head/textproc/py-sphinxcontrib-adadomain/Makefile (revision 533055) @@ -1,22 +1,23 @@ # Created by: John Marino # $FreeBSD$ PORTNAME= sphinxcontrib-adadomain PORTVERSION= 0.2 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sphinx Adadomain Extension LICENSE= BSD2CLAUSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.0:textproc/py-sphinx@${PY_FLAVOR} USES= python USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes .include Index: head/textproc/py-sphinxcontrib-adadomain/files/patch-setup.py =================================================================== --- head/textproc/py-sphinxcontrib-adadomain/files/patch-setup.py (nonexistent) +++ head/textproc/py-sphinxcontrib-adadomain/files/patch-setup.py (revision 533055) @@ -0,0 +1,13 @@ +Obtained from: https://bitbucket.org/tkoskine/sphinxcontrib-adadomain/commits/0adaafc635791511af623027bd2cf57375763a27 + +--- setup.py.orig 2018-01-19 18:39:44 UTC ++++ setup.py +@@ -12,7 +12,7 @@ This package contains the adadomain Sphinx extension. + + ''' + +-requires = ['Sphinx>=1.0'] ++requires = ['Sphinx>=1.4'] + + with open(path.join(here, 'README.rst'), encoding='utf-8') as f: + long_description = f.read() Property changes on: head/textproc/py-sphinxcontrib-adadomain/files/patch-setup.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/textproc/py-sphinxcontrib-adadomain/files/patch-sphinxcontrib-adadomain.py =================================================================== --- head/textproc/py-sphinxcontrib-adadomain/files/patch-sphinxcontrib-adadomain.py (nonexistent) +++ head/textproc/py-sphinxcontrib-adadomain/files/patch-sphinxcontrib-adadomain.py (revision 533055) @@ -0,0 +1,44 @@ +Obtained from: https://bitbucket.org/tkoskine/sphinxcontrib-adadomain/commits/0adaafc635791511af623027bd2cf57375763a27 + +--- sphinxcontrib/adadomain.py.orig 2018-01-19 17:53:22 UTC ++++ sphinxcontrib/adadomain.py +@@ -18,13 +18,13 @@ import string + + from docutils import nodes + from docutils.parsers.rst import directives ++from docutils.parsers.rst import Directive + +-from sphinx import addnodes ++from sphinx import addnodes, version_info + from sphinx.roles import XRefRole + from sphinx.locale import l_, _ + from sphinx.directives import ObjectDescription + from sphinx.domains import Domain, ObjType, Index +-from sphinx.util.compat import Directive + from sphinx.util.nodes import make_refnode + from sphinx.util.docfields import Field, TypedField + +@@ -269,12 +269,12 @@ class AdaObject(ObjectDescription): + + indextext = self._get_index_text(name) + if indextext: +- self.indexnode['entries'].append(('single', indextext, name, name)) ++ self.indexnode['entries'].append(('single', indextext, name, name, None)) + + plain_name = pieces[-1] + indextext = self._get_index_text(plain_name) + if indextext: +- self.indexnode['entries'].append(('single', indextext, name, plain_name)) ++ self.indexnode['entries'].append(('single', indextext, name, plain_name, None)) + + + class AdaModule(Directive): +@@ -316,7 +316,7 @@ class AdaModule(Directive): + if not noindex: + indextext = _('%s (module)') % modname + inode = addnodes.index(entries=[('single', indextext, +- 'module-' + modname, modname)]) ++ 'module-' + modname, modname, None)]) + ret.append(inode) + return ret + Property changes on: head/textproc/py-sphinxcontrib-adadomain/files/patch-sphinxcontrib-adadomain.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property