Accepting request 1005709 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1005709 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-keyring?expand=0&rev=49
This commit is contained in:
commit
d42de2e4ef
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 23 20:57:12 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
- Clean specfile from setuptools cruft, this is a PEP517 package
|
||||||
|
- Only python >= 3.7 is supported
|
||||||
|
- Fix more runtime requirements
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 20 16:18:23 UTC 2022 - Alexei Sorokin <sor.alexei@meowr.ru>
|
Tue Sep 20 16:18:23 UTC 2022 - Alexei Sorokin <sor.alexei@meowr.ru>
|
||||||
|
|
||||||
|
@ -16,8 +16,6 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
||||||
%define skip_python2 1
|
|
||||||
%global flavor @BUILD_FLAVOR@%{nil}
|
%global flavor @BUILD_FLAVOR@%{nil}
|
||||||
%if "%{flavor}" == "test"
|
%if "%{flavor}" == "test"
|
||||||
%define psuffix -test
|
%define psuffix -test
|
||||||
@ -34,27 +32,25 @@ License: MIT AND Python-2.0
|
|||||||
URL: https://github.com/jaraco/keyring
|
URL: https://github.com/jaraco/keyring
|
||||||
Source: https://files.pythonhosted.org/packages/source/k/keyring/keyring-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/k/keyring/keyring-%{version}.tar.gz
|
||||||
Patch0: support-new-importlib.patch
|
Patch0: support-new-importlib.patch
|
||||||
BuildRequires: %{python_module setuptools >= 17.1}
|
BuildRequires: %{python_module base >= 3.7}
|
||||||
BuildRequires: %{python_module setuptools_scm >= 1.15.0}
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module setuptools >= 56}
|
||||||
|
BuildRequires: %{python_module setuptools_scm >= 3.4.1}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-SecretStorage >= 3
|
Requires: python-SecretStorage >= 3.2
|
||||||
Requires: python-entrypoints
|
|
||||||
Requires: python-importlib-metadata
|
|
||||||
Requires: python-jaraco.classes
|
Requires: python-jaraco.classes
|
||||||
Requires: python-jeepney >= 0.4.2
|
Requires: python-jeepney >= 0.4.2
|
||||||
Requires: python-setuptools
|
%if 0%{python_version_nodots} < 310
|
||||||
|
Requires: python-importlib-metadata >= 3.6
|
||||||
|
%endif
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun):update-alternatives
|
Requires(postun):update-alternatives
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
BuildRequires: %{python_module SecretStorage >= 3}
|
|
||||||
BuildRequires: %{python_module entrypoints}
|
|
||||||
BuildRequires: %{python_module importlib-metadata}
|
|
||||||
BuildRequires: %{python_module jaraco.classes}
|
|
||||||
BuildRequires: %{python_module keyring = %{version}}
|
BuildRequires: %{python_module keyring = %{version}}
|
||||||
BuildRequires: %{python_module pytest >= 3.5}
|
BuildRequires: %{python_module pytest >= 3.5}
|
||||||
BuildRequires: %{python_module toml}
|
|
||||||
%endif
|
%endif
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
@ -64,22 +60,18 @@ from python. It can be used in any application that needs safe password storage.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n keyring-%{version}
|
%autosetup -p1 -n keyring-%{version}
|
||||||
echo "import setuptools; setuptools.setup()" > setup.py
|
|
||||||
|
|
||||||
%if 0%{?sle_version}
|
|
||||||
# keyring is not setting the egg version correctly without this:
|
|
||||||
sed -i -e '1a version=%{version}' setup.cfg
|
|
||||||
%endif
|
|
||||||
# For rpmlint warning: remove shebang from python library:
|
# For rpmlint warning: remove shebang from python library:
|
||||||
sed -i '/^#!/d' keyring/cli.py
|
sed -i '/^#!/d' keyring/cli.py
|
||||||
sed -i -e 's,--flake8,,' -e 's,--black,,' -e 's,--cov,,' pytest.ini
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%if !%{with test}
|
||||||
|
%pyproject_wheel
|
||||||
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%if !%{with test}
|
%if !%{with test}
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_clone -a %{buildroot}%{_bindir}/keyring
|
%python_clone -a %{buildroot}%{_bindir}/keyring
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
%endif
|
%endif
|
||||||
@ -100,7 +92,7 @@ sed -i -e 's,--flake8,,' -e 's,--black,,' -e 's,--cov,,' pytest.ini
|
|||||||
%doc README.rst CHANGES.rst
|
%doc README.rst CHANGES.rst
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%python_alternative %{_bindir}/keyring
|
%python_alternative %{_bindir}/keyring
|
||||||
%{python_sitelib}/keyring-%{version}-py*.egg-info
|
%{python_sitelib}/keyring-%{version}*-info
|
||||||
%{python_sitelib}/keyring/
|
%{python_sitelib}/keyring/
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user