17
0
Files
python-colorlog/python-colorlog.spec

57 lines
1.8 KiB
RPMSpec

#
# spec file for package python-colorlog
#
# 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
# 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-colorlog
Version: 2.10.0
Release: 0
Summary: Log formatting with colors
License: MIT
Group: Development/Languages/Python
Url: https://github.com/borntyping/python-colorlog
Source: https://pypi.io/packages/source/c/colorlog/colorlog-%{version}.tar.gz
BuildRequires: python-devel
BuildRequires: python-setuptools
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} > 1110
BuildArch: noarch
%endif
%description
colorlog.ColoredFormatter is a formatter for use with Python's logging module.
It allows colors to be placed in the format string, which is mostly useful
when paired with a StreamHandler that is outputting to a terminal.
This is accomplished by added a set of terminal color codes to the record
before it is used to format the string.
%prep
%setup -q -n colorlog-%{version}
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root %{buildroot}
%files
%defattr(-,root,root,-)
%doc README.md
%{python_sitelib}/colorlog
%{python_sitelib}/colorlog-%{version}-py%{py_ver}.egg-info
%changelog