forked from pool/python-pytest-cookies
Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| c5c4eb3da0 | |||
| 211cee5326 | |||
| 087ea01d98 | |||
| ab986c01c4 |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f3056dbfe83c0ec2b732b129df94a096a9cc044dd03e86b79bfb8751f3edfdd3
|
|
||||||
size 14369
|
|
||||||
3
pytest-cookies-0.7.0.tar.gz
Normal file
3
pytest-cookies-0.7.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0d112331e23da068304ff4c35c03344c091418411aa7aba299deb18ea0691280
|
||||||
|
size 14278
|
||||||
@@ -1,3 +1,29 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 7 05:26:34 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Stop using greedy globs in %files.
|
||||||
|
- Switch to pyproject macros.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 9 20:51:07 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 0.7.0:
|
||||||
|
* Fixes for Cookiecutter v2.1.0 and newer (#63).
|
||||||
|
* Update `bdist_wheel` info in setup.cfg.
|
||||||
|
* Update dependencies and require Python 3.6 or newer. Return a
|
||||||
|
`pathlib.Path` to the generated project via
|
||||||
|
`Result.project_path`
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat May 15 10:20:11 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
- Don't build two identical packages python{3,38}-pytest-cookies
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 20 08:06:16 UTC 2021 - John Vandenberg <jayvdb@gmail.com>
|
||||||
|
|
||||||
|
- Submit as python 3.8 only package on Tumbleweed to match cookiecutter
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun May 10 12:32:56 AM UTC 2020 - John Vandenberg <jayvdb@gmail.com>
|
Sun May 10 12:32:56 AM UTC 2020 - John Vandenberg <jayvdb@gmail.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-pytest-cookies
|
# spec file for package python-pytest-cookies
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,25 +16,26 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
# cookiecutter is only available for python3
|
||||||
%define skip_python2 1
|
%define pythons python3
|
||||||
Name: python-pytest-cookies
|
Name: python-pytest-cookies
|
||||||
Version: 0.5.1
|
Version: 0.7.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Cookiecutter template pytest plugin
|
Summary: Cookiecutter template pytest plugin
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
|
||||||
URL: https://github.com/hackebrot/pytest-cookies
|
URL: https://github.com/hackebrot/pytest-cookies
|
||||||
Source: https://github.com/hackebrot/pytest-cookies/archive/%{version}.tar.gz#/pytest-cookies-%{version}.tar.gz
|
Source: https://github.com/hackebrot/pytest-cookies/archive/%{version}.tar.gz#/pytest-cookies-%{version}.tar.gz
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: cookiecutter >= 1.4.0
|
Requires: cookiecutter >= 2.1.0
|
||||||
Requires: python-pytest >= 3.3.0
|
Requires: python-pytest >= 3.9.0
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# SECTION test requirements
|
# SECTION test requirements
|
||||||
BuildRequires: %{python_module pytest >= 3.3.0}
|
BuildRequires: %{python_module pytest >= 3.9.0}
|
||||||
BuildRequires: cookiecutter >= 1.4.0
|
BuildRequires: cookiecutter >= 2.1.0
|
||||||
# /SECTION
|
# /SECTION
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
@@ -45,10 +46,10 @@ The pytest plugin for your Cookiecutter templates.
|
|||||||
%setup -q -n pytest-cookies-%{version}
|
%setup -q -n pytest-cookies-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@@ -57,6 +58,7 @@ The pytest plugin for your Cookiecutter templates.
|
|||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.md
|
%doc README.md
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/pytest_cookies
|
||||||
|
%{python_sitelib}/pytest_cookies-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
Reference in New Issue
Block a user