forked from pool/python-zope.event
- Rename to python-zope.event to match usptream name
- Drop the lib dir messing around, the package is noarch - Initial python3 support - Update to 4.0.2 version: * Fleshed out PyPI Trove classifiers. * Added support for jython 2.7. - remove use of %suse_update_libdir - license update: ZPL-2.1 is ZPL-2-1 - change license to be in spdx.org format - fix file list - fix build on distributions != 11.3 - Ugly hack to make this an arch package. Apparently it does not work to have bundled modules spread over lib/lib64 - get rid of buildroot removal in install - Initial Package, Version 3.5.0 - Rename to python3-zope.event to match usptream name OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.event?expand=0&rev=1
This commit is contained in:
67
python-zope.event.spec
Normal file
67
python-zope.event.spec
Normal file
@@ -0,0 +1,67 @@
|
||||
#
|
||||
# spec file for package python-zope.event
|
||||
#
|
||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, 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/
|
||||
#
|
||||
|
||||
|
||||
Name: python-zope.event
|
||||
Version: 4.0.2
|
||||
Release: 0
|
||||
Summary: Very basic event publishing system
|
||||
License: ZPL-2.1
|
||||
Group: Development/Libraries/Python
|
||||
Url: http://pypi.python.org/pypi/zope.event
|
||||
Source: zope.event-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: python-distribute
|
||||
# Documentation requirements:
|
||||
#BuildRequires: python-Sphinx
|
||||
%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
|
||||
Provides: python-zope-event = %{version}
|
||||
#TODO: Change back after next version update:
|
||||
Obsoletes: python-zope-event <= %{version}
|
||||
|
||||
%description
|
||||
An event publishing system and a very simple event-dispatching system on
|
||||
which more sophisticated event dispatching systems can be built. For
|
||||
example, a type-based event dispatching system that builds on zope.event
|
||||
can be found in zope.component.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n zope.event-%{version}
|
||||
|
||||
%build
|
||||
python setup.py build
|
||||
# Doc build is self-referential, i.e. move to a seperate spec to require this one:
|
||||
#python setup.py build_sphinx
|
||||
|
||||
%install
|
||||
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||
|
||||
%check
|
||||
python setup.py test
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc COPYRIGHT.txt LICENSE.txt README.txt
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
Reference in New Issue
Block a user