f1fcdcf526
1.5.0 - 2021-05-07 ------------------ - Fix bug where a valid IRI is mishandled by ``urlparse`` and ``ParseResultBytes``. - Add :meth:`~rfc3986.builder.URIBuilder.extend_path`, :meth:`~rfc3986.builder.URIBuilder.extend_query_with`, :meth:`~rfc3986.builder.URIBuilder.geturl` to :class:`~rfc3986.builder.URIBuilder`.
24 lines
656 B
Makefile
24 lines
656 B
Makefile
# $NetBSD: Makefile,v 1.4 2021/05/08 06:56:35 adam Exp $
|
|
|
|
DISTNAME= rfc3986-1.5.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= www python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=r/rfc3986/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://rfc3986.readthedocs.io/
|
|
COMMENT= Validating URI References per RFC 3986
|
|
LICENSE= apache-2.0
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-idna-[0-9]*:../../www/py-idna
|
|
|
|
PYTHON_VERSIONED_DEPENDENCIES= test:test
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../lang/python/versioned_dependencies.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|