forked from pool/python-colorspacious
Compare commits
10 Commits
ac50d80a50
...
b955a4225d
Author | SHA256 | Date | |
---|---|---|---|
b955a4225d | |||
6c8bc2211d | |||
|
7224b02497 | ||
|
da3480635e | ||
65ef53cae6 | |||
faf4c5866f | |||
3f24764adb | |||
e7a420b8c9 | |||
d6657af97c | |||
|
8652f8ef82 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7fd83cdb22224335c51c1f85e54a55f18568660452680d21f4b306d4454aec56
|
||||
size 698745
|
3
colorspacious-1.1.2.tar.gz
Normal file
3
colorspacious-1.1.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5e9072e8cdca889dac445c35c9362a22ccf758e97b00b79ff0d5a7ba3e11b618
|
||||
size 688573
|
@@ -1,3 +1,31 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 21 05:13:42 UTC 2021 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Do not build for Python 3.6, due to no NumPy.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 7 13:14:40 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
- Update to 1.1.2:
|
||||
* Reference article that colorspacious (and other libraries) was using as a
|
||||
source for the CIECAM02Surround.DIM constant values was itself incorrect.
|
||||
It has now been corrected, and verified against CIE 159:2004.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 4 12:46:46 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
- Remove superfluous devel dependency for noarch package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 7 20:43:07 UTC 2018 - jengelh@inai.de
|
||||
|
||||
- Remove filler wording from description.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 3 14:07:08 UTC 2018 - toddrme2178@gmail.com
|
||||
|
||||
- Use %license tag
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 17 17:16:23 UTC 2018 - toddrme2178@gmail.com
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-colorspacious
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -12,42 +12,35 @@
|
||||
# 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/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%bcond_without test
|
||||
%define skip_python36 1
|
||||
Name: python-colorspacious
|
||||
Version: 1.1.0
|
||||
Version: 1.1.2
|
||||
Release: 0
|
||||
License: MIT
|
||||
Summary: Python library for doing colorspace conversions
|
||||
Url: https://github.com/njsmith/colorspacious
|
||||
Group: Development/Languages/Python
|
||||
Source: https://files.pythonhosted.org/packages/source/c/colorspacious/colorspacious-%{version}.zip
|
||||
BuildRequires: %{python_module devel}
|
||||
License: MIT
|
||||
URL: https://github.com/njsmith/colorspacious
|
||||
Source: https://files.pythonhosted.org/packages/source/c/colorspacious/colorspacious-%{version}.tar.gz
|
||||
BuildRequires: %{python_module numpy}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: unzip
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module nose}
|
||||
%endif
|
||||
Requires: python-numpy
|
||||
BuildArch: noarch
|
||||
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
Colorspacious is a powerful, accurate, and easy-to-use library for
|
||||
performing colorspace conversions.
|
||||
Colorspacious is a library for performing colorspace conversions.
|
||||
|
||||
In addition to the most common standard colorspaces (sRGB, XYZ, xyY,
|
||||
CIELab, CIELCh), we also include: color vision deficiency ("color
|
||||
blindness") simulations using the approach of Machado et al (2009); a
|
||||
complete implementation of `CIECAM02
|
||||
<https://en.wikipedia.org/wiki/CIECAM02>`_; and the perceptually
|
||||
CIELab, CIELCh), it also includes color vision deficiency ("color
|
||||
blindness") simulations using the approach of Machado et al (2009), a
|
||||
complete implementation of CIECAM02
|
||||
<https://en.wikipedia.org/wiki/CIECAM02>, and the perceptually
|
||||
uniform CAM02-UCS / CAM02-LCD / CAM02-SCD spaces proposed by Luo et al
|
||||
(2006).
|
||||
|
||||
@@ -61,13 +54,11 @@ uniform CAM02-UCS / CAM02-LCD / CAM02-SCD spaces proposed by Luo et al
|
||||
%python_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%if %{with test}
|
||||
%check
|
||||
%python_expand nosetests-%{$python_bin_suffix}
|
||||
%endif
|
||||
# no tests present
|
||||
|
||||
%files %{python_files}
|
||||
%doc LICENSE.txt README.rst
|
||||
%doc README.rst
|
||||
%license LICENSE.txt
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user