git: 131d292276f5 - main - textproc/py-tinycss2: Update to 1.2.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 30 Dec 2022 09:12:53 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=131d292276f5bb09e930df2b132eb3bcdf39fd1a
commit 131d292276f5bb09e930df2b132eb3bcdf39fd1a
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-12-30 08:46:01 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-12-30 09:05:10 +0000
textproc/py-tinycss2: Update to 1.2.1
Changes: https://github.com/Kozea/tinycss2/releases
---
textproc/py-tinycss2/Makefile | 13 +++++--------
textproc/py-tinycss2/distinfo | 6 +++---
textproc/py-tinycss2/files/setup.py | 10 ++++------
3 files changed, 12 insertions(+), 17 deletions(-)
diff --git a/textproc/py-tinycss2/Makefile b/textproc/py-tinycss2/Makefile
index d37218fc62f1..673310141e1b 100644
--- a/textproc/py-tinycss2/Makefile
+++ b/textproc/py-tinycss2/Makefile
@@ -1,5 +1,5 @@
PORTNAME= tinycss2
-PORTVERSION= 1.1.1
+PORTVERSION= 1.2.1
CATEGORIES= textproc python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -12,14 +12,11 @@ LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}webencodings>=0.4:converters/py-webencodings@${PY_FLAVOR}
-TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pytest-isort>=0:devel/py-pytest-isort@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pytest-flake8>=0:devel/py-pytest-flake8@${PY_FLAVOR}
+TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flake8>=0:devel/py-flake8@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}isort>=0:devel/py-isort@${PY_FLAVOR}
-USES= python:3.6+
-USE_PYTHON= autoplist concurrent distutils
+USES= python:3.7+
+USE_PYTHON= autoplist concurrent distutils pytest
NO_ARCH= yes
diff --git a/textproc/py-tinycss2/distinfo b/textproc/py-tinycss2/distinfo
index b216b283d71e..a19fc6ce85ad 100644
--- a/textproc/py-tinycss2/distinfo
+++ b/textproc/py-tinycss2/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1638556628
-SHA256 (tinycss2-1.1.1.tar.gz) = b2e44dd8883c360c35dd0d1b5aad0b610e5156c2cb3b33434634e539ead9d8bf
-SIZE (tinycss2-1.1.1.tar.gz) = 65703
+TIMESTAMP = 1669057973
+SHA256 (tinycss2-1.2.1.tar.gz) = 8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627
+SIZE (tinycss2-1.2.1.tar.gz) = 65957
diff --git a/textproc/py-tinycss2/files/setup.py b/textproc/py-tinycss2/files/setup.py
index 14a3fdb87b45..bbba394b8d36 100644
--- a/textproc/py-tinycss2/files/setup.py
+++ b/textproc/py-tinycss2/files/setup.py
@@ -14,11 +14,9 @@ install_requires = \
extras_require = \
{'doc': ['sphinx', 'sphinx_rtd_theme'],
- 'test': ['pytest',
- 'pytest-cov',
- 'pytest-flake8',
- 'pytest-isort',
- 'coverage[toml]']}
+ 'test': ['flake8',
+ 'isort',
+ 'pytest']}
setup(name='tinycss2',
version='%%PORTVERSION%%',
@@ -30,5 +28,5 @@ setup(name='tinycss2',
package_data=package_data,
install_requires=install_requires,
extras_require=extras_require,
- python_requires='>=3.6',
+ python_requires='>=3.7',
)