head	1.6;
access;
symbols
	pkgsrc-2026Q2:1.6.0.10
	pkgsrc-2026Q2-base:1.6
	pkgsrc-2026Q1:1.6.0.8
	pkgsrc-2026Q1-base:1.6
	pkgsrc-2025Q4:1.6.0.6
	pkgsrc-2025Q4-base:1.6
	pkgsrc-2025Q3:1.6.0.4
	pkgsrc-2025Q3-base:1.6
	pkgsrc-2025Q2:1.6.0.2
	pkgsrc-2025Q2-base:1.6
	pkgsrc-2025Q1:1.5.0.4
	pkgsrc-2025Q1-base:1.5
	pkgsrc-2024Q4:1.5.0.2
	pkgsrc-2024Q4-base:1.5
	pkgsrc-2024Q3:1.4.0.8
	pkgsrc-2024Q3-base:1.4
	pkgsrc-2024Q2:1.4.0.6
	pkgsrc-2024Q2-base:1.4
	pkgsrc-2024Q1:1.4.0.4
	pkgsrc-2024Q1-base:1.4
	pkgsrc-2023Q4:1.4.0.2
	pkgsrc-2023Q4-base:1.4
	pkgsrc-2023Q3:1.3.0.12
	pkgsrc-2023Q3-base:1.3
	pkgsrc-2023Q2:1.3.0.10
	pkgsrc-2023Q2-base:1.3
	pkgsrc-2023Q1:1.3.0.8
	pkgsrc-2023Q1-base:1.3
	pkgsrc-2022Q4:1.3.0.6
	pkgsrc-2022Q4-base:1.3
	pkgsrc-2022Q3:1.3.0.4
	pkgsrc-2022Q3-base:1.3
	pkgsrc-2022Q2:1.3.0.2
	pkgsrc-2022Q2-base:1.3
	pkgsrc-2022Q1:1.2.0.2
	pkgsrc-2022Q1-base:1.2
	pkgsrc-2021Q4:1.1.0.2
	pkgsrc-2021Q4-base:1.1;
locks; strict;
comment	@# @;


1.6
date	2025.04.13.18.26.48;	author wiz;	state Exp;
branches;
next	1.5;
commitid	isAuvzoPIxU37VQF;

1.5
date	2024.11.11.07.29.04;	author wiz;	state Exp;
branches;
next	1.4;
commitid	1fBDq3LwS98NncxF;

1.4
date	2023.11.07.09.33.54;	author wiz;	state Exp;
branches;
next	1.3;
commitid	LL5C501gR1TvYELE;

1.3
date	2022.05.01.09.45.42;	author wiz;	state Exp;
branches;
next	1.2;
commitid	tsVW7B7I6cmvSkCD;

1.2
date	2022.01.04.20.54.58;	author wiz;	state Exp;
branches;
next	1.1;
commitid	CYyhdK9qtoffkmnD;

1.1
date	2021.11.05.11.16.38;	author wiz;	state Exp;
branches;
next	;
commitid	hKHTZThE1YEz4BfD;


desc
@@


1.6
log
@py-lsp-jsonrpc: fix for setuptools>=78
@
text
@# $NetBSD: Makefile,v 1.5 2024/11/11 07:29:04 wiz Exp $

