15
0

Accepting request 506522 from home:alois:branches:devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/506522
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ZConfig?expand=0&rev=7
This commit is contained in:
2017-06-29 08:41:57 +00:00
committed by Git OBS Bridge
parent 981e9aae1b
commit bdf6cbc9ef
4 changed files with 67 additions and 45 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-ZConfig
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2017 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
@@ -16,27 +16,27 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-ZConfig
Version: 3.0.4
Version: 3.2.0
Release: 0
Summary: Structured Configuration Library
License: ZPL-2.1
Group: Development/Libraries/Python
Url: http://www.zope.org/Products/ZODB
Source: https://pypi.python.org/packages/source/Z/ZConfig/ZConfig-%{version}.tar.gz
BuildRequires: python-setuptools
Url: https://github.com/zopefoundation/ZConfig
Source: https://files.pythonhosted.org/packages/source/Z/ZConfig/ZConfig-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
# Testing requirements:
BuildRequires: python-six
BuildRequires: python-xml
BuildRequires: python-zope.exceptions
BuildRequires: python-zope.testrunner
BuildRequires: %{python_module docutils}
BuildRequires: %{python_module manuel}
BuildRequires: %{python_module zope.testrunner}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires(post): update-alternatives
Requires(postun): update-alternatives
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
%python_subpackages
%description
ZConfig is a configuration library intended for general use. It supports a
@@ -54,56 +54,45 @@ applications to separate configuration support from configuration loading even
with configuration data being defined and consumed by a wide range of separate
packages.
%package doc
%package doc
Summary: Structured Configuration Library
Group: Development/Libraries/Python
Requires: %{name} = %{version}
%description doc
%description doc
This package contains documentation files for %{name}.
%prep
%setup -q -n ZConfig-%{version}
rm -rf ZConfig.egg-info
rm doc/make.bat
%build
python setup.py build
%python_build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
# Rename binaries to get package installable with py/py3 package
mv %{buildroot}%{_bindir}/zconfig %{buildroot}%{_bindir}/zconfig-%{py_ver}
mv %{buildroot}%{_bindir}/zconfig_schema2html %{buildroot}%{_bindir}/zconfig_schema2html-%{py_ver}
mkdir -p %{buildroot}%{_sysconfdir}/alternatives
touch %{buildroot}%{_sysconfdir}/alternatives/zconfig
ln -sf %{_sysconfdir}/alternatives/zconfig %{buildroot}/%{_bindir}/zconfig
touch %{buildroot}%{_sysconfdir}/alternatives/zconfig_schema2html
ln -sf %{_sysconfdir}/alternatives/zconfig_schema2html %{buildroot}/%{_bindir}/zconfig_schema2html
%python_install
%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
%python_clone -a %{buildroot}%{_bindir}/zconfig
%python_clone -a %{buildroot}%{_bindir}/zconfig_schema2html
%check
python setup.py test -v
%python_exec setup.py test -v
%post
update-alternatives \
--install %{_bindir}/zconfig zconfig %{_bindir}/zconfig-%{py_ver} 30 \
--slave %{_bindir}/zconfig_schema2html zconfig_schema2html %{_bindir}/zconfig_schema2html-%{py_ver}
%python_install_alternative zconfig zconfig_schema2html
%preun
if [ $1 -eq 0 ] ; then
update-alternatives --remove zconfig %{_bindir}/zconfig-%{py_ver}
fi
%python_uninstall_alternative zconfig
%files
%files %{python_files}
%defattr(-,root,root)
%doc CHANGES.txt COPYRIGHT.txt LICENSE.txt PKG-INFO README.txt
%doc CHANGES.rst COPYRIGHT.txt LICENSE.txt PKG-INFO README.rst
%python_alternative %{_bindir}/zconfig
%python_alternative %{_bindir}/zconfig_schema2html
%{python_sitelib}/*
%ghost %{_sysconfdir}/alternatives/zconfig
%ghost %{_sysconfdir}/alternatives/zconfig_schema2html
%{_bindir}/zconfig
%{_bindir}/zconfig-%{py_ver}
%{_bindir}/zconfig_schema2html
%{_bindir}/zconfig_schema2html-%{py_ver}
%files doc
%files %{python_files doc}
%defattr(-,root,root,-)
%doc doc/