Skip to content

Commit

Permalink
textproc/py-sphinx-inline-tabs: Update to 2022.1.2b11
Browse files Browse the repository at this point in the history
  • Loading branch information
sunpoet committed Feb 28, 2022
1 parent f28db96 commit 9c7ef50
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 14 deletions.
7 changes: 5 additions & 2 deletions textproc/py-sphinx-inline-tabs/Makefile
@@ -1,7 +1,7 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>

PORTNAME= sphinx-inline-tabs
PORTVERSION= 2021.8.17b10
PORTVERSION= 2022.1.2b11
CATEGORIES= textproc python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
Expand All @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE

RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=3,1:textproc/py-sphinx@${PY_FLAVOR}

USES= python:3.6+
USES= python:3.7+
USE_PYTHON= autoplist concurrent distutils

NO_ARCH= yes
Expand All @@ -26,4 +26,7 @@ NO_ARCH= yes
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}typing-extensions>=0:devel/py-typing-extensions@${PY_FLAVOR}
.endif

post-patch:
@${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|' ${FILESDIR}/setup.py > ${WRKSRC}/setup.py

.include <bsd.port.post.mk>
6 changes: 3 additions & 3 deletions textproc/py-sphinx-inline-tabs/distinfo
@@ -1,3 +1,3 @@
TIMESTAMP = 1632664376
SHA256 (sphinx_inline_tabs-2021.8.17b10.tar.gz) = 6e37b4aa5f2baa8d946d7da95b87775f70023d8d0719c77c414fc168ff22c636
SIZE (sphinx_inline_tabs-2021.8.17b10.tar.gz) = 42848
TIMESTAMP = 1643971134
SHA256 (sphinx_inline_tabs-2022.1.2b11.tar.gz) = afb9142772ec05ccb07f05d8181b518188fc55631b26ee803c694e812b3fdd73
SIZE (sphinx_inline_tabs-2022.1.2b11.tar.gz) = 42520
9 changes: 0 additions & 9 deletions textproc/py-sphinx-inline-tabs/files/patch-setup.py

This file was deleted.

34 changes: 34 additions & 0 deletions textproc/py-sphinx-inline-tabs/files/setup.py
@@ -0,0 +1,34 @@
#!/usr/bin/env python
# setup.py generated by flit for tools that don't yet use PEP 517

from distutils.core import setup

packages = \
['sphinx_inline_tabs']

package_data = \
{'': ['*'], 'sphinx_inline_tabs': ['static/*']}

package_dir = \
{'': 'src'}

install_requires = \
['sphinx >= 3']

extras_require = \
{'doc': ['myst-parser', 'furo'],
'test': ['pytest', 'pytest-cov', 'pytest-xdist']}

setup(name='sphinx_inline_tabs',
version='%%PORTVERSION%%',
description='Add inline tabbed content to your Sphinx documentation.',
author='Pradyun Gedam',
author_email='mail@pradyunsg.me',
url='https://github.com/pradyunsg/sphinx-inline-tabs',
packages=packages,
package_data=package_data,
package_dir=package_dir,
install_requires=install_requires,
extras_require=extras_require,
python_requires='>=3.7',
)

0 comments on commit 9c7ef50

Please sign in to comment.