14
0

Accepting request 691795 from home:mcalabkova:branches:devel:languages:python

- update to version 4.2
  * Add support for Python 3.5, 3.6 and 3.7.
  * Drop support for Python 2.6, 3.2 and 3.3.
  * Add a page to the docs on hacking zope.location.
  * Note additional documentation dependencies.
  * Remove internal _compat implementation module.
- drop *-doc subpackage, use multibuild instead.

OBS-URL: https://build.opensuse.org/request/show/691795
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.location?expand=0&rev=6
This commit is contained in:
Tomáš Chvátal
2019-04-05 12:01:09 +00:00
committed by Git OBS Bridge
parent 40ec2a0029
commit 34e1a4dd66
7 changed files with 46 additions and 89 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-zope.location
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2013 LISA GmbH, Bingen, Germany.
#
# All modifications and additions to the file contributed by third parties
@@ -13,13 +13,21 @@
# 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/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-zope.location
Version: 4.0.3
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
Name: python-zope.location%{psuffix}
Version: 4.2
Release: 0
Summary: Zope Location
License: ZPL-2.1
@@ -34,6 +42,13 @@ Requires: python-zope.interface >= 4.0.2
Requires: python-zope.proxy >= 4.0.1
Requires: python-zope.schema >= 4.2.2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if %{with test}
BuildRequires: %{python_module zope.component >= 4.0.1}
BuildRequires: %{python_module zope.configuration}
BuildRequires: %{python_module zope.copy >= 4.0}
BuildRequires: %{python_module zope.proxy}
BuildRequires: %{python_module zope.testrunner}
%endif
BuildArch: noarch
%python_subpackages
@@ -48,12 +63,21 @@ rm -rf src/zope.location.egg-info
%python_build
%install
%if !%{with test}
%python_install
%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%endif
%if %{with test}
%check
%python_expand PYTHONPATH=src %{_bindir}/zope-testrunner-%{$python_bin_suffix} -vvv --test-path src
%endif
%if !%{with test}
%files %{python_files}
%defattr(-,root,root,-)
%doc COPYRIGHT.txt LICENSE.txt CHANGES.rst README.rst
%{python_sitelib}/*
%endif
%changelog