[Python-modules-commits] [cookiecutter] branch master updated (bf184fe -> f6b6baf)

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


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

bernat pushed a change to branch master
in repository cookiecutter.

      from  bf184fe   Update Vcs fields for git migration
       new  c09e08d   record new upstream branch created by importing cookiecutter_1.1.0.orig.tar.gz
       new  e54282d   Import cookiecutter_1.1.0.orig.tar.gz
       new  8aeb3c9   merge patched into master
       new  660c819   New upstream release
       new  4b0a7fe   d/rules: use PYBUILD_NAME
       new  f6b6baf   d/rules: enforce use of py.test for tests

The 6 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:
 .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 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  10 +
 debian/control                                     |   4 +-
 ...e-to-use-an-existing-command-to-test-whic.patch |  39 ----
 debian/patches/accept-click-4.x.patch              |  25 --
 debian/patches/series                              |   3 -
 debian/patches/test-dont-expect-ds-store.patch     |  28 ---
 debian/rules                                       |   4 +-
 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                       |   8 +
 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 +-
 80 files changed, 2076 insertions(+), 766 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
 delete mode 100644 debian/patches/0001-tests-ensure-to-use-an-existing-command-to-test-whic.patch
 delete mode 100644 debian/patches/accept-click-4.x.patch
 delete mode 100644 debian/patches/series
 delete mode 100644 debian/patches/test-dont-expect-ds-store.patch
 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