[Python-modules-commits] [pycxx] branch master updated (a65f8d1 -> 5b03604)

Josué Ortega josue at moszumanska.debian.org
Sun Sep 25 19:06:13 UTC 2016


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

josue pushed a change to branch master
in repository pycxx.

      from  a65f8d1   Fixed VCS URL (https)
       new  d11e238   record new upstream branch created by importing pycxx_7.0.1.orig.tar.gz
       new  5183a3c   Import pycxx_7.0.1.orig.tar.gz
       new  94f4f62   fix includes to match packaged layout
       new  d294c2c   merge patched into master
       new  8a9c497   d/control: Bumps standards version
       new  f8e6849   d/control: Removes XS-Testsuite field
       new  3815dd8   Adds debian/NEWS file
       new  5b03604   Sets release to unstable

The 8 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:
 CXX/Config.hxx                               |   6 +
 CXX/{Config.hxx => CxxDebug.hxx}             |   6 +-
 CXX/Python2/Exception.hxx                    | 289 ++++------
 CXX/Python2/ExtensionModule.hxx              |   6 +-
 CXX/Python2/ExtensionOldType.hxx             |   8 +-
 CXX/Python2/ExtensionType.hxx                |  51 +-
 CXX/Python2/ExtensionTypeBase.hxx            |  10 +-
 CXX/Python2/Extensions.hxx                   |   2 +-
 CXX/Python2/IndirectPythonInterface.hxx      |  49 +-
 CXX/Python2/Objects.hxx                      | 369 +++++++------
 CXX/Python2/PythonType.hxx                   | 104 +++-
 CXX/Python2/cxx_standard_exceptions.hxx      |  46 ++
 CXX/Python3/Exception.hxx                    | 290 ++++------
 CXX/Python3/ExtensionModule.hxx              |   6 +-
 CXX/Python3/ExtensionOldType.hxx             |   8 +-
 CXX/Python3/ExtensionType.hxx                |  51 +-
 CXX/Python3/ExtensionTypeBase.hxx            |  11 +-
 CXX/Python3/Extensions.hxx                   |   2 +-
 CXX/Python3/IndirectPythonInterface.hxx      |  42 +-
 CXX/Python3/Objects.hxx                      | 243 ++++++---
 CXX/Python3/PythonType.hxx                   |  92 +++-
 CXX/Python3/cxx_standard_exceptions.hxx      |  68 +++
 CXX/Version.hxx                              |   6 +-
 Demo/Python2/example.cxx                     |  30 +-
 Demo/Python2/range.cxx                       |  11 +-
 Demo/Python2/range.hxx                       |   8 +-
 Demo/Python2/simple.cxx                      |  49 +-
 Demo/Python2/test_simple.py                  |  13 +-
 Demo/Python3/example.cxx                     |  26 +-
 Demo/Python3/pycxx_iter.cxx                  |   2 +-
 Demo/Python3/pycxx_iter.hxx                  |   2 +-
 Demo/Python3/range.cxx                       |  22 +-
 Demo/Python3/range.hxx                       |  12 +-
 Demo/Python3/simple.cxx                      | 108 +++-
 Demo/Python3/test_assert.hxx                 |  19 +-
 Demo/Python3/test_simple.py                  |  83 ++-
 Doc/Python2/PyCXX.html                       |  34 +-
 Doc/Python3/PyCXX.html                       | 187 +++----
 Doc/Python3/make_contents.py                 |  12 +-
 Lib/__init__.py                              |   4 +-
 PyCXX-Release-Notes.txt                      |  13 +
 README.html                                  |  82 ++-
 README.txt                                   |  13 +
 SourceForge/PyCXX-Python2.html               |   1 +
 SourceForge/PyCXX-Python3.html               |   1 +
 SourceForge/README.html                      |   1 +
 SourceForge/deploy.sh                        |   2 +-
 SourceForge/index.html                       | 118 +---
 SourceForge/style.css                        |   1 +
 Src/IndirectPythonInterface.cxx              | 134 ++---
 Src/Python2/cxx_exceptions.cxx               |  72 +++
 Src/Python2/cxx_extensions.cxx               | 772 +++++++++++++++++----------
 Src/Python3/cxx_exceptions.cxx               |  72 +++
 Src/Python3/cxx_extensions.cxx               | 620 +++++++++++++--------
 Src/Python3/cxxsupport.cxx                   |  20 +-
 Src/cxx_exceptions.cxx                       |   7 +
 build-all.cmd                                |  78 ++-
 build-all.sh                                 |  19 +-
 debian/.git-dpm                              |  14 +-
 debian/NEWS                                  |   7 +
 debian/changelog                             |  14 +-
 debian/control                               |   3 +-
 debian/patches/01_change_include_paths.patch |   2 +-
 debian/patches/fix-version.patch             |  25 -
 debian/patches/series                        |   1 -
 how_to_release_pycxx.txt                     |  12 +-
 make_src_kit.py                              |   2 +-
 setup.py                                     |  16 +-
 setup_makefile.py                            |  32 +-
 tag_pycxx.py                                 |  32 +-
 70 files changed, 2712 insertions(+), 1861 deletions(-)
 copy CXX/{Config.hxx => CxxDebug.hxx} (95%)
 create mode 100644 CXX/Python2/cxx_standard_exceptions.hxx
 create mode 100644 CXX/Python3/cxx_standard_exceptions.hxx
 create mode 100644 PyCXX-Release-Notes.txt
 create mode 100644 README.txt
 create mode 120000 SourceForge/PyCXX-Python2.html
 create mode 120000 SourceForge/PyCXX-Python3.html
 create mode 120000 SourceForge/README.html
 create mode 120000 SourceForge/style.css
 create mode 100644 Src/Python2/cxx_exceptions.cxx
 create mode 100644 Src/Python3/cxx_exceptions.cxx
 create mode 100644 Src/cxx_exceptions.cxx
 create mode 100644 debian/NEWS
 delete mode 100644 debian/patches/fix-version.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pycxx.git



More information about the Python-modules-commits mailing list