[Python-modules-commits] [python-llfuse] branch master updated (6831969 -> 39d8d28)

Nikolaus Rath nikratio-guest at moszumanska.debian.org
Sun Oct 1 14:55:08 UTC 2017


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

nikratio-guest pushed a change to branch master
in repository python-llfuse.

      from  6831969   Dummy merge, discarded 1f1ff
       new  296256e   Restored mysteriously disappeared upstream files.
       new  7383822   Ignore exceptions during interpreter shutdown
       new  6abe02e   change version to 1.1.1+dfsg-6 (UNRELEASED) Ignore exceptions during interpreter shutdown These can most likely be ignored in general. In the specific case that we are addressing with this, they also seem to be caused by a bug in Python. Closes: #851724.
       new  dc45e69   Uploaded to unstable.
       new  aaa6a54   Ignore exceptions during interpreter shutdown
       new  f9e996b   change version to 1.1.1+dfsg-7 (UNRELEASED) Fix syntax error introduced with new Debian patch in -6.
       new  e63f129   Uploaded to unstable
       new  672a88f   record new upstream branch created by importing python-llfuse_1.2+dfsg.orig.tar.gz
       new  6a7fe0f   Import python-llfuse_1.2+dfsg.orig.tar.gz
       new  01c6469   Use local intersphinx inventory
       new  4b0f2f1   Work around bug in mips+mipsel libc
       new  b33b3f9   Use 'cython3' instead of 'cython' command
       new  7746bd4   Backport properties to Cython 0.23 syntax
       new  aef33d0   Ignore compiler warnings due to old Cython version
       new  f13ff6c   Work around Cython 0.23 bug.
       new  6b20048   Skip extended attribute tests under GNU/kFreeBSD
       new  9f725f7   Ignore exceptions during interpreter shutdown
       new  651adca   merge patched into master
       new  b689b15   Uploaded to unstable.
       new  2047a97   record new upstream branch created by importing python-llfuse_1.3+dfsg.orig.tar.gz
       new  823c932   Import python-llfuse_1.3+dfsg.orig.tar.gz
       new  e2b3ff2   Use local intersphinx inventory
       new  f91cc00   Work around bug in mips+mipsel libc
       new  16f5e3b   Use 'cython3' instead of 'cython' command
       new  1b64d3c   Skip extended attribute tests under GNU/kFreeBSD
       new  90bbb3f   Ignore exceptions during interpreter shutdown
       new  a8760e2   change version to 1.3+dfsg-1 (UNRELEASED) new upstream release
       new  7b28dde   Uploaded to unstable.
       new  102dd30   Use 'cython3' instead of 'cython' command
       new  3066e92   Skip extended attribute tests under GNU/kFreeBSD
       new  a63daae   Ignore exceptions during interpreter shutdown
       new  2788f38   Work around bug in mips+mipsel libc
       new  a5e153c   change version to 1.3+dfsg-2 (UNRELEASED) Fix build for mips
       new  80e95aa   Work around bug in mips+mipsel libc
       new  479f92f   merge patched into master
       new  36a09d7   Uploaded to unstable.
       new  7448ebd   Updated standards version to 4.1.1
       new  f85fc18   python-llfuse-doc is now Multi-Arch: foreign
       new  388d91a   Work around bug in mips+mipsel libc
       new  b071ade   Fixed mips_dev_t.diff one more time. One mips, dev_t is unsigned and we have to apply the match for mips, not just mips64.
       new  36a1a04   Fixed broken Makefile.
       new  39d8d28   Uploaded to unstable.

The 42 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:
 Changes.rst                                        |    24 +-
 Include/libc/sys/statvfs.pxd                       |     1 +
 Include/posix/__init__.pxd                         |     1 +
 Include/posix/stat.pxd                             |    85 +
 PKG-INFO                                           |   121 +-
 README.rst                                         |     9 +-
 debian/.git-dpm                                    |    14 +-
 debian/changelog                                   |    44 +
 debian/control                                     |     3 +-
 ...02-Use-cython3-instead-of-cython-command.patch} |     8 +-
 ...ended-attribute-tests-under-GNU-kFreeBSD.patch} |    12 +-
 ...Backport-properties-to-Cython-0.23-syntax.patch |   348 -
 ...re-exceptions-during-interpreter-shutdown.patch |    30 +
 ...mpiler-warnings-due-to-old-Cython-version.patch |    30 -
 .../patches/0006-Work-around-Cython-0.23-bug.patch |    41 -
 debian/patches/mips_dev_t.diff                     |   102 +-
 debian/patches/pytest-skip.diff                    |   110 -
 debian/patches/series                              |     9 +-
 .../patches/use-local-intersphinx-inventory.patch  |     2 +-
 debian/rules                                       |     2 +
 examples/passthroughfs.py                          |    29 +-
 rst/data.rst                                       |     1 +
 rst/general.rst                                    |     2 +-
 rst/util.rst                                       |     2 +-
 setup.cfg                                          |     1 -
 setup.py                                           |    24 +-
 src/fuse_api.pxi                                   |    17 +-
 src/llfuse.c                                       | 10932 +++++++++++++------
 PKG-INFO => src/llfuse.egg-info/PKG-INFO           |   121 +-
 src/llfuse.egg-info/SOURCES.txt                    |   108 +
 src/llfuse.egg-info/dependency_links.txt           |     1 +
 src/llfuse.egg-info/top_level.txt                  |     1 +
 src/llfuse.egg-info/zip-safe                       |     1 +
 src/llfuse.pyx                                     |    38 +-
 src/macros.c                                       |    37 +-
 src/misc.pxi                                       |   346 +-
 src/operations.pxi                                 |    16 +-
 test/conftest.py                                   |     7 +
 test/test_api.py                                   |    19 +
 test/test_examples.py                              |    16 +
 test/util.py                                       |     2 +-
 41 files changed, 8199 insertions(+), 4518 deletions(-)
 create mode 100644 Include/posix/__init__.pxd
 create mode 100644 Include/posix/stat.pxd
 rename debian/patches/{0003-Use-cython3-instead-of-cython-command.patch => 0002-Use-cython3-instead-of-cython-command.patch} (85%)
 rename debian/patches/{0007-Skip-extended-attribute-tests-under-GNU-kFreeBSD.patch => 0003-Skip-extended-attribute-tests-under-GNU-kFreeBSD.patch} (79%)
 delete mode 100644 debian/patches/0004-Backport-properties-to-Cython-0.23-syntax.patch
 create mode 100644 debian/patches/0004-Ignore-exceptions-during-interpreter-shutdown.patch
 delete mode 100644 debian/patches/0005-Ignore-compiler-warnings-due-to-old-Cython-version.patch
 delete mode 100644 debian/patches/0006-Work-around-Cython-0.23-bug.patch
 delete mode 100644 debian/patches/pytest-skip.diff
 copy PKG-INFO => src/llfuse.egg-info/PKG-INFO (92%)
 create mode 100644 src/llfuse.egg-info/SOURCES.txt
 create mode 100644 src/llfuse.egg-info/dependency_links.txt
 create mode 100644 src/llfuse.egg-info/top_level.txt
 create mode 100644 src/llfuse.egg-info/zip-safe

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



More information about the Python-modules-commits mailing list