This commit is contained in:
commit
0205337fb6
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
38
ccext.py
Normal file
38
ccext.py
Normal file
@ -0,0 +1,38 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from cookiecutter import cli
|
||||
|
||||
import click
|
||||
|
||||
from docutils import nodes
|
||||
from docutils.parsers import rst
|
||||
from docutils.statemachine import ViewList
|
||||
|
||||
|
||||
class CcCommandLineOptions(rst.Directive):
|
||||
def _format_option(self, option):
|
||||
return [
|
||||
".. _`%s`:" % option.name,
|
||||
"",
|
||||
".. option:: " + ", ".join(option.opts),
|
||||
"",
|
||||
option.help,
|
||||
""
|
||||
]
|
||||
|
||||
def process_actions(self):
|
||||
for option in cli.main.params:
|
||||
if isinstance(option, click.core.Option):
|
||||
for line in self._format_option(option):
|
||||
self.view_list.append(line, "")
|
||||
|
||||
def run(self):
|
||||
node = nodes.paragraph()
|
||||
node.document = self.state.document
|
||||
self.view_list = ViewList()
|
||||
self.process_actions()
|
||||
self.state.nested_parse(self.view_list, 0, node)
|
||||
return [node]
|
||||
|
||||
|
||||
def setup(app):
|
||||
app.add_directive('cc-command-line-options', CcCommandLineOptions)
|
3
cookiecutter-1.5.0.tar.gz
Normal file
3
cookiecutter-1.5.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ffe041891781615b06cb2c231029333eb6fca85562f7190661cb25e08e4fab61
|
||||
size 165783
|
5
cookiecutter-doc.changes
Normal file
5
cookiecutter-doc.changes
Normal file
@ -0,0 +1,5 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 3 19:44:14 UTC 2017 - hpj@urpla.net
|
||||
|
||||
- version 1.5.0: initial build
|
||||
|
62
cookiecutter-doc.spec
Normal file
62
cookiecutter-doc.spec
Normal file
@ -0,0 +1,62 @@
|
||||
#
|
||||
# spec file for package cookiecutter-doc
|
||||
#
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2017 LISA GmbH, Bingen, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
|
||||
|
||||
Name: cookiecutter-doc
|
||||
Version: 1.5.0
|
||||
Release: 0
|
||||
License: BSD-3-Clause
|
||||
Summary: A command-line utility that creates projects from project templates
|
||||
Url: https://github.com/audreyr/cookiecutter
|
||||
Group: Development/Languages/Python
|
||||
Source: https://pypi.io/packages/source/c/cookiecutter/cookiecutter-%{version}.tar.gz
|
||||
Source1: ccext.py
|
||||
BuildRequires: python3-Sphinx
|
||||
BuildRequires: python3-binaryornot >= 0.2.0
|
||||
BuildRequires: python3-click >= 5.0
|
||||
BuildRequires: python3-future >= 0.15.2
|
||||
BuildRequires: python3-Jinja2 >= 2.7
|
||||
BuildRequires: python3-jinja2-time >= 0.1.0
|
||||
BuildRequires: python3-poyo >= 0.1.0
|
||||
BuildRequires: python3-whichcraft >= 0.4.0
|
||||
|
||||
#BuildRequires: cookiecutter
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
A command-line utility that creates projects from **cookiecutters** (project
|
||||
templates), e.g. creating a Python package project from a Python package
|
||||
project template.
|
||||
|
||||
This package contains the documentation for cookiecutter.
|
||||
|
||||
%prep
|
||||
%setup -q -n cookiecutter-%{version}
|
||||
cp %{SOURCE1} docs
|
||||
|
||||
%build
|
||||
python3 setup.py build_sphinx && rm build/sphinx/html/.buildinfo
|
||||
|
||||
%install
|
||||
# Only building documentation
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc LICENSE build/sphinx/html
|
||||
|
||||
%changelog
|
5
cookiecutter.changes
Normal file
5
cookiecutter.changes
Normal file
@ -0,0 +1,5 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 3 19:13:47 UTC 2017 - hpj@urpla.net
|
||||
|
||||
- version 1.5.0: initial build
|
||||
|
129
cookiecutter.spec
Normal file
129
cookiecutter.spec
Normal file
@ -0,0 +1,129 @@
|
||||
#
|
||||
# spec file for package cookiecutter
|
||||
#
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2017 LISA GmbH, Bingen, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
|
||||
|
||||
Name: cookiecutter
|
||||
Version: 1.5.0
|
||||
Release: 0
|
||||
License: BSD-3-Clause
|
||||
Summary: A command-line utility that creates projects from project templates
|
||||
Url: https://github.com/audreyr/cookiecutter
|
||||
Group: Development/Languages/Python
|
||||
Source: https://pypi.io/packages/source/c/cookiecutter/cookiecutter-%{version}.tar.gz
|
||||
# PATCH-FIX-OPENSUSE fix-python-invocation-tests.diff hpj@urpla.net
|
||||
Patch0: fix-python-invocation-tests.diff
|
||||
# PATCH-FIX-UPSTREAM fix-caplog-tests.diff hpj@urpla.net
|
||||
Patch1: fix-caplog-tests.diff
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-binaryornot >= 0.2.0
|
||||
BuildRequires: python3-click >= 5.0
|
||||
BuildRequires: python3-future >= 0.15.2
|
||||
BuildRequires: python3-Jinja2 >= 2.7
|
||||
BuildRequires: python3-jinja2-time >= 0.1.0
|
||||
BuildRequires: python3-poyo >= 0.1.0
|
||||
BuildRequires: python3-whichcraft >= 0.4.0
|
||||
BuildRequires: git
|
||||
# Testing requirements
|
||||
BuildRequires: python3-chardet >= 2.0.0
|
||||
BuildRequires: python3-freezegun
|
||||
BuildRequires: python3-pytest
|
||||
BuildRequires: python3-pytest-mock
|
||||
BuildRequires: python3-pytest-capturelog
|
||||
Requires: python3-binaryornot >= 0.2.0
|
||||
Requires: python3-click >= 5.0
|
||||
Requires: python3-future >= 0.15.2
|
||||
Requires: python3-Jinja2 >= 2.7
|
||||
Requires: python3-jinja2-time >= 0.1.0
|
||||
Requires: python3-poyo >= 0.1.0
|
||||
Requires: python3-whichcraft >= 0.4.0
|
||||
Requires: git
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
A command-line utility that creates projects from **cookiecutters** (project
|
||||
templates), e.g. creating a Python package project from a Python package
|
||||
project template.
|
||||
|
||||
* Cross-platform: Windows, Mac, and Linux are officially supported.
|
||||
|
||||
* Works with Python 2.7, 3.3, 3.4, 3.5, and PyPy. *(But you don't have to
|
||||
* know/write Python
|
||||
code to use Cookiecutter.)*
|
||||
|
||||
* Project templates can be in any programming language or markup format:
|
||||
Python, JavaScript, Ruby, CoffeeScript, RST, Markdown, CSS, HTML, you name
|
||||
it. You can use multiple languages in the same project template.
|
||||
|
||||
* Simple command line usage:
|
||||
|
||||
# Create project from the cookiecutter-pypackage.git repo template
|
||||
# You'll be prompted to enter values. Then it'll create your Python
|
||||
# package in the current working directory, based on those values.
|
||||
$ cookiecutter https://github.com/audreyr/cookiecutter-pypackage
|
||||
# For the sake of brevity, repos on GitHub can just use the 'gh' prefix
|
||||
$ cookiecutter gh:audreyr/cookiecutter-pypackage
|
||||
|
||||
* Use it at the command line with a local template:
|
||||
|
||||
# Create project in the current working directory, from the local
|
||||
# cookiecutter-pypackage/ template
|
||||
$ cookiecutter cookiecutter-pypackage/
|
||||
|
||||
%prep
|
||||
%setup -q -n cookiecutter-%{version}
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
sed -i "s/cookiecutter =/cookiecutter-%{py3_ver} =/" setup.py
|
||||
|
||||
%build
|
||||
python3 setup.py build
|
||||
|
||||
%install
|
||||
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||
mkdir -p %{buildroot}%{_sysconfdir}/alternatives
|
||||
touch %{buildroot}%{_sysconfdir}/alternatives/cookiecutter
|
||||
ln -sf %{_sysconfdir}/alternatives/cookiecutter %{buildroot}%{_bindir}/cookiecutter
|
||||
|
||||
%check
|
||||
export LC_ALL=en_US.UTF-8
|
||||
export LANG=en_US.UTF-8
|
||||
PYTHONPATH=%{buildroot}%{python3_sitelib} py.test
|
||||
|
||||
%pre
|
||||
[ -h %{_bindir}/cookiecutter ] || rm -f %{_bindir}/cookiecutter
|
||||
|
||||
%post
|
||||
update-alternatives --install %{_bindir}/cookiecutter cookiecutter %{_bindir}/cookiecutter-%{py3_ver} 30
|
||||
|
||||
%postun
|
||||
if [ $1 -eq 0 ] ; then
|
||||
update-alternatives --remove cookiecutter %{_bindir}/cookiecutter-%{py3_ver}
|
||||
fi
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS.rst LICENSE README.rst
|
||||
%ghost %{_sysconfdir}/alternatives/cookiecutter
|
||||
%{_bindir}/cookiecutter
|
||||
%{_bindir}/cookiecutter-%{py3_ver}
|
||||
%{python3_sitelib}/*
|
||||
|
||||
%changelog
|
26
fix-caplog-tests.diff
Normal file
26
fix-caplog-tests.diff
Normal file
@ -0,0 +1,26 @@
|
||||
From: Hans-Peter Jansen <hpj@urpla.net>
|
||||
Date: 2017-02-14 23:47:40+0100
|
||||
Subject: fix bug: caplog.records is a method
|
||||
|
||||
Index: b/tests/test_log.py
|
||||
===================================================================
|
||||
--- a/tests/test_log.py
|
||||
+++ b/tests/test_log.py
|
||||
@@ -89,7 +89,7 @@ def test_info_stdout_logging(caplog, inf
|
||||
|
||||
stream_messages = [
|
||||
stream_handler.format(r)
|
||||
- for r in caplog.records
|
||||
+ for r in caplog.records()
|
||||
if r.levelno >= stream_handler.level
|
||||
]
|
||||
|
||||
@@ -106,7 +106,7 @@ def test_debug_stdout_logging(caplog, de
|
||||
|
||||
stream_messages = [
|
||||
stream_handler.format(r)
|
||||
- for r in caplog.records
|
||||
+ for r in caplog.records()
|
||||
if r.levelno >= stream_handler.level
|
||||
]
|
||||
|
17
fix-python-invocation-tests.diff
Normal file
17
fix-python-invocation-tests.diff
Normal file
@ -0,0 +1,17 @@
|
||||
From: Hans-Peter Jansen <hpj@urpla.net>
|
||||
Date: 2017-02-14 23:45:55+0100
|
||||
Subject: when build for python3, call python3
|
||||
|
||||
Index: b/tests/test_cookiecutter_invocation.py
|
||||
===================================================================
|
||||
--- a/tests/test_cookiecutter_invocation.py
|
||||
+++ b/tests/test_cookiecutter_invocation.py
|
||||
@@ -18,7 +18,7 @@ from cookiecutter import utils
|
||||
|
||||
def test_should_raise_error_without_template_arg(capfd):
|
||||
with pytest.raises(subprocess.CalledProcessError):
|
||||
- subprocess.check_call(['python', '-m', 'cookiecutter.cli'])
|
||||
+ subprocess.check_call(['python3', '-m', 'cookiecutter.cli'])
|
||||
|
||||
_, err = capfd.readouterr()
|
||||
exp_message = 'Error: Missing argument "template".'
|
Loading…
Reference in New Issue
Block a user