[Python-modules-commits] [python-fs] branch upstream updated (25730d5 -> 21729b1)

Jan Dittberner jandd at moszumanska.debian.org
Sun Jan 3 19:30:07 UTC 2016


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

jandd pushed a change to branch upstream
in repository python-fs.

      from  25730d5   Imported Upstream version 0.4.0
       new  21729b1   Import python-fs_0.5.4.orig.tar.gz

The 1 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.txt                                 | 106 ++++
 LICENSE.txt                                 |  28 ++
 MANIFEST.in                                 |   5 +
 PKG-INFO                                    |  82 ++-
 README.txt                                  |  67 +++
 fs.egg-info/PKG-INFO                        |  86 ++++
 fs.egg-info/SOURCES.txt                     | 118 +++++
 fs.egg-info/dependency_links.txt            |   1 +
 fs.egg-info/entry_points.txt                |  12 +
 fs.egg-info/pbr.json                        |   1 +
 fs.egg-info/requires.txt                    |   2 +
 fs.egg-info/top_level.txt                   |   1 +
 fs.egg-info/version_info.json               |   6 +
 fs/__init__.py                              |  15 +-
 fs/appdirfs.py                              |  26 +-
 fs/appdirs.py                               |   1 -
 fs/base.py                                  | 742 ++++++++++++++++------------
 fs/batch.py                                 | 155 ------
 fs/browsewin.py                             |   6 +-
 fs/commands/fscat                           |   3 -
 fs/commands/fscp                            |   3 -
 fs/commands/fsinfo                          |   3 -
 fs/commands/fsls                            |   3 -
 fs/commands/fsls.py                         | 138 +++---
 fs/commands/fsmkdir                         |   3 -
 fs/commands/fsmount                         |   3 -
 fs/commands/fsmount.py                      |  75 ++-
 fs/commands/fsmv                            |   3 -
 fs/commands/fsrm                            |   3 -
 fs/commands/fsserve                         |   3 -
 fs/commands/fsserve.py                      |  76 +--
 fs/commands/fstree                          |   3 -
 fs/commands/fstree.py                       |  30 +-
 fs/commands/runner.py                       | 240 ++++-----
 fs/compatibility.py                         |  49 ++
 fs/contrib/archivefs.py                     | 513 +++++++++++++++++++
 fs/contrib/davfs/__init__.py                |  59 ++-
 fs/contrib/davfs/xmlobj.py                  |   1 +
 fs/contrib/sqlitefs.py                      | 705 ++++++++++++++++++++++++++
 fs/contrib/tahoelafs/__init__.py            |   4 +-
 fs/errors.py                                |  42 +-
 fs/expose/django_storage.py                 |   2 +-
 fs/expose/dokan/__init__.py                 | 133 ++---
 fs/expose/ftp.py                            | 292 +++++++++++
 fs/expose/fuse/__init__.py                  | 194 +++++---
 fs/expose/fuse/{fuse_ctypes.py => fuse.py}  | 162 +++---
 fs/expose/fuse/{fuse_ctypes.py => fuse3.py} | 192 ++++---
 fs/expose/fuse/fuse_ctypes.py               |  81 ++-
 fs/expose/http.py                           |  52 +-
 fs/expose/importhook.py                     |  14 +-
 fs/expose/sftp.py                           | 184 ++++---
 fs/expose/wsgi/dirtemplate.py               |  23 +-
 fs/expose/wsgi/serve_home.py                |   8 +-
 fs/expose/wsgi/wsgi.py                      | 113 ++---
 fs/expose/xmlrpc.py                         |  50 +-
 fs/filelike.py                              | 125 ++---
 fs/ftpfs.py                                 | 354 ++++++-------
 fs/httpfs.py                                |  48 +-
 fs/iotools.py                               | 255 ++++++++++
 fs/memoryfs.py                              | 246 +++++----
 fs/mountfs.py                               | 124 +++--
 fs/multifs.py                               | 113 +++--
 fs/opener.py                                | 484 +++++++++---------
 fs/osfs/__init__.py                         | 197 +++++---
 fs/osfs/watch.py                            |   2 +
 fs/osfs/watch_inotify.py                    |   8 +-
 fs/osfs/watch_win32.py                      |  48 +-
 fs/osfs/xattrs.py                           |   8 +-
 fs/path.py                                  | 281 ++++++-----
 fs/remote.py                                | 116 ++---
 fs/remotefs.py                              | 191 +++++++
 fs/rpcfs.py                                 | 174 ++++---
 fs/s3fs.py                                  |  71 ++-
 fs/sftpfs.py                                | 278 ++++++-----
 fs/tempfs.py                                |  62 ++-
 fs/tests/__init__.py                        | 732 ++++++++++++++++-----------
 fs/tests/data/UTF-8-demo.txt                | 212 ++++++++
 fs/tests/test_archivefs.py                  | 198 ++++++++
 fs/tests/test_errors.py                     |   6 +
 fs/tests/test_expose.py                     | 135 +----
 fs/tests/test_fs.py                         |  29 +-
 fs/tests/test_ftpfs.py                      |  36 +-
 fs/tests/test_importhook.py                 |  19 +-
 fs/tests/test_iotools.py                    |  56 +++
 fs/tests/test_mountfs.py                    |  83 ++++
 fs/tests/test_multifs.py                    |  85 ++++
 fs/tests/test_opener.py                     |  32 ++
 fs/tests/test_path.py                       |  41 +-
 fs/tests/test_remote.py                     | 121 ++---
 fs/tests/test_rpcfs.py                      | 100 ++++
 fs/tests/test_s3fs.py                       |  10 +-
 fs/tests/test_sqlitefs.py                   |  17 +
 fs/tests/test_utils.py                      | 115 +++++
 fs/tests/test_watch.py                      |  35 +-
 fs/tests/test_wrapfs.py                     |  11 +-
 fs/tests/test_xattr.py                      |  13 +-
 fs/tests/test_zipfs.py                      |  79 +--
 fs/tests/zipfs_binary_test.py               |  45 ++
 fs/utils.py                                 | 383 +++++++++-----
 fs/watch.py                                 |  57 ++-
 fs/wrapfs/__init__.py                       |  89 ++--
 fs/wrapfs/hidedotfilesfs.py                 |   3 +-
 fs/wrapfs/hidefs.py                         |  54 ++
 fs/wrapfs/lazyfs.py                         |   4 +-
 fs/wrapfs/limitsizefs.py                    |  26 +-
 fs/wrapfs/readonlyfs.py                     |  32 +-
 fs/wrapfs/subfs.py                          |  67 +--
 fs/zipfs.py                                 | 106 ++--
 setup.cfg                                   |   5 +
 setup.py                                    |  44 +-
 110 files changed, 7818 insertions(+), 3369 deletions(-)
 create mode 100644 CHANGES.txt
 create mode 100644 LICENSE.txt
 create mode 100644 MANIFEST.in
 create mode 100644 README.txt
 create mode 100644 fs.egg-info/PKG-INFO
 create mode 100644 fs.egg-info/SOURCES.txt
 create mode 100644 fs.egg-info/dependency_links.txt
 create mode 100644 fs.egg-info/entry_points.txt
 create mode 100644 fs.egg-info/pbr.json
 create mode 100644 fs.egg-info/requires.txt
 create mode 100644 fs.egg-info/top_level.txt
 create mode 100644 fs.egg-info/version_info.json
 delete mode 100644 fs/batch.py
 delete mode 100644 fs/commands/fscat
 delete mode 100644 fs/commands/fscp
 delete mode 100644 fs/commands/fsinfo
 delete mode 100644 fs/commands/fsls
 delete mode 100644 fs/commands/fsmkdir
 delete mode 100644 fs/commands/fsmount
 delete mode 100644 fs/commands/fsmv
 delete mode 100644 fs/commands/fsrm
 delete mode 100644 fs/commands/fsserve
 delete mode 100644 fs/commands/fstree
 create mode 100644 fs/compatibility.py
 create mode 100644 fs/contrib/archivefs.py
 create mode 100644 fs/contrib/sqlitefs.py
 create mode 100644 fs/expose/ftp.py
 copy fs/expose/fuse/{fuse_ctypes.py => fuse.py} (86%)
 copy fs/expose/fuse/{fuse_ctypes.py => fuse3.py} (95%)
 create mode 100644 fs/iotools.py
 create mode 100644 fs/remotefs.py
 create mode 100644 fs/tests/data/UTF-8-demo.txt
 create mode 100644 fs/tests/test_archivefs.py
 create mode 100644 fs/tests/test_iotools.py
 create mode 100644 fs/tests/test_mountfs.py
 create mode 100644 fs/tests/test_multifs.py
 create mode 100644 fs/tests/test_opener.py
 create mode 100644 fs/tests/test_rpcfs.py
 create mode 100644 fs/tests/test_sqlitefs.py
 create mode 100644 fs/tests/test_utils.py
 create mode 100644 fs/tests/zipfs_binary_test.py
 create mode 100644 fs/wrapfs/hidefs.py
 create mode 100644 setup.cfg

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



More information about the Python-modules-commits mailing list