4.7.1: Bugfixes - `CIMultiDictProxy.copy` return object type `multidict._multidict.CIMultiDict` - Make `CIMultiDict` subclassable again - Fix regression, multidict can be constructed from arbitrary iterable of pairs again. - `CIMultiDict.add` may be called with keyword arguments Improved Documentation - Mention ``MULTIDICT_NO_EXTENSIONS`` environment variable in docs. - Document the fact that ``istr`` preserves the casing of argument untouched but uses internal lower-cased copy for keys comparison.
21 lines
696 B
Makefile
21 lines
696 B
Makefile
# $NetBSD: Makefile,v 1.17 2019/12/15 11:16:06 adam Exp $
|
|
|
|
DISTNAME= multidict-4.7.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=m/multidict/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/aio-libs/multidict
|
|
COMMENT= Multidict implementation
|
|
LICENSE= apache-2.0
|
|
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
.include "../../devel/py-cython/buildlink3.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|