File python-zdaemon.spec of Package python-zdaemon
#
# spec file for package python-zdaemon
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, 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/
#
%define modname zdaemon
Name: python-%{modname}
Version: 4.1.0
Release: 0
Summary: Daemon process control library and tools
License: ZPL-2.1
Group: Development/Languages/Python
Url: https://github.com/zopefoundation/zdaemon
Source: https://pypi.python.org/packages/source/z/zdaemon/%{modname}-%{version}.zip
BuildRequires: python-devel
BuildRequires: python-setuptools
BuildRequires: unzip
Requires(post): update-alternatives
Requires(postun): update-alternatives
Requires: python-ZConfig
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch: noarch
%endif
%description
zdaemon is a Python package which provides APIs for managing
applications run as daemons. Its principal use to date has been to
manage the application server and storage server daemons for Zope / ZEO,
although it is not limited to running Python-based applications
%prep
%setup -q -n %{modname}-%{version}
sed -i "s|%{modname} =|%{modname}-%{py_ver} =|" setup.py
# remove unwanted shebang
sed -i '1 { /^#!/ d }' src/zdaemon/tests/nokill.py
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
# create a dummy target for /etc/alternatives/zdaemon
mkdir -p %{buildroot}%{_sysconfdir}/alternatives
touch %{buildroot}%{_sysconfdir}/alternatives/%{modname}
ln -s -f %{_sysconfdir}/alternatives/%{modname} %{buildroot}/%{_bindir}/%{modname}
%post
update-alternatives \
--install %{_bindir}/%{modname} %{modname} %{_bindir}/%{modname}-%{py_ver} 20
%postun
if [ $1 -eq 0 ] ; then
update-alternatives --remove %{modname} %{_bindir}/%{modname}-%{py_ver}
fi
%files
%defattr(-,root,root)
%doc README.rst CHANGES.rst LICENSE.txt
%ghost %{_sysconfdir}/alternatives/%{modname}
%{python_sitelib}/*
%{_bindir}/%{modname}
%{_bindir}/%{modname}-%{py_ver}
%changelog