CVS log for pkgsrc/www/py-furl/Makefile
Up to [cvs.NetBSD.org] / pkgsrc / www / py-furl
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.24: download - view: text, markup, annotated - select for diffs
Sun Apr 30 15:31:12 2023 UTC (19 months, 1 week ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2024Q3-base,
pkgsrc-2024Q3,
pkgsrc-2024Q2-base,
pkgsrc-2024Q2,
pkgsrc-2024Q1-base,
pkgsrc-2024Q1,
pkgsrc-2023Q4-base,
pkgsrc-2023Q4,
pkgsrc-2023Q3-base,
pkgsrc-2023Q3,
pkgsrc-2023Q2-base,
pkgsrc-2023Q2,
HEAD
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +3 -3
lines
py-furl: not for python 2
Revision 1.23: download - view: text, markup, annotated - select for diffs
Sat Jan 29 08:48:41 2022 UTC (2 years, 10 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
pkgsrc-2022Q3-base,
pkgsrc-2022Q3,
pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +4 -2
lines
*: convert py-flake8 users to versioned_dependencies
Revision 1.22: download - view: text, markup, annotated - select for diffs
Tue Jan 4 20:55:28 2022 UTC (2 years, 11 months ago) by wiz
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +2 -1
lines
*: bump PKGREVISION for egg.mk users
They now have a tool dependency on py-setuptools instead of a DEPENDS
Revision 1.21: download - view: text, markup, annotated - select for diffs
Tue Sep 28 10:21:36 2021 UTC (3 years, 2 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2021Q4-base,
pkgsrc-2021Q4
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +3 -3
lines
py-furl: updated to 2.1.3
v2.1.3
Fixed: Actually drop ';' as a query delimiter.
Revision 1.20: download - view: text, markup, annotated - select for diffs
Thu Apr 29 08:18:59 2021 UTC (3 years, 7 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2021Q3-base,
pkgsrc-2021Q3,
pkgsrc-2021Q2-base,
pkgsrc-2021Q2
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +2 -2
lines
py-furl: updated to 2.1.2
v2.1.2
Fixed: Support Python 3.9's changed urllib.parse.urljoin() behavior.
< py3.9: furl('wss://slrp.com/').join('foo:1') -> 'wss://slrp.com/foo:1'
>= py3.9: furl('wss://slrp.com/').join('foo:1') -> 'foo:1'
Changed: Drop semicolon query delimiters. See
https://bugs.python.org/issue42967.
Changed: Drop support for EOL Python 3.4 and Python 3.5.
v2.1.1
Fixed: Export metadata variables (furl.__title__, furl.__version__, etc).
Added: scheme, host, netloc, and origin as parameters to furl.remove().
Changed: Homogenize parameter order across furl.add(), furl.set(), and
furl.remove().
Changed: furl.origin can be assigned None. This has the same behavior as
furl.remove(origin=True).
Revision 1.19: download - view: text, markup, annotated - select for diffs
Sat Sep 21 13:09:38 2019 UTC (5 years, 2 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2021Q1-base,
pkgsrc-2021Q1,
pkgsrc-2020Q4-base,
pkgsrc-2020Q4,
pkgsrc-2020Q3-base,
pkgsrc-2020Q3,
pkgsrc-2020Q2-base,
pkgsrc-2020Q2,
pkgsrc-2020Q1-base,
pkgsrc-2020Q1,
pkgsrc-2019Q4-base,
pkgsrc-2019Q4,
pkgsrc-2019Q3-base,
pkgsrc-2019Q3
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +3 -2
lines
py-furl: updated to 2.1.0
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.
Revision 1.18: download - view: text, markup, annotated - select for diffs
Mon Sep 2 07:52:49 2019 UTC (5 years, 3 months ago) by adam
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -2
lines
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.
Revision 1.17: download - view: text, markup, annotated - select for diffs
Mon Sep 24 10:10:31 2018 UTC (6 years, 2 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2019Q2-base,
pkgsrc-2019Q2,
pkgsrc-2019Q1-base,
pkgsrc-2019Q1,
pkgsrc-2018Q4-base,
pkgsrc-2018Q4,
pkgsrc-2018Q3-base,
pkgsrc-2018Q3
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +3 -3
lines
py-furl: updated to 1.2.1
Furl v1.2.1:
Fixed: Join URLs without an authority (e.g. 'foo:blah') consistently with
urllib.parse.urljoin().
Revision 1.16: download - view: text, markup, annotated - select for diffs
Fri Jul 6 08:11:16 2018 UTC (6 years, 5 months ago) by adam
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -2
lines
py-furl: updated to 1.2
Furl v1.2:
Added: Path segment appending via the division operator (__truediv__()).
Changed: Bump orderedmultidict dependency to v1.0.
Changed: Check code style with flake8 instead of pycodestyle.
Changed: Percent-encode all non-unreserved characters in Query key=value pairs,
including valid query characters (e.g. '=', '?', etc). Old encoding:
?url=http://foo.com/; new encoding: ?url=http%3A%2F%2Ffoo.com%2F. Equal
signs remain decoded in query values where the key is empty to allow for, and
preserve, queries like '?==3=='.
Revision 1.15: download - view: text, markup, annotated - select for diffs
Fri Jun 15 08:22:00 2018 UTC (6 years, 5 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2018Q2-base,
pkgsrc-2018Q2
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -2
lines
py-furl: updated to 1.1
Furl v1.1
Fixed: Support and preserve all query strings as provided. For example, preserve
the query '&&==' of 'http://foo.com?&&==' as-is. Empty key=value pairs are
stored as ('', None) in Query.params, e.g. [('', None), ('', None)] for the
query '&'.
Changed: Don't encode equal signs ('=') in query values if the key is empty.
That is, allow and preserve queries like '?==3==' while also percent encoding
equal signs in query values with an associted key, as expected. E.g.
'?a=1%3D1'.
Revision 1.14: download - view: text, markup, annotated - select for diffs
Thu Nov 2 10:38:36 2017 UTC (7 years, 1 month ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2018Q1-base,
pkgsrc-2018Q1,
pkgsrc-2017Q4-base,
pkgsrc-2017Q4
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +4 -4
lines
py-furl: updated to 1.0.1
v1.0.1
Added: Add dictionary representations of Path, Query, Fragment, and furl objects
via an asdict() method.
v1.0.0
Added: Test against Python 3.6.
Changed: Bumped the version number to v1.0 to signify that furl is a mature and
stable library. Furl has been marked Production/Stable in setup.py for a long
time anyhow -- it's high time for the version number to catch up.
Revision 1.13: download - view: text, markup, annotated - select for diffs
Sat Sep 16 19:27:24 2017 UTC (7 years, 2 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2017Q3-base,
pkgsrc-2017Q3
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2
lines
Reset maintainer
Revision 1.12: download - view: text, markup, annotated - select for diffs
Thu Jan 12 11:32:33 2017 UTC (7 years, 10 months ago) by rodent
Branches: MAIN
CVS tags: pkgsrc-2017Q2-base,
pkgsrc-2017Q2,
pkgsrc-2017Q1-base,
pkgsrc-2017Q1
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +4 -6
lines
Update to latest release 0.5.2. No change log. Assume "more/better/faster".
Revision 1.11: download - view: text, markup, annotated - select for diffs
Wed Jun 8 17:43:47 2016 UTC (8 years, 6 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2016Q4-base,
pkgsrc-2016Q4,
pkgsrc-2016Q3-base,
pkgsrc-2016Q3,
pkgsrc-2016Q2-base,
pkgsrc-2016Q2
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -2
lines
Switch to MASTER_SITES_PYPI.
Revision 1.10: download - view: text, markup, annotated - select for diffs
Thu Mar 3 19:42:30 2016 UTC (8 years, 9 months ago) by shattered
Branches: MAIN
CVS tags: pkgsrc-2016Q1-base,
pkgsrc-2016Q1
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +2 -2
lines
Avoid build failures when chmod respects umask, and 'chmod -x' thus does
not clear all bits. (Can happen on Linux --
https://bugs.launchpad.net/ubuntu/+source/coreutils/+bug/67583)
Revision 1.9: download - view: text, markup, annotated - select for diffs
Mon Apr 13 23:12:43 2015 UTC (9 years, 7 months ago) by rodent
Branches: MAIN
CVS tags: pkgsrc-2015Q4-base,
pkgsrc-2015Q4,
pkgsrc-2015Q3-base,
pkgsrc-2015Q3,
pkgsrc-2015Q2-base,
pkgsrc-2015Q2
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +1 -3
lines
Removing python26. EOL'd quite some ago and discussed a couple times on
tech-pkg@ and pkgsrc-users@.
Revision 1.8: download - view: text, markup, annotated - select for diffs
Fri Apr 3 16:29:17 2015 UTC (9 years, 8 months ago) by rodent
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +3 -1
lines
PYTHON_VERSIONS_INCOMPATIBLE= 26 # via py-orderedmultidict
Revision 1.7: download - view: text, markup, annotated - select for diffs
Thu Apr 2 23:08:03 2015 UTC (9 years, 8 months ago) by rodent
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +5 -5
lines
Updated to 0.4.5. No public changelog, although the repo commits state that
py{26,3x} are supported now. Tested with py33 and import worked.
Revision 1.6: download - view: text, markup, annotated - select for diffs
Sat Dec 13 08:56:08 2014 UTC (9 years, 11 months ago) by obache
Branches: MAIN
CVS tags: pkgsrc-2015Q1-base,
pkgsrc-2015Q1,
pkgsrc-2014Q4-base,
pkgsrc-2014Q4
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -4
lines
unitest2 is not required for python>=2.7.
Revision 1.5: download - view: text, markup, annotated - select for diffs
Wed Sep 10 19:00:04 2014 UTC (10 years, 3 months ago) by joerg
Branches: MAIN
CVS tags: pkgsrc-2014Q3-base,
pkgsrc-2014Q3
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -2
lines
Doesn't support Python 3.3 or 3.4.
Revision 1.4: download - view: text, markup, annotated - select for diffs
Wed Aug 13 22:41:45 2014 UTC (10 years, 3 months ago) by joerg
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +3 -1
lines
Dependency doesn't support Python 2.6.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Thu Aug 7 02:22:27 2014 UTC (10 years, 4 months ago) by rodent
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +2 -2
lines
Updated to 0.3.95:
Use consistent delimeter indentation.
Revision 1.2: download - view: text, markup, annotated - select for diffs
Sat Jul 5 23:23:14 2014 UTC (10 years, 5 months ago) by rodent
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +2 -6
lines
Upstream fixed permissions issue in egg files. Fixed HOMEPAGE. No other
changes.
Revision 1.1: download - view: text, markup, annotated - select for diffs
Sat Jul 5 19:30:14 2014 UTC (10 years, 5 months ago) by rodent
Branches: MAIN
Import py27-furl-0.3.93 as www/py-furl.
URL manipulation made simple.
CVSweb <webmaster@jp.NetBSD.org>