[Python-modules-commits] [pycurl] branch master updated (a09102f -> 156a5ab)
Barry Warsaw
barry at moszumanska.debian.org
Mon Apr 27 20:26:58 UTC 2015
This is an automated email from the git hooks/post-receive script.
barry pushed a change to branch master
in repository pycurl.
from a09102f Release
new c8f3971 Update d/watch to use pypi.debian.net mirror.
new d36b9c1 record new upstream branch created by importing pycurl_7.19.5.1.orig.tar.gz
new 4d69da9 Import pycurl_7.19.5.1.orig.tar.gz
new 7a42ba2 Adjust setup.py file for Debian architecture
new a4111ad Adapt documentation build process for Debian packaging purposes
new 7e232ee upstream issue 210
new c681c2d merge patched into master
new 8cf4552 * New upstream release. * d/watch: Use pypi.debian.net mirror.
new 156a5ab d/control: Bump Standards-Version to 3.9.6
The 9 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
AUTHORS | 1 +
ChangeLog | 22 +-
MANIFEST.in | 9 +
PKG-INFO | 2 +-
RELEASE-NOTES.rst | 7 +
debian/.git-dpm | 14 +-
debian/changelog | 8 +
debian/control | 2 +-
debian/patches/0003-upstream-issue-210.patch | 7 +-
debian/patches/10_setup.py.patch | 4 +-
debian/patches/20_build_doc_for_debian.patch | 2 +-
debian/watch | 3 +-
doc/conf.py | 4 +-
examples/linksys.py | 0
examples/smtp.py | 39 +++
requirements-dev-2.4.txt | 2 +
requirements-dev-2.5.txt | 2 +
requirements-dev.txt | 4 +
setup.py | 4 +-
src/easy.c | 17 +
src/module.c | 17 +
src/pycurl.h | 16 +
tests/__init__.py | 8 +
tests/app.py | 113 ++++++
tests/appmanager.py | 56 +++
tests/certinfo_test.py | 67 ++++
tests/certs/server.crt | 14 +
tests/certs/server.key | 15 +
tests/curl_object_test.py | 27 ++
tests/debug_test.py | 52 +++
tests/default_write_function_test.py | 84 +++++
tests/error_constants_test.py | 21 ++
tests/error_test.py | 82 +++++
tests/ext/test-lib.sh | 69 ++++
tests/ext/test-suite.sh | 25 ++
tests/fake-curl/curl-config-empty | 15 +
tests/fake-curl/curl-config-libs-and-static-libs | 17 +
tests/fake-curl/curl-config-ssl-feature-only | 18 +
tests/fake-curl/curl-config-ssl-in-libs | 14 +
tests/fake-curl/curl-config-ssl-in-static-libs | 17 +
tests/fixtures/form_submission.txt | 1 +
tests/ftp_test.py | 53 +++
tests/functools_backport.py | 58 ++++
tests/getinfo_test.py | 52 +++
tests/global_init_test.py | 31 ++
tests/header_function_test.py | 49 +++
tests/header_test.py | 49 +++
tests/info_constants_test.py | 16 +
tests/internals_test.py | 225 ++++++++++++
tests/matrix.py | 214 ++++++++++++
tests/matrix/curl-7.19.0-sslv2-2b0e09b0f98.patch | 40 +++
.../curl-7.19.0-sslv2-c66b0b32fba-modified.patch | 29 ++
tests/matrix/python25.patch | 67 ++++
tests/matrix/python30.patch | 19 ++
tests/memory_mgmt_test.py | 261 ++++++++++++++
tests/multi_memory_mgmt_test.py | 35 ++
tests/multi_option_constants_test.py | 24 ++
tests/multi_socket_select_test.py | 120 +++++++
tests/multi_socket_test.py | 97 ++++++
tests/multi_test.py | 379 +++++++++++++++++++++
tests/multi_timer_test.py | 90 +++++
tests/option_constants_test.py | 149 ++++++++
tests/pause_test.py | 93 +++++
tests/post_test.py | 125 +++++++
tests/procmgr.py | 101 ++++++
tests/protocol_constants_test.py | 48 +++
tests/pycurl_object_test.py | 125 +++++++
tests/read_callback_test.py | 126 +++++++
tests/readdata_test.py | 160 +++++++++
tests/relative_url_test.py | 22 ++
tests/reload_test.py | 20 ++
tests/reset_test.py | 88 +++++
tests/resolve_test.py | 26 ++
tests/runwsgi.py | 129 +++++++
tests/seek_function_constants_test.py | 31 ++
tests/seek_function_test.py | 77 +++++
tests/setopt_lifecycle_test.py | 58 ++++
tests/setopt_test.py | 42 +++
tests/setopt_unicode_test.py | 41 +++
tests/setup_test.py | 103 ++++++
tests/share_test.py | 71 ++++
tests/socket_open_test.py | 48 +++
tests/unset_range_test.py | 51 +++
tests/user_agent_string_test.py | 27 ++
tests/util.py | 183 ++++++++++
tests/version_comparison_test.py | 15 +
tests/version_test.py | 13 +
tests/vsftpd.conf | 13 +
tests/write_abort_test.py | 40 +++
tests/write_cb_bogus_test.py | 47 +++
tests/write_test.py | 94 +++++
tests/write_to_stringio_test.py | 41 +++
winbuild.py | 2 +-
93 files changed, 4995 insertions(+), 23 deletions(-)
mode change 100755 => 100644 examples/linksys.py
create mode 100644 examples/smtp.py
create mode 100644 requirements-dev-2.4.txt
create mode 100644 requirements-dev-2.5.txt
create mode 100644 requirements-dev.txt
create mode 100644 tests/__init__.py
create mode 100644 tests/app.py
create mode 100644 tests/appmanager.py
create mode 100644 tests/certinfo_test.py
create mode 100644 tests/certs/server.crt
create mode 100644 tests/certs/server.key
create mode 100644 tests/curl_object_test.py
create mode 100644 tests/debug_test.py
create mode 100644 tests/default_write_function_test.py
create mode 100644 tests/error_constants_test.py
create mode 100644 tests/error_test.py
create mode 100644 tests/ext/test-lib.sh
create mode 100755 tests/ext/test-suite.sh
create mode 100755 tests/fake-curl/curl-config-empty
create mode 100755 tests/fake-curl/curl-config-libs-and-static-libs
create mode 100755 tests/fake-curl/curl-config-ssl-feature-only
create mode 100755 tests/fake-curl/curl-config-ssl-in-libs
create mode 100755 tests/fake-curl/curl-config-ssl-in-static-libs
create mode 100644 tests/fixtures/form_submission.txt
create mode 100644 tests/ftp_test.py
create mode 100644 tests/functools_backport.py
create mode 100644 tests/getinfo_test.py
create mode 100644 tests/global_init_test.py
create mode 100644 tests/header_function_test.py
create mode 100644 tests/header_test.py
create mode 100644 tests/info_constants_test.py
create mode 100644 tests/internals_test.py
create mode 100644 tests/matrix.py
create mode 100644 tests/matrix/curl-7.19.0-sslv2-2b0e09b0f98.patch
create mode 100644 tests/matrix/curl-7.19.0-sslv2-c66b0b32fba-modified.patch
create mode 100644 tests/matrix/python25.patch
create mode 100644 tests/matrix/python30.patch
create mode 100644 tests/memory_mgmt_test.py
create mode 100644 tests/multi_memory_mgmt_test.py
create mode 100644 tests/multi_option_constants_test.py
create mode 100644 tests/multi_socket_select_test.py
create mode 100644 tests/multi_socket_test.py
create mode 100644 tests/multi_test.py
create mode 100644 tests/multi_timer_test.py
create mode 100644 tests/option_constants_test.py
create mode 100644 tests/pause_test.py
create mode 100644 tests/post_test.py
create mode 100644 tests/procmgr.py
create mode 100644 tests/protocol_constants_test.py
create mode 100644 tests/pycurl_object_test.py
create mode 100644 tests/read_callback_test.py
create mode 100644 tests/readdata_test.py
create mode 100644 tests/relative_url_test.py
create mode 100644 tests/reload_test.py
create mode 100644 tests/reset_test.py
create mode 100644 tests/resolve_test.py
create mode 100644 tests/runwsgi.py
create mode 100644 tests/seek_function_constants_test.py
create mode 100644 tests/seek_function_test.py
create mode 100644 tests/setopt_lifecycle_test.py
create mode 100644 tests/setopt_test.py
create mode 100644 tests/setopt_unicode_test.py
create mode 100644 tests/setup_test.py
create mode 100644 tests/share_test.py
create mode 100644 tests/socket_open_test.py
create mode 100644 tests/unset_range_test.py
create mode 100644 tests/user_agent_string_test.py
create mode 100644 tests/util.py
create mode 100644 tests/version_comparison_test.py
create mode 100644 tests/version_test.py
create mode 100644 tests/vsftpd.conf
create mode 100644 tests/write_abort_test.py
create mode 100644 tests/write_cb_bogus_test.py
create mode 100644 tests/write_test.py
create mode 100644 tests/write_to_stringio_test.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pycurl.git
More information about the Python-modules-commits
mailing list