DISTNAME=	python-lsp-jsonrpc-1.1.2
PKGNAME=	${PYPKGPREFIX}-${DISTNAME:S/python-//}
PKGREVISION=	1
CATEGORIES=	textproc net devel
MASTER_SITES=	${MASTER_SITE_PYPI:=p/python-lsp-jsonrpc/}

MAINTAINER=	pkgsrc-users@@NetBSD.org
HOMEPAGE=	https://github.com/python-lsp/python-lsp-jsonrpc
COMMENT=	Asynchronous JSON RPC server for Python (fork of python-jsonrpc-server)
LICENSE=	mit

TOOL_DEPENDS+=	${PYPKGPREFIX}-setuptools>=78:../../devel/py-setuptools
TOOL_DEPENDS+=	${PYPKGPREFIX}-setuptools_scm>=0:../../devel/py-setuptools_scm
DEPENDS+=	${PYPKGPREFIX}-ujson>=3.0.0:../../textproc/py-ujson
TEST_DEPENDS+=	${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
TEST_DEPENDS+=	${PYPKGPREFIX}-pylint-[0-9]*:../../devel/py-pylint
TEST_DEPENDS+=	${PYPKGPREFIX}-codestyle-[0-9]*:../../devel/py-codestyle
TEST_DEPENDS+=	${PYPKGPREFIX}-flakes-[0-9]*:../../devel/py-flakes
TEST_DEPENDS+=	${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
TEST_DEPENDS+=	${PYPKGPREFIX}-coverage-[0-9]*:../../devel/py-coverage

USE_LANGUAGES=	# none

.include "../../lang/python/wheel.mk"
.include "../../mk/bsd.pkg.mk"
@


1.5
log
@py-*: remove unused tool dependency

py-setuptools includes the py-wheel functionality nowadays
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.4 2023/11/07 09:33:54 wiz Exp $
d5 1
d14 1
a14 1
TOOL_DEPENDS+=	${PYPKGPREFIX}-setuptools>=0:../../devel/py-setuptools
a25 2
PYTHON_VERSIONS_INCOMPATIBLE=	27

@


1.4
log
@py-lsp-jsonrpc: update to 1.1.2.

## Version 1.1.2 (2023/09/23)

### Pull Requests Merged

* Fix tests so they're compatible with both ujson and pure json library

----

## Version 1.1.1 (2023/09/09)

### Issues Closed

* No license included in package metadata

### Pull Requests Merged

* Remove redundant wheel dep from pyproject.toml
* Add license trove classifier

----

## Version 1.1.0 (2023/09/07)

## New features

* Allow method handlers to return json rpc errors
* Drop support for Python 3.7 and 3.6

### Issues Closed

* Drop support for Python 3.6

### Pull Requests Merged

* Drop support for Python 3.7
* Allow method handlers to return json rpc errors
* Make necessary changes to drop support for Python 3.6
* Drop Python 3.6 on CIs and start testing with Python 3.10
* Migrate metadata from `setup.cfg` to PEP 621-compliant `pyproject.toml`
* Use f-strings wherever possible
* Add license info to setup.py so it will show up in wheel installs.
* Move the package metadata from setup.py to setup.cfg
* Fix typos in readme
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.3 2022/05/01 09:45:42 wiz Exp $
a14 1
TOOL_DEPENDS+=	${PYPKGPREFIX}-wheel>=0:../../devel/py-wheel
@


1.3
log
@*: fix usage of versioned_dependencies

Remove unused includes, fix dependencies where it's not included.
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.2 2022/01/04 20:54:58 wiz Exp $
d3 1
a3 1
DISTNAME=	python-lsp-jsonrpc-1.0.0
a4 1
PKGREVISION=	1
d13 3
a15 4
USE_LANGUAGES=	# none

PYTHON_VERSIONS_INCOMPATIBLE=	27 # textproc/py-ujson

d24 3
a26 2
do-test:
	cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} py.test-${PYVERSSUFFIX}
d28 1
a28 1
.include "../../lang/python/egg.mk"
@


1.2
log
@*: bump PKGREVISION for egg.mk users

They now have a tool dependency on py-setuptools instead of a DEPENDS
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.1 2021/11/05 11:16:38 wiz Exp $
a28 1
.include "../../lang/python/versioned_dependencies.mk"
@


1.1
log
@textproc/py-lsp-jsonrpc: import py-lsp-jsonrpc-1.0.0

A Python 3.6+ server implementation of the JSON RPC 2.0 protocol.
This library has been pulled out of the Python LSP Server project.
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.4 2020/12/09 20:51:19 jperkin Exp $
d5 1
@

