pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/math/py-colormath



Module Name:    pkgsrc
Committed By:   bacon
Date:           Thu Jul 20 14:16:23 UTC 2023

Added Files:
        pkgsrc/math/py-colormath: DESCR Makefile PLIST distinfo

Log Message:
math/py-colormath: Python interface to color math

Colormath is a simple Python module that spares the user from directly dealing
with color math.
Some features include:
 * Support for a wide range of color spaces. A good chunk of the CIE spaces,
   RGB, HSL/HSV, CMY/CMYK, and many more.
 * Conversions between the various color spaces. For example, XYZ to sRGB,
   Spectral to XYZ, CIE Lab to Adobe RGB.
 * Calculation of color difference. All CIE Delta E functions, plus CMC.
 * Chromatic adaptations (changing illuminants).
 * RGB to hex and vice-versa.
 * 16-bit RGB support.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/math/py-colormath/DESCR \
    pkgsrc/math/py-colormath/Makefile pkgsrc/math/py-colormath/PLIST \
    pkgsrc/math/py-colormath/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Added files:

Index: pkgsrc/math/py-colormath/DESCR
diff -u /dev/null pkgsrc/math/py-colormath/DESCR:1.1
--- /dev/null   Thu Jul 20 14:16:23 2023
+++ pkgsrc/math/py-colormath/DESCR      Thu Jul 20 14:16:23 2023
@@ -0,0 +1,11 @@
+Colormath is a simple Python module that spares the user from directly dealing
+with color math.
+Some features include:
+ * Support for a wide range of color spaces. A good chunk of the CIE spaces,
+   RGB, HSL/HSV, CMY/CMYK, and many more.
+ * Conversions between the various color spaces. For example, XYZ to sRGB,
+   Spectral to XYZ, CIE Lab to Adobe RGB.
+ * Calculation of color difference. All CIE Delta E functions, plus CMC.
+ * Chromatic adaptations (changing illuminants).
+ * RGB to hex and vice-versa.
+ * 16-bit RGB support.
Index: pkgsrc/math/py-colormath/Makefile
diff -u /dev/null pkgsrc/math/py-colormath/Makefile:1.1
--- /dev/null   Thu Jul 20 14:16:23 2023
+++ pkgsrc/math/py-colormath/Makefile   Thu Jul 20 14:16:23 2023
@@ -0,0 +1,17 @@
+# $NetBSD: Makefile,v 1.1 2023/07/20 14:16:23 bacon Exp $
+
+DISTNAME=      colormath-3.0.0
+PKGNAME=       ${PYPKGPREFIX}-colormath-3.0.0
+CATEGORIES=    math
+MASTER_SITES=  ${MASTER_SITE_PYPI:=c/colormath/}
+
+OWNER=         bacon%NetBSD.org@localhost
+HOMEPAGE=      https://pypi.org/project/colormath/
+COMMENT=       Module that spares the user from directly dealing with color math
+LICENSE=       2-clause-bsd
+
+DEPENDS+=      ${PYPKGPREFIX}-networkx>=1.9.1:../../math/py-networkx
+
+.include "../../lang/python/egg.mk"
+.include "../../math/py-numpy/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/math/py-colormath/PLIST
diff -u /dev/null pkgsrc/math/py-colormath/PLIST:1.1
--- /dev/null   Thu Jul 20 14:16:23 2023
+++ pkgsrc/math/py-colormath/PLIST      Thu Jul 20 14:16:23 2023
@@ -0,0 +1,42 @@
+@comment $NetBSD: PLIST,v 1.1 2023/07/20 14:16:23 bacon Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/colormath/__init__.py
+${PYSITELIB}/colormath/__init__.pyc
+${PYSITELIB}/colormath/__init__.pyo
+${PYSITELIB}/colormath/chromatic_adaptation.py
+${PYSITELIB}/colormath/chromatic_adaptation.pyc
+${PYSITELIB}/colormath/chromatic_adaptation.pyo
+${PYSITELIB}/colormath/color_appearance_models.py
+${PYSITELIB}/colormath/color_appearance_models.pyc
+${PYSITELIB}/colormath/color_appearance_models.pyo
+${PYSITELIB}/colormath/color_constants.py
+${PYSITELIB}/colormath/color_constants.pyc
+${PYSITELIB}/colormath/color_constants.pyo
+${PYSITELIB}/colormath/color_conversions.py
+${PYSITELIB}/colormath/color_conversions.pyc
+${PYSITELIB}/colormath/color_conversions.pyo
+${PYSITELIB}/colormath/color_diff.py
+${PYSITELIB}/colormath/color_diff.pyc
+${PYSITELIB}/colormath/color_diff.pyo
+${PYSITELIB}/colormath/color_diff_matrix.py
+${PYSITELIB}/colormath/color_diff_matrix.pyc
+${PYSITELIB}/colormath/color_diff_matrix.pyo
+${PYSITELIB}/colormath/color_exceptions.py
+${PYSITELIB}/colormath/color_exceptions.pyc
+${PYSITELIB}/colormath/color_exceptions.pyo
+${PYSITELIB}/colormath/color_objects.py
+${PYSITELIB}/colormath/color_objects.pyc
+${PYSITELIB}/colormath/color_objects.pyo
+${PYSITELIB}/colormath/density.py
+${PYSITELIB}/colormath/density.pyc
+${PYSITELIB}/colormath/density.pyo
+${PYSITELIB}/colormath/density_standards.py
+${PYSITELIB}/colormath/density_standards.pyc
+${PYSITELIB}/colormath/density_standards.pyo
+${PYSITELIB}/colormath/spectral_constants.py
+${PYSITELIB}/colormath/spectral_constants.pyc
+${PYSITELIB}/colormath/spectral_constants.pyo
Index: pkgsrc/math/py-colormath/distinfo
diff -u /dev/null pkgsrc/math/py-colormath/distinfo:1.1
--- /dev/null   Thu Jul 20 14:16:23 2023
+++ pkgsrc/math/py-colormath/distinfo   Thu Jul 20 14:16:23 2023
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2023/07/20 14:16:23 bacon Exp $
+
+BLAKE2s (colormath-3.0.0.tar.gz) = 2076721b972a1c05f64976559db7abdb8f79192b8e5df04b96ad1e112b9d0d4e
+SHA512 (colormath-3.0.0.tar.gz) = 12d1ab931000dadb087fdf7e56280690ff51a299e976347026703eac83373edcacd3310255fd52e05d842aab54d4f7d3ed19deda8db4b78574a7273f1c8cc058
+Size (colormath-3.0.0.tar.gz) = 39761 bytes



Home | Main Index | Thread Index | Old Index