d3ac572ce1
Furl v2.1.0. Added: a dont_quote= parameter to Query.encode() and a query_dont_quote= parameter to furl.tostr() that exempt valid query characters from being percent-encoded, either in their entirety with dont_quote=True, or selectively with dont_quote=<string>, like dont_quote='/?@_'. Changed: Move package info from __init__.py into the more standard __version__.py. Fixed: Support Unicode usernames and passwords in Python 2. Fixed: Update orderedmultdict to v1.0.1 to resolve a DeprecationWarning. Fixed: Encode '/' consistently in query strings across both quote_plus=True and quote_plus=False.
20 lines
611 B
Makefile
20 lines
611 B
Makefile
# $NetBSD: Makefile,v 1.19 2019/09/21 13:09:38 adam Exp $
|
|
|
|
DISTNAME= furl-2.1.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= www python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=f/furl/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/gruns/furl
|
|
COMMENT= URL manipulation made simple
|
|
LICENSE= unlicense
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-orderedmultidict>=1.0:../../databases/py-orderedmultidict
|
|
DEPENDS+= ${PYPKGPREFIX}-six>=1.8.0:../../lang/py-six
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-flake8-[0-9]*:../../devel/py-flake8
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|