Subject: CVS commit: pkgsrc/www/py-furl
From: Adam Ciarcinski
Date: 2019-09-02 09:52:49
Message id: 20190902075249.D9173FBF4@cvs.NetBSD.org

Log Message:
py-furl: updated to 2.0.0

Furl v2.0.0

Added: All URL components (scheme, host, path, etc) to furl()'s constructor as
keyword arguments. E.g. f = furl(scheme='http', host='host', path='/lolsup').

Changed: furl.truediv() and Path.truediv() now mirror Pathlib.truediv()'s
behavior and return a new instance. The original instance is no longer modified.
Old behavior: f = furl('1'); f / '2' -> str(f) == '1'. New behavior:
f = furl('1'); f /= '2' -> str(f) == '1/2'.

Fixed: Path.load() now accepts Path instances, e.g. f.path.load(Path('hi')).

Removed: Support for Python 2.6, which reached EOL on 2013-10-29.

Files:
RevisionActionfile
1.18modifypkgsrc/www/py-furl/Makefile
1.11modifypkgsrc/www/py-furl/distinfo