[Python-modules-commits] [flask-autoindex] branch upstream updated (c79c5b2 -> 44f0f38)

Jonathan Cristopher Carter jcc at moszumanska.debian.org
Mon Sep 4 12:20:01 UTC 2017


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

jcc pushed a change to branch upstream
in repository flask-autoindex.

      from  c79c5b2   Imported Upstream version 0.5
      adds  37a9c3b   [svn-inject] Applying Debian modifications (0.5-1) to trunk
      adds  9d4db06   Add comment about the license of the icons used form python-flask-silk
      adds  f39ad4f   Update Description
      adds  a5080ae   Release 0.5-1
      adds  2bed766   Imported Debian patch 0.5-1
      adds  ee7d3cd   Upload to unstable.
      adds  dead199   Imported Debian patch 0.5-2
      adds  d720b9e   Upstream patch to fix tests with flask 0.10.1 (Closes: 719302)
      adds  6fd015e   Refresh the patch
      adds  d665d8f   Release 0.5-3 to unstable
      adds  d95f018   Imported Debian patch 0.5-3
      adds  29102b1   add a note about Silk's license
      adds  cb15452   Pass tests with Flask 0.10.1
      adds  8e08c1f   Initialize git-dpm
      adds  09e7904   git-dpm config
      adds  abf4dd4   Update Vcs fields for git migration
      adds  70b110c   Fixed VCS URL (https)
      adds  44f0f38   Bringing back into dpmt

No new revisions were added by this update.

Summary of changes:
 Flask_AutoIndex.egg-info/PKG-INFO             |  36 ---
 Flask_AutoIndex.egg-info/SOURCES.txt          | 141 ----------
 Flask_AutoIndex.egg-info/dependency_links.txt |   1 -
 Flask_AutoIndex.egg-info/not-zip-safe         |   1 -
 Flask_AutoIndex.egg-info/requires.txt         |   2 -
 Flask_AutoIndex.egg-info/top_level.txt        |   1 -
 PKG-INFO                                      |   2 +-
 debian/changelog                              |  65 +++++
 debian/clean                                  |   1 +
 debian/compat                                 |   1 +
 debian/control                                |  65 +++++
 debian/copyright                              |  41 +++
 debian/patches/series                         |   1 +
 debian/patches/use-default-theme.patch        |  24 ++
 debian/python-flask-autoindex-doc.doc-base    |  11 +
 debian/python-flask-autoindex-doc.docs        |   1 +
 debian/python-flask-autoindex.install         |   3 +
 debian/python-flask-autoindex.links           |   5 +
 debian/python-flask-autoindex.pyremove        |   4 +
 debian/python3-flask-autoindex.install        |   3 +
 debian/python3-flask-autoindex.links          |   5 +
 debian/python3-flask-autoindex.pyremove       |   4 +
 debian/rules                                  |  12 +
 debian/source/format                          |   1 +
 debian/watch                                  |   3 +
 docs/_themes/LICENSE                          |  37 ---
 docs/_themes/README                           |  31 ---
 docs/_themes/flask/layout.html                |  16 --
 docs/_themes/flask/relations.html             |  19 --
 docs/_themes/flask/static/flasky.css_t        | 387 --------------------------
 docs/_themes/flask/static/small_flask.css     |  70 -----
 docs/_themes/flask/theme.conf                 |   7 -
 docs/_themes/flask_small/layout.html          |  22 --
 docs/_themes/flask_small/static/flasky.css_t  | 287 -------------------
 docs/_themes/flask_small/theme.conf           |  10 -
 docs/_themes/flask_theme_support.py           |  86 ------
 docs/conf.py                                  |   2 +-
 docs/index.rst                                |  37 ++-
 flask_autoindex/__init__.py                   |  85 ++++--
 flask_autoindex/entry.py                      |  45 +--
 flask_autoindex/icons.py                      |   7 +-
 flask_autoindex/run.py                        |  10 +
 flaskext/autoindex/converters.py              |  37 ---
 flaskext/test.py                              |   1 -
 setup.py                                      |  11 +-
 tests/__init__.py                             |  63 +++--
 tests/blueprinttest/static/asc.gif            | Bin 53 -> 0 bytes
 tests/blueprinttest/static/autoindex.css      | 171 ------------
 tests/blueprinttest/static/desc.gif           | Bin 53 -> 0 bytes
 tests/static/test.bak                         |   0
 50 files changed, 438 insertions(+), 1437 deletions(-)
 delete mode 100644 Flask_AutoIndex.egg-info/PKG-INFO
 delete mode 100644 Flask_AutoIndex.egg-info/SOURCES.txt
 delete mode 100644 Flask_AutoIndex.egg-info/dependency_links.txt
 delete mode 100644 Flask_AutoIndex.egg-info/not-zip-safe
 delete mode 100644 Flask_AutoIndex.egg-info/requires.txt
 delete mode 100644 Flask_AutoIndex.egg-info/top_level.txt
 create mode 100644 debian/changelog
 create mode 100644 debian/clean
 create mode 100644 debian/compat
 create mode 100644 debian/control
 create mode 100644 debian/copyright
 create mode 100644 debian/patches/series
 create mode 100644 debian/patches/use-default-theme.patch
 create mode 100644 debian/python-flask-autoindex-doc.doc-base
 create mode 100644 debian/python-flask-autoindex-doc.docs
 create mode 100644 debian/python-flask-autoindex.install
 create mode 100644 debian/python-flask-autoindex.links
 create mode 100644 debian/python-flask-autoindex.pyremove
 create mode 100644 debian/python3-flask-autoindex.install
 create mode 100644 debian/python3-flask-autoindex.links
 create mode 100644 debian/python3-flask-autoindex.pyremove
 create mode 100755 debian/rules
 create mode 100644 debian/source/format
 create mode 100644 debian/watch
 delete mode 100644 docs/_themes/LICENSE
 delete mode 100644 docs/_themes/README
 delete mode 100644 docs/_themes/flask/layout.html
 delete mode 100644 docs/_themes/flask/relations.html
 delete mode 100644 docs/_themes/flask/static/flasky.css_t
 delete mode 100644 docs/_themes/flask/static/small_flask.css
 delete mode 100644 docs/_themes/flask/theme.conf
 delete mode 100644 docs/_themes/flask_small/layout.html
 delete mode 100644 docs/_themes/flask_small/static/flasky.css_t
 delete mode 100644 docs/_themes/flask_small/theme.conf
 delete mode 100644 docs/_themes/flask_theme_support.py
 create mode 100644 flask_autoindex/run.py
 delete mode 100644 flaskext/autoindex/converters.py
 delete mode 100644 flaskext/test.py
 delete mode 100644 tests/blueprinttest/static/asc.gif
 delete mode 100644 tests/blueprinttest/static/autoindex.css
 delete mode 100644 tests/blueprinttest/static/desc.gif
 delete mode 100644 tests/static/test.bak

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



More information about the Python-modules-commits mailing list