forked from pool/python-zdaemon
- Update to 5.0:
* Drop support for Python 2.7, 3.5, 3.6. - Switch to autosetup and pyproject macros. - No more greedy globs in %files. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zdaemon?expand=0&rev=38
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 5 06:08:56 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Update to 5.0:
|
||||||
|
* Drop support for Python 2.7, 3.5, 3.6.
|
||||||
|
- Switch to autosetup and pyproject macros.
|
||||||
|
- No more greedy globs in %files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 7 22:49:00 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
Wed Dec 7 22:49:00 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file
|
# spec file for package python-zdaemon
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2024 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
|
||||||
@@ -17,27 +17,29 @@
|
|||||||
|
|
||||||
|
|
||||||
%define modname zdaemon
|
%define modname zdaemon
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
||||||
Name: python-%{modname}
|
Name: python-%{modname}
|
||||||
Version: 4.4
|
Version: 5.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Daemon process control library and tools
|
Summary: Daemon process control library and tools
|
||||||
License: ZPL-2.1
|
License: ZPL-2.1
|
||||||
Group: Development/Languages/Python
|
|
||||||
URL: https://github.com/zopefoundation/zdaemon
|
URL: https://github.com/zopefoundation/zdaemon
|
||||||
Source: https://files.pythonhosted.org/packages/source/z/zdaemon/%{modname}-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/z/zdaemon/%{modname}-%{version}.tar.gz
|
||||||
Patch0: obs-timeout.patch
|
Patch0: obs-timeout.patch
|
||||||
BuildRequires: %{python_module ZConfig}
|
BuildRequires: %{python_module ZConfig}
|
||||||
|
BuildRequires: %{python_module base >= 3.7}
|
||||||
BuildRequires: %{python_module manuel}
|
BuildRequires: %{python_module manuel}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: %{python_module zc.customdoctests}
|
BuildRequires: %{python_module zc.customdoctests}
|
||||||
BuildRequires: %{python_module zope.testing}
|
BuildRequires: %{python_module zope.testing}
|
||||||
BuildRequires: %{python_module zope.testrunner}
|
BuildRequires: %{python_module zope.testrunner}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-ZConfig
|
Requires: python-ZConfig
|
||||||
|
Requires: python-setuptools
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(preun):update-alternatives
|
Requires(preun): update-alternatives
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
@@ -48,26 +50,24 @@ manage the application server and storage server daemons for Zope / ZEO,
|
|||||||
although it is not limited to running Python-based applications
|
although it is not limited to running Python-based applications
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{modname}-%{version}
|
%autosetup -p1 -n %{modname}-%{version}
|
||||||
%patch0 -p1
|
|
||||||
# remove unwanted shebang
|
# remove unwanted shebang
|
||||||
sed -i '1 { /^#!/ d }' src/zdaemon/tests/nokill.py
|
sed -i '1 { /^#!/ d }' src/zdaemon/tests/nokill.py
|
||||||
rm -rf src/zdaemon.egg-info
|
rm -rf src/zdaemon.egg-info
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%python_clone -a %{buildroot}%{_bindir}/zdaemon
|
%python_clone -a %{buildroot}%{_bindir}/zdaemon
|
||||||
|
|
||||||
%check
|
%check
|
||||||
# https://github.com/zopefoundation/zdaemon/issues/28
|
|
||||||
sed -i 's:import mock:from unittest import mock:' src/zdaemon/tests/testuser.py
|
|
||||||
pushd src
|
pushd src
|
||||||
%pyunittest discover -v
|
%pyunittest discover -v
|
||||||
|
popd
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%python_install_alternative zdaemon
|
%python_install_alternative zdaemon
|
||||||
@@ -79,6 +79,7 @@ pushd src
|
|||||||
%license LICENSE.txt
|
%license LICENSE.txt
|
||||||
%doc README.rst CHANGES.rst
|
%doc README.rst CHANGES.rst
|
||||||
%python_alternative %{_bindir}/zdaemon
|
%python_alternative %{_bindir}/zdaemon
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/%{modname}
|
||||||
|
%{python_sitelib}/%{modname}-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:4821e3bdb47387cf1e9255b0444bac437cf72aa0b59d1407b932e31fd4323efc
|
|
||||||
size 59205
|
|
||||||
3
zdaemon-5.0.tar.gz
Normal file
3
zdaemon-5.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9a5ec6c519a280bbcfa8f7e73f4e10d808e7b82710ab608e0f449bf3c06d43d5
|
||||||
|
size 59149
|
||||||
Reference in New Issue
Block a user