summaryrefslogtreecommitdiff
path: root/www/py-swiftclient
AgeCommit message (Collapse)AuthorFilesLines
2022-01-05python: egg.mk: add USE_PKG_RESOURCES flagwiz1-2/+4
This flag should be set for packages that import pkg_resources and thus need setuptools after the build step. Set this flag for packages that need it and bump PKGREVISION.
2022-01-04*: bump PKGREVISION for egg.mk userswiz1-1/+2
They now have a tool dependency on py-setuptools instead of a DEPENDS
2021-10-26www: Replace RMD160 checksums with BLAKE2s checksumsnia1-2/+2
All checksums have been double-checked against existing RMD160 and SHA512 hashes Not committed (merge conflicts): www/nghttp2/distinfo Unfetchable distfiles (almost certainly fetched conditionally...): ./www/nginx-devel/distinfo array-var-nginx-module-0.05.tar.gz ./www/nginx-devel/distinfo echo-nginx-module-0.62.tar.gz ./www/nginx-devel/distinfo encrypted-session-nginx-module-0.08.tar.gz ./www/nginx-devel/distinfo form-input-nginx-module-0.12.tar.gz ./www/nginx-devel/distinfo headers-more-nginx-module-0.33.tar.gz ./www/nginx-devel/distinfo lua-nginx-module-0.10.19.tar.gz ./www/nginx-devel/distinfo naxsi-1.3.tar.gz ./www/nginx-devel/distinfo nginx-dav-ext-module-3.0.0.tar.gz ./www/nginx-devel/distinfo nginx-rtmp-module-1.2.2.tar.gz ./www/nginx-devel/distinfo nginx_http_push_module-1.2.10.tar.gz ./www/nginx-devel/distinfo ngx_cache_purge-2.5.1.tar.gz ./www/nginx-devel/distinfo ngx_devel_kit-0.3.1.tar.gz ./www/nginx-devel/distinfo ngx_http_geoip2_module-3.3.tar.gz ./www/nginx-devel/distinfo njs-0.5.0.tar.gz ./www/nginx-devel/distinfo set-misc-nginx-module-0.32.tar.gz ./www/nginx/distinfo array-var-nginx-module-0.05.tar.gz ./www/nginx/distinfo echo-nginx-module-0.62.tar.gz ./www/nginx/distinfo encrypted-session-nginx-module-0.08.tar.gz ./www/nginx/distinfo form-input-nginx-module-0.12.tar.gz ./www/nginx/distinfo headers-more-nginx-module-0.33.tar.gz ./www/nginx/distinfo lua-nginx-module-0.10.19.tar.gz ./www/nginx/distinfo naxsi-1.3.tar.gz ./www/nginx/distinfo nginx-dav-ext-module-3.0.0.tar.gz ./www/nginx/distinfo nginx-rtmp-module-1.2.2.tar.gz ./www/nginx/distinfo nginx_http_push_module-1.2.10.tar.gz ./www/nginx/distinfo ngx_cache_purge-2.5.1.tar.gz ./www/nginx/distinfo ngx_devel_kit-0.3.1.tar.gz ./www/nginx/distinfo ngx_http_geoip2_module-3.3.tar.gz ./www/nginx/distinfo njs-0.5.0.tar.gz ./www/nginx/distinfo set-misc-nginx-module-0.32.tar.gz
2021-10-07www: Remove SHA1 hashes for distfilesnia1-2/+1
2021-02-10py-swiftclient: updated to 3.11.0adam4-22/+17
3.11.0: Unknown changes 3.9.0 * Now tested under Python 3.8. * Better clean up connections when using the low-level client.py API. * Fixed a display issue when `swift delete` made multiple attempts to bulk delete objects. 3.8.1 * Deleting or overwriting a symlink to an SLO or DLO will no longer attempt to clean up the large object's segments. * Fixed an issue sending non-ASCII metadata keys on Python 3. Note that receiving such metadata on py3 is still broken; see https://bugs.python.org/issue37093 * Documentation can now be rendered as a PDF. * Dropped Python 3.5 testing. 3.8.0 * Added a new `--json` option to `swift list`. * Fixed an issue introduced in 3.5.0 where re-uploading an SLO with the same size, mtime, and segment size would delete all of the just-uploaded segments. * Various other minor bug fixes and improvements. 3.7.0 * Added the delimiter keyword parameter to `get_account()` to match the functionality of `get_container()`. * Fixed an issue in the client module where socket connections weren't closed properly before being dereferenced. * Various other minor bug fixes and improvements. 3.6.0 * Add the `--prompt` option for the CLI which will cause the user to be prompted to enter a password. Any password otherwise specified by `--key`, `--os-password` or an environment variable will be ignored. * Added bash completion support to the `swift` CLI. Enable this by sourcing the included `tools/swift.bash_completion` file. Make it permanent by including this file in the system's `/etc/bash_completion.d` directory. * Add ability to generate a temporary URL with an IP range restriction. TempURLs with IP restrictions are supported in Swift 2.19.0 or later. * The client.py SDK now supports a `query_string` option on the `head_object()` method. This is useful for finding information on SLO/DLO manifests without fetching the entire manifest. * The client.py SDK now respects `region_name` when using sessions. * Added a `.close()` method to an object response, allowing clients to give up on reading the rest of the response body, if they so choose. * Fixed a bug where using `--debug` in the CLI with unicode account names would cause a client crash. * Make OS_AUTH_URL work in DevStack (for testing) by default. * Dropped Python 3.4 testing. * Various other minor bug fixes and improvements.
2020-05-06*: Remove manual page entries from ALTERNATIVES files.jperkin1-1/+0
Thes are not supported by pkg_alternatives, and lead to breakage as found in <http://mail-index.netbsd.org/tech-pkg/2020/05/06/msg023089.html>. In many cases these were unnecessary anyway, as they match the corresponding command that pkg_alternatives will have automatically detected manual page entries for, plus many of them did not support PKGMANDIR. In the one case (databases/py-peewee) where the manual page does not match the command name, pkg_alternatives will need to be enhanced to support this before it can be re-enabled.
2018-09-27py-swiftclient: BUILD_DEPENDS on py-pbrtnn1-1/+2
2018-02-02Removed usuned linesadam1-4/+1
2018-02-02py-swiftclient: updated to 3.5.0adam5-33/+29
3.5.0 * Allow for object uploads > 5GB from stdin. When uploading from standard input, swiftclient will turn the upload into an SLO in the case of large objects. By default, input larger than 10MB will be uploaded as an SLO with 10MB segment sizes. Users can also supply the --segment-size option to alter that threshold and the SLO segment size. One segment is buffered in memory (which is why 10MB default was chosen). * The --meta option can now be set on the upload command. * Updated PyPy test dependency references to be more accurate on different distros. * Various other minor bug fixes and improvements.
2018-01-26py-swiftclient: Incompatible with python34 (py-futures).jperkin1-2/+2
2018-01-26* debl3ificationtriaxx5-18/+28
* fix invalid MANPATH
2018-01-26Add missing descriptiontriaxx1-0/+2
2018-01-26Add www/py-swiftclient package version 3.4.0triaxx5-0/+81