forked from pool/python-logutils
Accepting request 507400 from home:tbechtold:branches:devel:languages:python
- update to 0.3.5: - Bring QueueListener implementation in line with the version in the stdlib. - Fixed a bug in ColorizingStreamHandler relating to encoding. - Return non-zero error code from "setup.py test" when a test fails. - Make the dictConfig tests work with both Python 2.x and 3.x. - convert to singlespec - fix Source url - split -doc package - update Url OBS-URL: https://build.opensuse.org/request/show/507400 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-logutils?expand=0&rev=3
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-logutils
|
||||
#
|
||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -13,25 +13,26 @@
|
||||
# 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-logutils
|
||||
Version: 0.3.3
|
||||
Version: 0.3.5
|
||||
Release: 0
|
||||
License: BSD-3-Clause
|
||||
Summary: Logging utilities
|
||||
Url: http://code.google.com/p/logutils/
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Languages/Python
|
||||
Source: https://pypi.python.org/packages/source/l/logutils/logutils-%{version}.tar.gz
|
||||
BuildRequires: python-devel
|
||||
# Documentation requirements:
|
||||
BuildRequires: python-Sphinx
|
||||
Url: https://logutils.readthedocs.io/
|
||||
Source: https://files.pythonhosted.org/packages/source/l/logutils/logutils-%{version}.tar.gz
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: python3-Sphinx
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%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
|
||||
The logutils package provides a set of handlers for the Python standard
|
||||
@@ -42,22 +43,41 @@ so they are packaged here. Others are updated versions which have
|
||||
appeared in recent Python releases, but are usable with older versions
|
||||
of Python and so are packaged here.
|
||||
|
||||
%package -n python-logutils-doc
|
||||
Summary: Documentation for %{name}
|
||||
Group: Documentation/Other
|
||||
Provides: %{python_module logutils-doc = %{version}}
|
||||
|
||||
%description -n python-logutils-doc
|
||||
The logutils package provides a set of handlers for the Python standard
|
||||
library's logging package.
|
||||
|
||||
Some of these handlers are out-of-scope for the standard library, and
|
||||
so they are packaged here. Others are updated versions which have
|
||||
appeared in recent Python releases, but are usable with older versions
|
||||
of Python and so are packaged here.
|
||||
|
||||
This package contains the documentation.
|
||||
|
||||
%prep
|
||||
%setup -q -n logutils-%{version}
|
||||
|
||||
%build
|
||||
python setup.py build
|
||||
%python_build
|
||||
cd doc && make html
|
||||
|
||||
%install
|
||||
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||
%python_install
|
||||
|
||||
%check
|
||||
python setup.py test
|
||||
%python_exec setup.py test
|
||||
|
||||
%files
|
||||
%files %{python_files}
|
||||
%defattr(-,root,root,-)
|
||||
%doc LICENSE.txt NEWS.txt README.txt doc/_build/html
|
||||
%doc LICENSE.txt NEWS.txt README.rst
|
||||
%{python_sitelib}/*
|
||||
|
||||
%files -n python-logutils-doc
|
||||
%doc LICENSE.txt doc/_build/html
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user