forked from pool/python-zope.event
Accepting request 504884 from home:okurz:matrix-synapse
Update to 4.2.0; Cleanup with fdupes; Incorporate recommendations from sr#478717 OBS-URL: https://build.opensuse.org/request/show/504884 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.event?expand=0&rev=10
This commit is contained in:
committed by
Git OBS Bridge
parent
ef8e168511
commit
48de3e12ee
@@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jun 17 16:25:04 UTC 2017 - okurz@suse.com
|
||||||
|
|
||||||
|
- Update to 4.2.0:
|
||||||
|
* Add support for Python 3.5.
|
||||||
|
* Drop support for Python 2.6 and 3.2.
|
||||||
|
- Prevent duplicate doc package generation
|
||||||
|
- Cleanup duplicates in build tree
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jun 17 16:25:00 UTC 2017 - okurz@suse.com
|
||||||
|
|
||||||
|
- Update to 4.1.0:
|
||||||
|
* Require 100% branch (as well as statement) coverage.
|
||||||
|
* Add a simple class-based handler implementation.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Mar 11 19:49:38 UTC 2017 - okurz@suse.com
|
||||||
|
|
||||||
|
- Convert package to singlespec
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 15 11:47:32 UTC 2015 - benoit.monin@gmx.fr
|
Fri May 15 11:47:32 UTC 2015 - benoit.monin@gmx.fr
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-zope.event
|
# spec file for package python-zope.event
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,26 +16,36 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-zope.event
|
Name: python-zope.event
|
||||||
Version: 4.0.3
|
%global modname zope.event
|
||||||
|
Version: 4.2.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Very basic event publishing system
|
Summary: Very basic event publishing system
|
||||||
License: ZPL-2.1
|
License: ZPL-2.1
|
||||||
Group: Development/Libraries/Python
|
Group: Development/Libraries/Python
|
||||||
Url: http://pypi.python.org/pypi/zope.event
|
Url: http://pypi.python.org/pypi/%{modname}
|
||||||
Source: https://pypi.python.org/packages/source/z/zope.event/zope.event-%{version}.tar.gz
|
Source: https://pypi.io/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRequires: %{python_module devel}
|
||||||
BuildRequires: python-devel
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: python-setuptools
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: python-rpm-macros
|
||||||
# Documentation requirements:
|
# Documentation requirements:
|
||||||
BuildRequires: python-Sphinx
|
%ifpython3
|
||||||
|
BuildRequires: %{python_module Sphinx}
|
||||||
|
%endif
|
||||||
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
%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()")}
|
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
%else
|
%else
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%endif
|
%endif
|
||||||
Provides: python-zope-event = %{version}
|
%define oldpython python
|
||||||
Obsoletes: python-zope-event < %{version}
|
%ifpython2
|
||||||
|
Provides: %{oldpython}-zope-event = %{version}
|
||||||
|
Obsoletes: %{oldpython}-zope-event < %{version}
|
||||||
|
%endif
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
An event publishing system and a very simple event-dispatching system on
|
An event publishing system and a very simple event-dispatching system on
|
||||||
@@ -43,36 +53,38 @@ which more sophisticated event dispatching systems can be built. For
|
|||||||
example, a type-based event dispatching system that builds on zope.event
|
example, a type-based event dispatching system that builds on zope.event
|
||||||
can be found in zope.component.
|
can be found in zope.component.
|
||||||
|
|
||||||
%package doc
|
%package -n %{name}-doc
|
||||||
Summary: Very basic event publishing system
|
Summary: Very basic event publishing system
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Requires: %{name} = %{version}
|
Requires: %{name} = %{version}
|
||||||
|
|
||||||
%description doc
|
%description -n %{name}-doc
|
||||||
This package contains documentation files for %{name}.
|
This package contains documentation files for %{name}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n zope.event-%{version}
|
%setup -q -n %{modname}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
python setup.py build
|
%python_build
|
||||||
# cannot give build/lib here, as pkg_resources.py needs the egg info and
|
# cannot give build/lib here, as pkg_resources.py needs the egg info and
|
||||||
# raises DistributionNotFound for zope.event, hence build doc directly
|
# raises DistributionNotFound for zope.event, hence build doc directly
|
||||||
# from source in order to avoid the need for an external doc package
|
# from source in order to avoid the need for an external doc package
|
||||||
PYTHONPATH=$(pwd)/src python setup.py build_sphinx && rm build/sphinx/html/.buildinfo
|
export PYTHONPATH=$(pwd)/src
|
||||||
|
python3 setup.py build_sphinx && rm build/sphinx/html/.buildinfo
|
||||||
|
|
||||||
%install
|
%install
|
||||||
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
%python_install
|
||||||
|
%fdupes %{buildroot}%{_prefix}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
python setup.py test
|
%python_exec setup.py test
|
||||||
|
|
||||||
%files
|
%files %{python_files}
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc CHANGES.rst COPYRIGHT.txt LICENSE.txt README.rst
|
%doc CHANGES.rst COPYRIGHT.txt LICENSE.txt README.rst
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/*
|
||||||
|
|
||||||
%files doc
|
%files -n %{name}-doc
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc build/sphinx/html/
|
%doc build/sphinx/html/
|
||||||
|
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f5fdf6ca5716f714023358b212f7f435539dea11771603cd90eebf3ad34405f1
|
|
||||||
size 390984
|
|
3
zope.event-4.2.0.tar.gz
Normal file
3
zope.event-4.2.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ce11004217863a4827ea1a67a31730bddab9073832bdb3b9be85869259118758
|
||||||
|
size 488532
|
Reference in New Issue
Block a user