[Python-modules-commits] [python-formencode] branch master updated (0bda129 -> d32ec6f)

Neil Muller drnlmza-guest at moszumanska.debian.org
Tue Jun 14 13:00:07 UTC 2016


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

drnlmza-guest pushed a change to branch master
in repository python-formencode.

      from  0bda129   Fixed VCS URL (https)
       new  a73420c   Update watch file to point at upstream github
       new  83907e2   record new upstream branch created by importing python-formencode_1.3.0.orig.tar.gz
       new  f78dafd   Import python-formencode_1.3.0.orig.tar.gz
       new  b117d46   remove-dns-tests.diff
       new  f45e2ce   disable_pkg_resources_in_tests
       new  1cc28c1   Fix a collection of errors from msgfmt.
       new  5b74f4f   Remove tests from test_email that require dns.
       new  0323470   merge patched into master
       new  cf03377   Update copyright format to be machine readable
       new  c10a908   Tweak package descriptions and bump standards version
       new  d32ec6f   Update changelog

The 11 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:
 .gitattributes                                     |  19 ++
 .gitignore                                         |  18 ++
 .travis.yml                                        |  13 ++
 FormEncode.egg-info/PKG-INFO                       |  23 ---
 FormEncode.egg-info/SOURCES.txt                    | 133 -------------
 FormEncode.egg-info/dependency_links.txt           |   1 -
 FormEncode.egg-info/not-zip-safe                   |   1 -
 FormEncode.egg-info/requires.txt                   |   6 -
 FormEncode.egg-info/top_level.txt                  |   1 -
 PKG-INFO                                           |  23 ---
 README.rst                                         |  30 +++
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  19 +-
 debian/control                                     |  11 +-
 debian/copyright                                   |  72 ++++---
 ...03-Fix-a-collection-of-errors-from-msgfmt.patch | 150 ++++++++++++++
 ...ve-tests-from-test_email-that-require-dns.patch |  33 ++++
 .../patches/disable_pkg_resources_in_tests.patch   |   2 +-
 debian/patches/remove-dns-tests.diff               |   4 +-
 debian/patches/series                              |   2 +
 debian/watch                                       |   4 +-
 docs/Makefile                                      | 130 ++++++++++++
 docs/Validator.txt                                 |  16 +-
 docs/_static/bitbucket.png                         | Bin 0 -> 6389 bytes
 docs/_static/github.png                            | Bin 0 -> 3170 bytes
 docs/_static/sourceforge.png                       | Bin 0 -> 2119 bytes
 docs/_themes/old/theme.conf                        |   7 +
 docs/conf.py                                       | 217 +++++++++++++++++++++
 docs/make.bat                                      | 170 ++++++++++++++++
 docs/modules/validators.txt                        |   1 +
 examples/WebwareExamples/__init__.py               |   1 +
 examples/WebwareExamples/index.py                  | 101 ++++++++++
 examples/webware_example.ini                       |  20 ++
 formencode/i18n/it/LC_MESSAGES/FormEncode.po       |   2 +-
 formencode/i18n/ja/LC_MESSAGES/FormEncode.po       |   2 +-
 formencode/i18n/ko/LC_MESSAGES/FormEncode.po       |   2 +-
 formencode/i18n/nl/LC_MESSAGES/FormEncode.mo       | Bin 8537 -> 11923 bytes
 formencode/i18n/nl/LC_MESSAGES/FormEncode.po       | 120 ++++++------
 formencode/i18n/sl/LC_MESSAGES/FormEncode.po       |   2 -
 formencode/i18n/sr/LC_MESSAGES/FormEncode.po       |   4 +-
 formencode/i18n/sv/LC_MESSAGES/FormEncode.po       |   4 +-
 formencode/i18n/zh_TW/LC_MESSAGES/FormEncode.mo    | Bin 7440 -> 11161 bytes
 formencode/i18n/zh_TW/LC_MESSAGES/FormEncode.po    | 123 ++++++------
 formencode/schema.py                               |   1 +
 formencode/tests/test_email.py                     |  14 --
 formencode/tests/test_i18n.py                      |   2 +-
 formencode/tests/test_schema.py                    |  10 +
 formencode/tests/test_validators.py                |  37 ++++
 formencode/tests/test_variabledecode.py            |   6 +
 formencode/validators.py                           |  63 +++++-
 formencode/variabledecode.py                       |   2 +-
 regen-docs                                         |   9 +
 run-tests-generate-coverage-html                   |   3 +
 setup.cfg                                          |   7 +-
 setup.py                                           |   2 +-
 tox.ini                                            |  24 +++
 56 files changed, 1273 insertions(+), 408 deletions(-)
 create mode 100644 .gitattributes
 create mode 100644 .gitignore
 create mode 100644 .travis.yml
 delete mode 100644 FormEncode.egg-info/PKG-INFO
 delete mode 100644 FormEncode.egg-info/SOURCES.txt
 delete mode 100644 FormEncode.egg-info/dependency_links.txt
 delete mode 100644 FormEncode.egg-info/not-zip-safe
 delete mode 100644 FormEncode.egg-info/requires.txt
 delete mode 100644 FormEncode.egg-info/top_level.txt
 delete mode 100644 PKG-INFO
 create mode 100644 README.rst
 create mode 100644 debian/patches/0003-Fix-a-collection-of-errors-from-msgfmt.patch
 create mode 100644 debian/patches/0004-Remove-tests-from-test_email-that-require-dns.patch
 create mode 100644 docs/Makefile
 create mode 100644 docs/_static/bitbucket.png
 create mode 100644 docs/_static/github.png
 create mode 100644 docs/_static/sourceforge.png
 create mode 100644 docs/_themes/old/theme.conf
 create mode 100644 docs/conf.py
 create mode 100644 docs/make.bat
 create mode 100644 examples/WebwareExamples/__init__.py
 create mode 100644 examples/WebwareExamples/index.py
 create mode 100644 examples/webware_example.ini
 create mode 100755 regen-docs
 create mode 100755 run-tests-generate-coverage-html
 create mode 100644 tox.ini

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



More information about the Python-modules-commits mailing list