Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Jul 2022 13:54:05 GMT
From:      Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: f0f1b262fb67 - main - textproc/py-sphinx-design: Update to 0.2.0
Message-ID:  <202207111354.26BDs5B1013452@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=f0f1b262fb67438f9cb72d982d51bd2b96e2a6ac

commit f0f1b262fb67438f9cb72d982d51bd2b96e2a6ac
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-07-11 13:50:39 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-07-11 13:50:39 +0000

    textproc/py-sphinx-design: Update to 0.2.0
    
    Changes:        https://github.com/executablebooks/sphinx-design/releases
---
 textproc/py-sphinx-design/Makefile       |  9 +++++---
 textproc/py-sphinx-design/distinfo       |  6 ++---
 textproc/py-sphinx-design/files/setup.py | 38 ++++++++++++++++++++++++++++++++
 3 files changed, 47 insertions(+), 6 deletions(-)

diff --git a/textproc/py-sphinx-design/Makefile b/textproc/py-sphinx-design/Makefile
index a8e86709d39b..97cacb5fc88c 100644
--- a/textproc/py-sphinx-design/Makefile
+++ b/textproc/py-sphinx-design/Makefile
@@ -1,7 +1,7 @@
 # Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
 
 PORTNAME=	sphinx-design
-PORTVERSION=	0.0.13
+PORTVERSION=	0.2.0
 CATEGORIES=	textproc python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -13,11 +13,14 @@ COMMENT=	Sphinx extension for designing beautiful, view size responsive web comp
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sphinx>=3,1<5,1:textproc/py-sphinx@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sphinx>=4,1<6,1:textproc/py-sphinx@${PY_FLAVOR}
 
-USES=		python:3.6+
+USES=		python:3.7+
 USE_PYTHON=	autoplist concurrent distutils
 
 NO_ARCH=	yes
 
+post-patch:
+	@${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|' ${FILESDIR}/setup.py > ${WRKSRC}/setup.py
+
 .include <bsd.port.mk>
diff --git a/textproc/py-sphinx-design/distinfo b/textproc/py-sphinx-design/distinfo
index 53b963856400..3f39cc3cf30d 100644
--- a/textproc/py-sphinx-design/distinfo
+++ b/textproc/py-sphinx-design/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1650228652
-SHA256 (sphinx_design-0.0.13.tar.gz) = c719d02bea29a31f143a294d632a5f435b9652ce1f80930e887bc066c3e94bef
-SIZE (sphinx_design-0.0.13.tar.gz) = 88533
+TIMESTAMP = 1657292522
+SHA256 (sphinx_design-0.2.0.tar.gz) = b148a5258061a46ee826d57ea0729260f29b4e9131d2a681545e0d4f3c0f19ee
+SIZE (sphinx_design-0.2.0.tar.gz) = 1899722
diff --git a/textproc/py-sphinx-design/files/setup.py b/textproc/py-sphinx-design/files/setup.py
new file mode 100644
index 000000000000..baed625e996f
--- /dev/null
+++ b/textproc/py-sphinx-design/files/setup.py
@@ -0,0 +1,38 @@
+#!/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_design', 'sphinx_design.compiled']
+
+package_data = \
+{'': ['*']}
+
+install_requires = \
+['sphinx>=4,<6']
+
+extras_require = \
+{'code_style': ['pre-commit~=2.12'],
+ 'rtd': ['myst-parser~=0.18.0'],
+ 'testing': ['myst-parser~=0.18.0',
+             'pytest~=7.1',
+             'pytest-cov',
+             'pytest-regressions'],
+ 'theme_furo': ['furo>=2022.06.04,<2022.07'],
+ 'theme_pydata': ['pydata-sphinx-theme~=0.9.0'],
+ 'theme_rtd': ['sphinx-rtd-theme~=1.0'],
+ 'theme_sbt': ['sphinx-book-theme~=0.3.0']}
+
+setup(name='sphinx_design',
+      version='%%PORTVERSION%%',
+      description='A sphinx extension for designing beautiful, view size responsive web components.',
+      author=None,
+      author_email='Chris Sewell <chrisj_sewell@hotmail.com>',
+      url=None,
+      packages=packages,
+      package_data=package_data,
+      install_requires=install_requires,
+      extras_require=extras_require,
+      python_requires='>=3.7',
+     )



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