Sunday, September 01, 2024

spyder 5.5.6 (and related ports)

spyder 5.5.6 was recently released. As usual it requires updating a few
other ports in lock-step.

I plan to commit the updates for all of the below shortly, unless any
objections:

devel/flake8 7.0.0 -> 7.1.0
devel/py-codestyle 2.11.1 -> 2.12.0
devel/py-python-lsp-server 1.11.0 -> 1.12.0
devel/spyder/spyder 5.5.5 -> 5.5.6

I'm also planning to take MAINTAINER for py-codestyle since it's mostly
used by spyder-related ports.

oks are welcome.

Index: devel/flake8/Makefile
===================================================================
RCS file: /cvs/ports/devel/flake8/Makefile,v
diff -u -p -u -r1.35 Makefile
--- devel/flake8/Makefile 6 May 2024 12:22:38 -0000 1.35
+++ devel/flake8/Makefile 1 Sep 2024 15:01:20 -0000
@@ -1,8 +1,7 @@
COMMENT= modular python code checker wrapping pep8 and pyflakes

-MODPY_EGG_VERSION= 7.0.0
+MODPY_EGG_VERSION= 7.1.0
DISTNAME= flake8-${MODPY_EGG_VERSION}
-REVISION= 0

CATEGORIES= devel

@@ -19,7 +18,7 @@ MODULES= lang/python
MODPY_PI= Yes
MODPY_PYBUILD= setuptools

-RUN_DEPENDS= devel/py-codestyle${MODPY_FLAVOR}<2.12.0 \
+RUN_DEPENDS= devel/py-codestyle${MODPY_FLAVOR}<2.13.0 \
devel/py-mccabe${MODPY_FLAVOR}<0.8.0 \
devel/pyflakes${MODPY_FLAVOR}<3.3.0

Index: devel/flake8/distinfo
===================================================================
RCS file: /cvs/ports/devel/flake8/distinfo,v
diff -u -p -u -r1.15 distinfo
--- devel/flake8/distinfo 12 Feb 2024 02:20:17 -0000 1.15
+++ devel/flake8/distinfo 1 Sep 2024 15:01:20 -0000
@@ -1,2 +1,2 @@
-SHA256 (flake8-7.0.0.tar.gz) = M/lmIQWeZe7EdBaQhdySvybnstRzZrcL4vZ6uA3CUTI=
-SIZE (flake8-7.0.0.tar.gz) = 48219
+SHA256 (flake8-7.1.0.tar.gz) = SKB7YmtVI24PtHhO5ppGX79Z157sH1tHhcPTvFfReqU=
+SIZE (flake8-7.1.0.tar.gz) = 48240
Index: devel/py-codestyle/Makefile
===================================================================
RCS file: /cvs/ports/devel/py-codestyle/Makefile,v
diff -u -p -u -r1.19 Makefile
--- devel/py-codestyle/Makefile 6 May 2024 12:23:13 -0000 1.19
+++ devel/py-codestyle/Makefile 1 Sep 2024 15:01:20 -0000
@@ -1,23 +1,24 @@
COMMENT = Python style guide checker

-MODPY_EGG_VERSION = 2.11.1
+MODPY_EGG_VERSION = 2.12.0
DISTNAME = pycodestyle-${MODPY_EGG_VERSION}
PKGNAME = py-codestyle-${MODPY_EGG_VERSION}
-REVISION = 0

CATEGORIES = devel

HOMEPAGE = https://github.com/PyCQA/pycodestyle

+MAINTAINER = Daniel Dickman <daniel@openbsd.org>
+
# Expat
PERMIT_PACKAGE = Yes

MODULES = lang/python

-MODPY_PI = Yes
-MODPY_PYBUILD = setuptools
-
FLAVORS = python3
FLAVOR = python3
+
+MODPY_PI = Yes
+MODPY_PYBUILD = setuptools

.include <bsd.port.mk>
Index: devel/py-codestyle/distinfo
===================================================================
RCS file: /cvs/ports/devel/py-codestyle/distinfo,v
diff -u -p -u -r1.8 distinfo
--- devel/py-codestyle/distinfo 24 Oct 2023 06:35:17 -0000 1.8
+++ devel/py-codestyle/distinfo 1 Sep 2024 15:01:20 -0000
@@ -1,2 +1,2 @@
-SHA256 (pycodestyle-2.11.1.tar.gz) = QboOevyXUt+1PO1UieifgYa+AOWZ5xJmBpW3p1/yZj8=
-SIZE (pycodestyle-2.11.1.tar.gz) = 38974
+SHA256 (pycodestyle-2.12.0.tar.gz) = RC+VAUG09D33Ut0wNRH/3tOgTCtvt/ZZgFdPDDHm55w=
+SIZE (pycodestyle-2.12.0.tar.gz) = 39055
Index: devel/py-python-lsp-server/Makefile
===================================================================
RCS file: /cvs/ports/devel/py-python-lsp-server/Makefile,v
diff -u -p -u -r1.6 Makefile
--- devel/py-python-lsp-server/Makefile 31 May 2024 18:05:40 -0000 1.6
+++ devel/py-python-lsp-server/Makefile 1 Sep 2024 15:01:20 -0000
@@ -1,9 +1,8 @@
COMMENT = Python Language Server

