From 7bc3cbbe3fdd989847015ec403209f228fd3ae83f33dd73cb1141f146c9c2032 Mon Sep 17 00:00:00 2001 From: Hans-Peter Jansen Date: Sun, 16 Jul 2017 16:26:47 +0000 Subject: [PATCH] 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 --- pre_checkin.sh | 3 ++ python-zope.component-doc.changes | 51 +++++++++++++++++++++++ python-zope.component-doc.spec | 68 +++++++++++++++++++++++++++++++ python-zope.component.changes | 16 ++++++++ python-zope.component.spec | 67 ++++++++---------------------- zope.component-4.2.1.tar.gz | 3 -- zope.component-4.3.0.tar.gz | 3 ++ 7 files changed, 157 insertions(+), 54 deletions(-) create mode 100644 pre_checkin.sh create mode 100644 python-zope.component-doc.changes create mode 100644 python-zope.component-doc.spec delete mode 100644 zope.component-4.2.1.tar.gz create mode 100644 zope.component-4.3.0.tar.gz diff --git a/pre_checkin.sh b/pre_checkin.sh new file mode 100644 index 0000000..479d9a0 --- /dev/null +++ b/pre_checkin.sh @@ -0,0 +1,3 @@ +#!/bin/sh +cp python-zope.component.changes python-zope.component-doc.changes + diff --git a/python-zope.component-doc.changes b/python-zope.component-doc.changes new file mode 100644 index 0000000..af28431 --- /dev/null +++ b/python-zope.component-doc.changes @@ -0,0 +1,51 @@ +------------------------------------------------------------------- +Sun Jul 16 08:15:36 UTC 2017 - aloisio@gmx.com + +- Update to version 4.3.0 + * When testing PURE_PYTHON environments under tox, avoid + poisoning the user’s global wheel cache. + * Drop support for Python 2.6 and 3.2. + * Add support for Python 3.5. + 4.2.2: + * Fix test cases for PyPy and PyPy3. + +- Split docs and tests into separate package to avoid dependency + loop. + +- Converted to single-spec + +------------------------------------------------------------------- +Fri May 15 11:13:54 UTC 2015 - benoit.monin@gmx.fr + +- update to version 4.2.1: + * Added support for Python 3.4. +- switch source archive to tar.gz (zip not available) +- remove unzip from BuildRequires + +------------------------------------------------------------------- +Wed Feb 19 04:08:29 UTC 2014 - os-dev@jacraig.com + +- Update to 4.2.0: + * Updated ``boostrap.py`` to version 2.2. + * Reset the cached ``adapter_hooks`` at ``zope.testing.cleanup.cleanUp`` + time (LP1100501). + * Implemented ability to specify adapter and utility names in Python. Use + the ``@zope.component.named(name)`` decorator to specify the name. +- Update python-zope.interface requirement version (see setup.py). + +------------------------------------------------------------------- +Tue Dec 10 13:13:28 UTC 2013 - p.drouand@gmail.com + +- Use download Url as source +- Add unzip requirement to support tarball format + +------------------------------------------------------------------- +Wed Jul 31 08:57:22 UTC 2013 - hpj@urpla.net + +- disable testing due to circular dependency with python-zope.security + +------------------------------------------------------------------- +Mon Jul 29 21:43:49 UTC 2013 - hpj@urpla.net + +- version 4.1.0: initial build + diff --git a/python-zope.component-doc.spec b/python-zope.component-doc.spec new file mode 100644 index 0000000..a3c373e --- /dev/null +++ b/python-zope.component-doc.spec @@ -0,0 +1,68 @@ +# +# spec file for package python-zope.component-doc +# +# 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 +# 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/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-zope.component-doc +Version: 4.3.0 +Release: 0 +Summary: Documentation for python-zope.component +License: ZPL-2.1 +Group: Development/Languages/Python +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: %{python_module zope.component = %{version}} +# SECTION documentation requirements +BuildRequires: python3-Sphinx +BuildRequires: python3-repoze.sphinx.autointerface +# /SECTION +# SECTION testing requirements +BuildRequires: %{python_module persistent} +BuildRequires: %{python_module zope.configuration} +BuildRequires: %{python_module zope.proxy} +BuildRequires: %{python_module zope.security} +BuildRequires: %{python_module zope.testrunner} +#/SECTION +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Provides: %{python_module zope.component-doc = %{version}} +BuildArch: noarch + +%description +This package contains documentation files for python-zope.component. + +%prep +%setup -q -n zope.component-%{version} + +%build +# Generate HTML documentation +%{_python_use_flavor python3} +%__python3 setup.py build_sphinx && rm build/sphinx/html/.buildinfo + +%install +# nothing to do + +%check +%python_exec %{_bindir}/zope-testrunner --test-path=src -v + +%files +%defattr(-,root,root) +%doc build/sphinx/html/ + +%changelog diff --git a/python-zope.component.changes b/python-zope.component.changes index 3c0d96c..af28431 100644 --- a/python-zope.component.changes +++ b/python-zope.component.changes @@ -1,3 +1,19 @@ +------------------------------------------------------------------- +Sun Jul 16 08:15:36 UTC 2017 - aloisio@gmx.com + +- Update to version 4.3.0 + * When testing PURE_PYTHON environments under tox, avoid + poisoning the user’s global wheel cache. + * Drop support for Python 2.6 and 3.2. + * Add support for Python 3.5. + 4.2.2: + * Fix test cases for PyPy and PyPy3. + +- Split docs and tests into separate package to avoid dependency + loop. + +- Converted to single-spec + ------------------------------------------------------------------- Fri May 15 11:13:54 UTC 2015 - benoit.monin@gmx.fr diff --git a/python-zope.component.spec b/python-zope.component.spec index a602bb7..69f02dc 100644 --- a/python-zope.component.spec +++ b/python-zope.component.spec @@ -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 diff --git a/zope.component-4.2.1.tar.gz b/zope.component-4.2.1.tar.gz deleted file mode 100644 index 5426169..0000000 --- a/zope.component-4.2.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8696d0a2a2e5bfe9f7a05075d4395be1678e86d69289782d66000a6624c8ebbf -size 462311 diff --git a/zope.component-4.3.0.tar.gz b/zope.component-4.3.0.tar.gz new file mode 100644 index 0000000..c782863 --- /dev/null +++ b/zope.component-4.3.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb4136c7443610f8c2d2d357cad247c3e90bb5e6f0b7a02b0edfb11924ff9bc2 +size 85971