2018-01-10 09:42:59 +00:00
|
|
|
#
|
|
|
|
# spec file for package python-pyee
|
|
|
|
#
|
2018-07-19 15:55:13 +00:00
|
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
2018-01-10 09:42:59 +00:00
|
|
|
#
|
|
|
|
# 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/
|
2018-07-19 15:55:13 +00:00
|
|
|
#
|
2018-01-10 09:42:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
|
|
%bcond_without test
|
|
|
|
Name: python-pyee
|
|
|
|
Version: 5.0.0
|
|
|
|
Release: 0
|
|
|
|
Summary: A port of node.js's EventEmitter to python
|
2018-07-19 15:55:13 +00:00
|
|
|
License: MIT
|
2018-01-10 09:42:59 +00:00
|
|
|
Group: Development/Languages/Python
|
2018-07-19 15:55:13 +00:00
|
|
|
URL: https://github.com/jfhbrook/pyee
|
2018-01-10 09:42:59 +00:00
|
|
|
Source: https://files.pythonhosted.org/packages/source/p/pyee/pyee-%{version}.tar.gz
|
2018-03-04 20:29:07 +00:00
|
|
|
Source99: https://raw.githubusercontent.com/jfhbrook/pyee/master/LICENSE
|
2018-02-20 10:06:59 +00:00
|
|
|
# PATCH-FIX-UPSTREAM fix-build-requirements.patch
|
|
|
|
Patch0: fix-build-requirements.patch
|
2018-01-10 09:42:59 +00:00
|
|
|
BuildRequires: %{python_module devel}
|
2018-07-19 15:55:13 +00:00
|
|
|
BuildRequires: %{python_module hamcrest}
|
2018-01-10 09:42:59 +00:00
|
|
|
BuildRequires: %{python_module setuptools}
|
|
|
|
BuildRequires: %{python_module vcversioner}
|
2018-07-19 15:55:13 +00:00
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
|
|
|
BuildArch: noarch
|
2018-01-10 09:42:59 +00:00
|
|
|
# SECTION test requirements
|
|
|
|
%if %{with test}
|
|
|
|
BuildRequires: %{python_module Twisted}
|
|
|
|
BuildRequires: %{python_module mock}
|
2018-02-20 10:06:59 +00:00
|
|
|
BuildRequires: %{python_module pytest-runner}
|
|
|
|
BuildRequires: python3-pytest-asyncio
|
2018-01-10 09:42:59 +00:00
|
|
|
%endif
|
|
|
|
# /SECTION
|
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
%description
|
|
|
|
pyee supplies an ``EventEmitter`` object similar to the ``EventEmitter``
|
|
|
|
from Node.js.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n pyee-%{version}
|
2018-02-20 10:06:59 +00:00
|
|
|
%patch0 -p1
|
2018-01-10 09:42:59 +00:00
|
|
|
cp %{SOURCE99} .
|
|
|
|
|
|
|
|
%build
|
|
|
|
%python_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%python_install
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
|
2018-07-19 15:55:13 +00:00
|
|
|
%if %{with test} && 0%{?suse_version} >= 1500
|
2018-01-10 09:42:59 +00:00
|
|
|
%check
|
|
|
|
# Only run tests for python3
|
|
|
|
%{python_expand #
|
|
|
|
if [ "${python_flavor}" == "python3" ]; then
|
|
|
|
python3 setup.py test
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%files %{python_files}
|
|
|
|
%doc README.rst
|
|
|
|
%license LICENSE
|
|
|
|
%{python_sitelib}/*
|
|
|
|
|
|
|
|
%changelog
|