2015-11-09 10:57:44 +00:00
|
|
|
#
|
|
|
|
|
# spec file for package python-webcolors
|
|
|
|
|
#
|
2016-11-15 09:07:00 +00:00
|
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
2015-11-09 10:57:44 +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/
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%define srcname webcolors
|
|
|
|
|
Name: python-%{srcname}
|
2016-11-15 09:07:00 +00:00
|
|
|
Version: 1.5
|
2015-11-09 10:57:44 +00:00
|
|
|
Release: 0
|
|
|
|
|
Summary: A library for working with HTML and CSS color names
|
|
|
|
|
License: BSD-3-Clause
|
|
|
|
|
Group: Development/Languages/Python
|
|
|
|
|
Url: http://www.bitbucket.org/ubernostrum/webcolors/overview/
|
|
|
|
|
Source0: https://bitbucket.org/ubernostrum/webcolors/downloads/%{srcname}-%{version}.tar.gz
|
|
|
|
|
BuildRequires: python-base
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Support is included for the following formats (RGB colorspace only;
|
|
|
|
|
conversion to/from HSL can be handled by the colorsys module in the Python
|
|
|
|
|
standard library):
|
|
|
|
|
* Specification-defined color names
|
|
|
|
|
* Six-digit hexadecimal
|
|
|
|
|
* Three-digit hexadecimal
|
|
|
|
|
* Integer rgb() triplet
|
|
|
|
|
* Percentage rgb() triplet
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -n %{srcname}-%{version}
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
python setup.py build
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
python setup.py install \
|
|
|
|
|
--prefix=%{_prefix} \
|
|
|
|
|
--root=%{buildroot}
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root)
|
2016-11-15 09:07:00 +00:00
|
|
|
%doc LICENSE PKG-INFO README.rst
|
2015-11-09 10:57:44 +00:00
|
|
|
%{python_sitelib}/%{srcname}*
|
|
|
|
|
|
|
|
|
|
%changelog
|