[Python-modules-commits] [python-llfuse] branch master updated (417b56c -> 8ed3db7)

Nikolaus Rath nikratio-guest at moszumanska.debian.org
Mon Feb 1 16:49:53 UTC 2016


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  417b56c   Update Vcs fields for git migration
       new  c392c6f   record new upstream branch created by importing python-llfuse_0.42.1+dfsg.orig.tar.gz
       new  1de78f8   Import python-llfuse_0.42.1+dfsg.orig.tar.gz
       new  acd7a1b   Use local intersphinx inventory
       new  02917fb   merge patched into master
       new  f1417ab   From 4baa45092b0517cb905c0993610885f52a09c735 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath <Nikolaus at rath.org> Date: Thu, 8 Oct 2015 12:24:35 -0700 Subject: Force use of libattr1-dev API
       new  cec8adc   merge patched into master
       new  9c1ab2d   Force use of libattr1-dev API
       new  f0bd44e   merge patched into master
       new  8ed3db7   New upstream release.

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:
 Changes.rst                                        |   263 +
 Changes.txt                                        |   189 -
 Include/fuse_common.pxd                            |    39 +-
 Include/fuse_lowlevel.pxd                          |    63 +-
 Include/libc/errno.pxd                             |    23 -
 Include/libc/sys/stat.pxd                          |    51 -
 Include/libc/sys/statvfs.pxd                       |     5 +-
 Include/libc/sys/types.pxd                         |    24 -
 Include/libc/xattr.pxd                             |    59 -
 Include/pthread.pxd                                |    49 +
 PKG-INFO                                           |    21 +-
 README.rst                                         |    19 +-
 debian/.git-dpm                                    |    14 +-
 debian/changelog                                   |     5 +-
 debian/control                                     |     2 +-
 debian/patches/force_xattr_api.diff                |    54 +-
 debian/patches/mips_dev_t.diff                     |    56 -
 debian/patches/series                              |     2 -
 debian/patches/setattr_compat_patch.diff           |    38 -
 .../patches/use-local-intersphinx-inventory.patch  |     4 +-
 examples/lltest.py                                 |    48 +-
 examples/passthroughfs.py                          |   119 +-
 examples/tmpfs.py                                  |    77 +-
 rst/about.rst                                      |     5 +-
 rst/changes.rst                                    |     1 +
 rst/conf.py                                        |     2 +-
 rst/data.rst                                       |    82 +-
 rst/example.rst                                    |    36 +-
 rst/fuse_api.rst                                   |     6 +-
 rst/general.rst                                    |    79 +
 rst/getting_started.rst                            |    20 -
 rst/gotchas.rst                                    |    30 +
 rst/index.rst                                      |    10 +-
 rst/install.rst                                    |    15 +-
 rst/util.rst                                       |    14 +
 setup.py                                           |   125 +-
 src/darwin_compat.c                                |   247 +
 src/darwin_compat.h                                |    49 +
 src/fuse_api.pxi                                   |   627 +
 src/gettime.h                                      |    59 +
 src/{llfuse => }/handlers.pxi                      |   464 +-
 src/llfuse.c                                       | 49713 +++++++++++++++++++
 src/llfuse.egg-info/PKG-INFO                       |    21 +-
 src/llfuse.egg-info/SOURCES.txt                    |    55 +-
 src/llfuse.egg-info/requires.txt                   |     1 +
 src/llfuse.h                                       |    25 +
 src/llfuse.pyx                                     |   173 +
 src/llfuse/__init__.py                             |    18 -
 src/llfuse/capi.c                                  |    10 -
 src/llfuse/capi.pyx                                |   131 -
 src/llfuse/capi_darwin.c                           | 32113 ------------
 src/llfuse/capi_freebsd.c                          | 31314 ------------
 src/llfuse/capi_linux.c                            | 31552 ------------
 src/llfuse/fuse_api.pxi                            |   401 -
 src/llfuse/misc.pxi                                |   341 -
 src/llfuse/pyapi.py                                |   592 -
 src/llfuse/version.c                               |    20 -
 src/{llfuse => }/lock.c                            |     7 +-
 src/lock.h                                         |    22 +
 src/{llfuse/time.c => macros.c}                    |    32 +-
 src/misc.pxi                                       |   617 +
 src/operations.pxi                                 |   537 +
 src/xattr.h                                        |   106 +
 test/conftest.py                                   |    21 +-
 test/pytest.ini                                    |     2 +-
 test/test_api.py                                   |    83 +
 test/test_examples.py                              |   154 +-
 test/test_fs.py                                    |   241 +
 test/util.py                                       |   123 +
 69 files changed, 53947 insertions(+), 97573 deletions(-)
 create mode 100644 Changes.rst
 delete mode 100644 Changes.txt
 delete mode 100644 Include/libc/errno.pxd
 delete mode 100644 Include/libc/sys/stat.pxd
 delete mode 100644 Include/libc/sys/types.pxd
 delete mode 100644 Include/libc/xattr.pxd
 create mode 100644 Include/pthread.pxd
 delete mode 100644 debian/patches/mips_dev_t.diff
 delete mode 100644 debian/patches/setattr_compat_patch.diff
 create mode 100644 rst/changes.rst
 create mode 100644 rst/general.rst
 delete mode 100644 rst/getting_started.rst
 create mode 100644 rst/gotchas.rst
 create mode 100644 rst/util.rst
 create mode 100644 src/darwin_compat.c
 create mode 100644 src/darwin_compat.h
 create mode 100644 src/fuse_api.pxi
 create mode 100644 src/gettime.h
 rename src/{llfuse => }/handlers.pxi (59%)
 create mode 100644 src/llfuse.c
 create mode 100644 src/llfuse.egg-info/requires.txt
 create mode 100644 src/llfuse.h
 create mode 100644 src/llfuse.pyx
 delete mode 100644 src/llfuse/__init__.py
 delete mode 100644 src/llfuse/capi.c
 delete mode 100644 src/llfuse/capi.pyx
 delete mode 100644 src/llfuse/capi_darwin.c
 delete mode 100644 src/llfuse/capi_freebsd.c
 delete mode 100644 src/llfuse/capi_linux.c
 delete mode 100644 src/llfuse/fuse_api.pxi
 delete mode 100644 src/llfuse/misc.pxi
 delete mode 100644 src/llfuse/pyapi.py
 delete mode 100644 src/llfuse/version.c
 rename src/{llfuse => }/lock.c (98%)
 create mode 100644 src/lock.h
 rename src/{llfuse/time.c => macros.c} (67%)
 create mode 100644 src/misc.pxi
 create mode 100644 src/operations.pxi
 create mode 100644 src/xattr.h
 create mode 100755 test/test_api.py
 create mode 100755 test/test_fs.py
 create mode 100644 test/util.py

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