- Clean up SPEC file
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cookies?expand=0&rev=11
This commit is contained in:
parent
610d6691b1
commit
e067a4d471
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 31 12:38:53 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
- Clean up SPEC file
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Apr 21 12:23:45 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
Fri Apr 21 12:23:45 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-cookies
|
Name: python-cookies
|
||||||
Version: 2.2.1
|
Version: 2.2.1
|
||||||
@ -24,14 +23,15 @@ Release: 0
|
|||||||
Summary: Friendlier RFC 6265-compliant cookie parser/renderer
|
Summary: Friendlier RFC 6265-compliant cookie parser/renderer
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://gitlab.com/sashahart/cookies
|
URL: https://github.com/sashahart/cookies
|
||||||
Source: https://files.pythonhosted.org/packages/source/c/cookies/cookies-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/c/cookies/cookies-%{version}.tar.gz
|
||||||
Source1: https://raw.githubusercontent.com/sashahart/cookies/master/LICENSE
|
Source1: https://raw.githubusercontent.com/sashahart/cookies/master/LICENSE
|
||||||
# PATCH-FIX-OPENSUSE do-not-install-test_cookies.diff -- Do not install test files
|
# PATCH-FIX-OPENSUSE do-not-install-test_cookies.diff -- Do not install test files
|
||||||
Patch0: do-not-install-test_cookies.diff
|
Patch0: do-not-install-test_cookies.diff
|
||||||
Patch1: python37.patch
|
Patch1: python37.patch
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
@ -68,23 +68,24 @@ This does not compete with the cookielib (http.cookiejar) module in the Python
|
|||||||
standard library.
|
standard library.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n cookies-%{version}
|
%autosetup -p1 -n cookies-%{version}
|
||||||
%autopatch -p1
|
|
||||||
|
|
||||||
cp %{SOURCE1} .
|
cp %{SOURCE1} .
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%python_expand py.test-%{$python_version} test_cookies.py
|
%pytest test_cookies.py
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README
|
%doc README
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/cookies.py
|
||||||
|
%pycache_only %{python_sitelib}/__pycache__/cookies*.pyc
|
||||||
|
%{python_sitelib}/cookies-%{version}*-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user