[Python-modules-commits] [cookiecutter] branch upstream updated (e0b4504 -> e54282d)

Vincent Bernat bernat at moszumanska.debian.org
Fri Oct 9 18:01:48 UTC 2015


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

bernat pushed a change to branch upstream
in repository cookiecutter.

      from  e0b4504   Imported Upstream version 1.0.0
      adds  e54282d   Import cookiecutter_1.1.0.orig.tar.gz

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |   1 +
 .travis.yml                                        |   4 +-
 AUTHORS.rst                                        |  32 ++-
 CONTRIBUTING.rst                                   |  99 ++++++--
 HISTORY.rst                                        |  96 +++++++-
 Makefile                                           |   6 +-
 README.rst                                         |  84 +++++--
 appveyor.yml                                       |  20 +-
 appveyor/install.ps1                               |  86 -------
 appveyor/setup_build_env.cmd                       |  16 --
 cookiecutter/__init__.py                           |   7 +-
 cookiecutter/cli.py                                |  71 +++---
 cookiecutter/compat.py                             | 140 ------------
 cookiecutter/config.py                             |   8 +-
 cookiecutter/exceptions.py                         |  13 ++
 cookiecutter/generate.py                           |  98 +++++++-
 cookiecutter/main.py                               |  64 ++++--
 cookiecutter/prompt.py                             | 152 +++++++++----
 cookiecutter/replay.py                             |  57 +++++
 cookiecutter/vcs.py                                |  14 +-
 docs/advanced_usage.rst                            |  61 +++++
 docs/conf.py                                       |   4 +-
 docs/contributor_guidelines.rst                    |   3 +-
 docs/contributor_setup.rst                         |  15 +-
 docs/contributor_testing.rst                       |  24 +-
 docs/cookiecutter.rst                              |  10 +-
 docs/core_committer_guide.rst                      |  10 +
 docs/installation.rst                              |  27 ++-
 docs/troubleshooting.rst                           |   6 +
 logo/cookiecutter-logo-large.png                   | Bin 0 -> 93083 bytes
 logo/cookiecutter-logo.svg                         |  99 ++++++++
 setup.py                                           |  62 ++---
 tests/conftest.py                                  |  95 +++++---
 tests/replay/conftest.py                           |  31 +++
 tests/replay/test_dump.py                          | 101 +++++++++
 tests/replay/test_load.py                          |  65 ++++++
 tests/replay/test_replay.py                        |  63 ++++++
 tests/test-config/valid-config.yaml                |   1 +
 .../{{cookiecutter.repo_name}}/README.rst          |   2 +-
 .../{{cookiecutter.repo_name}}/README.txt}         |   2 +-
 .../rendered/not_rendered.yml                      |   2 +
 .../README.rst                                     |   2 +-
 .../README.rst                                     |   2 +-
 .../README.txt}                                    |   2 +-
 .../{{cookiecutter.filename}}.py                   |   1 -
 tests/test-pyhooks/hooks/post_gen_project.py       |   1 -
 tests/test-pyhooks/hooks/pre_gen_project.py        |   1 -
 tests/test-pyshellhooks/hooks/post_gen_project.py  |   1 -
 tests/test-pyshellhooks/hooks/pre_gen_project.py   |   1 -
 tests/test-replay/cookiedozer_load.json            |   1 +
 tests/test-replay/invalid_replay.json              |   1 +
 tests/test_cli.py                                  | 184 ++++++++++++++-
 tests/test_compat.py                               |  19 --
 tests/test_cookiecutter_invocation.py              |  53 +++++
 tests/test_cookiecutter_local_with_input.py        |   8 +-
 tests/test_cookiecutter_repo_arg.py                |  11 +-
 tests/test_generate_context.py                     |  22 +-
 tests/test_generate_copy_without_render.py         |  71 ++++++
 tests/test_generate_files.py                       |   6 +
 tests/test_get_config.py                           |  13 +-
 tests/test_get_user_config.py                      |   1 +
 tests/test_main.py                                 |  29 +++
 tests/test_output_folder.py                        |  17 ++
 tests/test_preferred_encoding.py                   |  27 +++
 tests/test_prompt.py                               | 251 ++++++++++++++-------
 tests/test_read_user_choice.py                     |  41 ++++
 tests/test_read_user_variable.py                   |  24 ++
 tests/test_read_user_yes_no.py                     |  28 +++
 tests/test_specify_output_dir.py                   |  69 ++++++
 tests/test_vcs.py                                  |  38 ++++
 tests/test_vcs_prompt.py                           |  16 +-
 tox.ini                                            |  21 +-
 72 files changed, 2052 insertions(+), 661 deletions(-)
 delete mode 100644 appveyor/install.ps1
 delete mode 100644 appveyor/setup_build_env.cmd
 delete mode 100644 cookiecutter/compat.py
 create mode 100644 cookiecutter/replay.py
 create mode 100644 logo/cookiecutter-logo-large.png
 create mode 100644 logo/cookiecutter-logo.svg
 create mode 100644 tests/replay/conftest.py
 create mode 100644 tests/replay/test_dump.py
 create mode 100644 tests/replay/test_load.py
 create mode 100644 tests/replay/test_replay.py
 copy tests/{fake-repo-pre2 => test-generate-copy-without-render}/{{cookiecutter.repo_name}}/README.rst (57%)
 copy tests/{fake-repo-tmpl/{{cookiecutter.repo_name}}/README.rst => test-generate-copy-without-render/{{cookiecutter.repo_name}}/README.txt} (57%)
 mode change 100755 => 100644
 create mode 100644 tests/test-generate-copy-without-render/{{cookiecutter.repo_name}}/rendered/not_rendered.yml
 copy tests/{fake-repo-pre2/{{cookiecutter.repo_name}} => test-generate-copy-without-render/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}-not-rendered}/README.rst (57%)
 copy tests/{fake-repo-pre2/{{cookiecutter.repo_name}} => test-generate-copy-without-render/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}-rendered}/README.rst (57%)
 copy tests/{fake-repo-tmpl/{{cookiecutter.repo_name}}/README.rst => test-generate-copy-without-render/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}-rendered/README.txt} (57%)
 mode change 100755 => 100644
 create mode 100644 tests/test-replay/cookiedozer_load.json
 create mode 100644 tests/test-replay/invalid_replay.json
 delete mode 100644 tests/test_compat.py
 create mode 100644 tests/test_cookiecutter_invocation.py
 create mode 100644 tests/test_generate_copy_without_render.py
 create mode 100644 tests/test_main.py
 create mode 100644 tests/test_preferred_encoding.py
 create mode 100644 tests/test_read_user_choice.py
 create mode 100755 tests/test_read_user_variable.py
 create mode 100644 tests/test_read_user_yes_no.py
 create mode 100644 tests/test_specify_output_dir.py

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



More information about the Python-modules-commits mailing list