14
0

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

OBS-URL: https://build.opensuse.org/request/show/510573
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.component?expand=0&rev=9
This commit is contained in:
2017-07-16 16:26:47 +00:00
committed by Git OBS Bridge
parent 190837a5a9
commit 7bc3cbbe3f
7 changed files with 157 additions and 54 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-zope.component
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2013 LISA GmbH, Bingen, Germany.
#
# All modifications and additions to the file contributed by third parties
@@ -17,36 +17,21 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-zope.component
Version: 4.2.1
Version: 4.3.0
Release: 0
Url: http://www.python.org/pypi/zope.component
Summary: Zope Component Architecture
License: ZPL-2.1
Group: Development/Languages/Python
Source: https://pypi.python.org/packages/source/z/zope.component/zope.component-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: python-Sphinx
# Documentation requirements:
BuildRequires: python-persistent
BuildRequires: python-repoze.sphinx.autointerface
BuildRequires: python-setuptools
BuildRequires: python-zope.configuration
BuildRequires: python-zope.event
BuildRequires: python-zope.hookable
BuildRequires: python-zope.interface >= 4.1.0
# Testing requirements:
BuildRequires: python-zope.proxy
#TODO: fix circular dependency with python-zope.security
#BuildRequires: python-zope.security
BuildRequires: python-zope.testing
Url: http://www.python.org/pypi/zope.component
Source: https://files.pythonhosted.org/packages/source/z/zope.component/zope.component-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-zope.event
Requires: python-zope.interface >= 4.1.0
%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
This package is intended to be independently reusable in any Python project. It
@@ -59,40 +44,20 @@ registering and looking up components.
Please see http://docs.zope.org/zope.component/ or doc package for the
documentation.
%package doc
Summary: Zope Component Architecture
Group: Development/Languages/Python
Requires: %{name} = %{version}
%description doc
This package contains documentation files for %{name}.
%prep
%setup -q -n zope.component-%{version}
# disable standalone test, until some kind soul resolves the problem of being unable
# to import the module itself properly. IOW: with no amount of PYTHONPATH trickery,
# python -c "import zope.component" succeeds (in %%check section)
rm src/zope/component/tests/test_standalone.py
rm -rf src/zope.component.egg-info
%build
python setup.py build
PYTHONPATH=$(pwd)/build/lib python setup.py build_sphinx && rm build/sphinx/html/.buildinfo
%python_build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%python_install
%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
# cannot enable testing by default, until the circular dependency with
# python-zope.security isn't resolved properly
#%%check
#PYTHONPATH=$(pwd)/src python setup.py test
%files
%defattr(-,root,root,-)
%files %{python_files}
%defattr(-,root,root)
%doc CHANGES.rst COPYRIGHT.txt LICENSE.txt README.rst
%python_sitelib/*
%files doc
%defattr(-,root,root,-)
%doc build/sphinx/html/
%{python_sitelib}/*
%changelog