[Python-modules-commits] [pycurl] branch ubuntu updated (09a3833 -> 81512d5)

Barry Warsaw barry at moszumanska.debian.org
Tue Jan 12 21:19:47 UTC 2016


This is an automated email from the git hooks/post-receive script.

barry pushed a change to branch ubuntu
in repository pycurl.

      from  09a3833   Release for Xenial.
      adds  53ce6c1   Apply NMU patch.
      adds  5acf01e   record new upstream branch created by importing pycurl_7.21.5.orig.tar.gz
      adds  27c9dcb   Import pycurl_7.21.5.orig.tar.gz
      adds  fdd8cd2   Adjust setup.py file for Debian architecture
      adds  16e907f   Adapt documentation build process for Debian packaging purposes
      adds  ec454c8   merge patched into master
      adds  14ba4d1   New upstream release.
      adds  ae9e964   Release
       new  0420ac2   Tentative Ubuntu delta.
       new  0e4d7ee   Merge with master branch.
       new  a0adeeb   Tentative Ubuntu delta.
       new  1ca6ad8   Merge with master branch.
       new  e691fea   Merge with Debian; remaining changes:
       new  fa278c9   Release.
       new  388ec81   Tentative Ubuntu delta.
       new  c6b60f0   Merge with master branch.
       new  351c5c7   Release
       new  971b41c   Tentative Ubuntu delta.
       new  1806e29   Merge with master branch.
       new  635535f   Merge with Debian; remaining changes:
       new  c41a6a2   Release.
       new  4a2ebb6   Merge with master branch.
       new  e33b81f   Tentative Ubuntu delta.
       new  e393f21   Merge with master branch.
       new  ad00bef   Merge with Debian; remaining changes:
       new  0ebfdcc   Tentative Ubuntu delta.
       new  10a8a78   Release
       new  ac911ee   Tentative Ubuntu delta.
       new  3804c46   Merge with master branch.
       new  dd5cf2e   New upstream release.
       new  115172b   Release for Xenial.
       new  0c0b966   Fix merge
       new  92c2997   Resolve merge conflicts on d/changelog.
       new  5cd9edd   Merge with Debian; remaining changes:
       new  81512d5   Release

The 27 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                                            |  14 +-
 COPYING-MIT                                        |   2 +-
 ChangeLog                                          |  78 ++++
 INSTALL.rst                                        |  44 +-
 MANIFEST.in                                        |   1 +
 Makefile                                           |   3 +
 PKG-INFO                                           |   2 +-
 README.rst                                         |  10 +-
 RELEASE-NOTES.rst                                  |  26 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  25 ++
 debian/patches/10_setup.py.patch                   |   4 +-
 debian/patches/20_build_doc_for_debian.patch       |   6 +-
 debian/tests/control                               |   6 +
 doc/callbacks.rst                                  | 304 +++++++++----
 doc/conf.py                                        |   6 +-
 doc/curlobject.rst                                 |   2 +
 doc/docstrings/curl_setopt.rst                     |   4 +-
 doc/index.rst                                      |   2 +-
 doc/release-process.rst                            |  38 +-
 examples/ssh_keyfunction.py                        |  15 +
 setup.py                                           |  54 ++-
 src/docstrings.c                                   |   4 +-
 src/easy.c                                         | 382 ++++++++++++++--
 src/module.c                                       | 373 +++++++++++----
 src/pycurl.h                                       |  13 +-
 tests/close_socket_cb_test.py                      |  75 ++++
 ...e_function_test.py => default_write_cb_test.py} |  12 +-
 tests/error_constants_test.py                      |   4 +
 tests/fake-curl/libcurl/with_gnutls.so             | Bin 0 -> 6095 bytes
 tests/fake-curl/libcurl/with_nss.so                | Bin 0 -> 6092 bytes
 tests/fake-curl/libcurl/with_openssl.so            | Bin 0 -> 6120 bytes
 tests/fake-curl/libcurl/with_unknown_ssl.so        | Bin 0 -> 6124 bytes
 tests/fake-curl/libcurl/without_ssl.so             | Bin 0 -> 6087 bytes
 .../{header_function_test.py => header_cb_test.py} |  12 +-
 tests/matrix.py                                    |  16 +-
 tests/open_socket_cb_test.py                       | 115 +++++
 tests/option_constants_test.py                     | 185 +++++++-
 tests/{read_callback_test.py => read_cb_test.py}   |  32 +-
 tests/run.sh                                       |   5 +
 ...constants_test.py => seek_cb_constants_test.py} |   6 +-
 tests/{seek_function_test.py => seek_cb_test.py}   |   8 +-
 tests/setup_test.py                                |  11 +
 tests/socket_open_test.py                          |  44 --
 tests/sockopt_cb_test.py                           |  84 ++++
 tests/ssh_key_cb_test.py                           |  84 ++++
 tests/util.py                                      |  55 ++-
 tests/version_constants_test.py                    |  81 ++++
 winbuild.py                                        | 499 ++++++++++++++++++---
 winbuild/c-ares-vs2015.patch                       |  13 +
 winbuild/libcurl-fix-zlib-references.patch         |  25 ++
 winbuild/libssh2-vs2015.patch                      |  10 +
 winbuild/openssl-fix-crt.patch                     |  29 ++
 53 files changed, 2357 insertions(+), 480 deletions(-)
 create mode 100644 debian/tests/control
 create mode 100644 examples/ssh_keyfunction.py
 create mode 100644 tests/close_socket_cb_test.py
 rename tests/{default_write_function_test.py => default_write_cb_test.py} (97%)
 create mode 100755 tests/fake-curl/libcurl/with_gnutls.so
 create mode 100755 tests/fake-curl/libcurl/with_nss.so
 create mode 100755 tests/fake-curl/libcurl/with_openssl.so
 create mode 100755 tests/fake-curl/libcurl/with_unknown_ssl.so
 create mode 100755 tests/fake-curl/libcurl/without_ssl.so
 rename tests/{header_function_test.py => header_cb_test.py} (95%)
 create mode 100644 tests/open_socket_cb_test.py
 rename tests/{read_callback_test.py => read_cb_test.py} (96%)
 rename tests/{seek_function_constants_test.py => seek_cb_constants_test.py} (92%)
 rename tests/{seek_function_test.py => seek_cb_test.py} (97%)
 delete mode 100644 tests/socket_open_test.py
 create mode 100644 tests/sockopt_cb_test.py
 create mode 100644 tests/ssh_key_cb_test.py
 create mode 100644 tests/version_constants_test.py
 create mode 100644 winbuild/c-ares-vs2015.patch
 create mode 100644 winbuild/libcurl-fix-zlib-references.patch
 create mode 100644 winbuild/libssh2-vs2015.patch
 create mode 100644 winbuild/openssl-fix-crt.patch

-- 
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