-MODPY_EGG_VERSION = 1.11.0
-DISTNAME = python-lsp-server-${MODPY_EGG_VERSION}
-PKGNAME = py-${DISTNAME}
-REVISION = 1
+MODPY_EGG_VERSION = 1.12.0
+DISTNAME = python_lsp_server-${MODPY_EGG_VERSION}
+PKGNAME = py-${DISTNAME:S/_/-/g}

CATEGORIES = devel

@@ -21,10 +20,10 @@ MODPY_PI = Yes
MODPY_PYBUILD = setuptools_scm

RUN_DEPENDS = devel/autopep8 \
- devel/flake8>=7.0.0,<8 \
+ devel/flake8>=7.1.0,<8 \
devel/pyflakes${MODPY_FLAVOR}>=3.2.0,<3.3.0 \
devel/pylint${MODPY_FLAVOR}>=3.1,<4 \
- devel/py-codestyle${MODPY_FLAVOR}>=2.11.0,<2.12.0 \
+ devel/py-codestyle${MODPY_FLAVOR}>=2.12.0,<2.13.0 \
devel/py-docstring-to-markdown${MODPY_FLAVOR} \
devel/py-jedi${MODPY_FLAVOR}>=0.17.2,<0.20.0 \
devel/py-mccabe${MODPY_FLAVOR}>=0.7.0,<0.8.0 \
Index: devel/py-python-lsp-server/distinfo
===================================================================
RCS file: /cvs/ports/devel/py-python-lsp-server/distinfo,v
diff -u -p -u -r1.4 distinfo
--- devel/py-python-lsp-server/distinfo 10 Apr 2024 22:42:24 -0000 1.4
+++ devel/py-python-lsp-server/distinfo 1 Sep 2024 15:01:20 -0000
@@ -1,2 +1,2 @@
-SHA256 (python-lsp-server-1.11.0.tar.gz) = ie3W+z94UuS/Wj0dlepBSE0aKPqUtuPL/xK52xI7joY=
-SIZE (python-lsp-server-1.11.0.tar.gz) = 113347
+SHA256 (python_lsp_server-1.12.0.tar.gz) = tqM28SjaA72brB5hw6zKboQkK4sxBVocz0nYPfncBTs=
+SIZE (python_lsp_server-1.12.0.tar.gz) = 114328
Index: devel/spyder/spyder/Makefile
===================================================================
RCS file: /cvs/ports/devel/spyder/spyder/Makefile,v
diff -u -p -u -r1.24 Makefile
--- devel/spyder/spyder/Makefile 18 Jun 2024 00:11:12 -0000 1.24
+++ devel/spyder/spyder/Makefile 1 Sep 2024 15:01:20 -0000
@@ -1,6 +1,6 @@
COMMENT = Scientific PYthon Development EnviRonment

-MODPY_EGG_VERSION = 5.5.5
+MODPY_EGG_VERSION = 5.5.6
DISTNAME = spyder-${MODPY_EGG_VERSION}
PKGNAME = spyder3-${MODPY_EGG_VERSION}

@@ -24,7 +24,7 @@ RUN_DEPENDS += databases/py-pickleshare$
devel/py-python-lsp-black${MODPY_FLAVOR}>=2.0.0,<3.0.0 \
devel/py-pylint_venv${MODPY_FLAVOR}>=3.0.2 \
devel/py-pyls-spyder${MODPY_FLAVOR}>=0.4.0 \
- devel/py-python-lsp-server${MODPY_FLAVOR}>=1.11.0,<1.12.0 \
+ devel/py-python-lsp-server${MODPY_FLAVOR}>=1.12.0,<1.13.0 \
devel/py-qdarkstyle${MODPY_FLAVOR}>=3.2.0,<3.3.0 \
devel/py-qstylizer${MODPY_FLAVOR}>=0.2.2 \
devel/py-rtree${MODPY_FLAVOR}>=0.9.7 \
@@ -48,7 +48,8 @@ RUN_DEPENDS += databases/py-pickleshare$
x11/py-qtawesome${MODPY_FLAVOR}>=1.3.1,<1.4.0 \
devel/spyder/py-spyder-kernels${MODPY_FLAVOR}>=2.5.2,<2.6.0

-TEST_DEPENDS += ${RUN_DEPENDS}
+TEST_DEPENDS += ${RUN_DEPENDS} \
+ devel/py-importlib-metadata${MODPY_FLAVOR}

pre-configure:
${SUBST_CMD} ${WRKSRC}/spyder/__init__.py
Index: devel/spyder/spyder/distinfo
===================================================================
RCS file: /cvs/ports/devel/spyder/spyder/distinfo,v
diff -u -p -u -r1.8 distinfo
--- devel/spyder/spyder/distinfo 18 Jun 2024 00:11:12 -0000 1.8
+++ devel/spyder/spyder/distinfo 1 Sep 2024 15:01:20 -0000
@@ -1,2 +1,2 @@
-SHA256 (spyder/spyder-5.5.5.tar.gz) = Y+JZO/LfWi1QzoSSV1uDI4zxLcte0HwVMNmBK0aXgd4=
-SIZE (spyder/spyder-5.5.5.tar.gz) = 14033359
+SHA256 (spyder/spyder-5.5.6.tar.gz) = lYtmn0oBXFw5EFDrbv+o2EZWqL/Eel9GrbopeEnYK90=
+SIZE (spyder/spyder-5.5.6.tar.gz) = 14073339

No comments:

Post a Comment