pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/graphics/py-wand py-wand: updated to 0.5.9
details: https://anonhg.NetBSD.org/pkgsrc/rev/8a6b794db618
branches: trunk
changeset: 423142:8a6b794db618
user: adam <adam%pkgsrc.org@localhost>
date: Tue Feb 11 17:02:11 2020 +0000
description:
py-wand: updated to 0.5.9
Version 0.5.9
Fixed dither parameter in Image.quantize() method for ImageMagick-7.
Added Image.combine() method. [Thanks Fred!]
Check __fspath__ attribute for filename parameter when calling Image.save().
Fixed typo in ProfileDict documentation.
Fixed typo in Resource.c_is_resource documentation.
Updated broken sentence in Image.thumbnail() method.
Check for linux_distribution() as method was removed in Python 3.8.
Added Image.delay property. Previously only available with SingleImage class.
diffstat:
graphics/py-wand/Makefile | 21 +++++++--------------
graphics/py-wand/PLIST | 3 +--
graphics/py-wand/distinfo | 11 ++++++-----
graphics/py-wand/patches/patch-setup.py | 14 ++++++++++++++
4 files changed, 28 insertions(+), 21 deletions(-)
diffs (85 lines):
diff -r bfb43c02d70d -r 8a6b794db618 graphics/py-wand/Makefile
--- a/graphics/py-wand/Makefile Tue Feb 11 16:06:49 2020 +0000
+++ b/graphics/py-wand/Makefile Tue Feb 11 17:02:11 2020 +0000
@@ -1,25 +1,18 @@
-# $NetBSD: Makefile,v 1.3 2020/01/02 09:07:46 mef Exp $
+# $NetBSD: Makefile,v 1.4 2020/02/11 17:02:11 adam Exp $
-VERSION= 0.5.8
-DISTNAME= wand-${VERSION}
-PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES= graphics
-MASTER_SITES= ${MASTER_SITE_GITHUB:=emcconville/}
-GITHUB_PROJECT= Wand
+DISTNAME= Wand-0.5.9
+PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
+CATEGORIES= graphics python
+MASTER_SITES= ${MASTER_SITE_PYPI:=W/Wand/}
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= http://docs.wand-py.org/
-COMMENT= Ctypes-based simple ImageMagick binding for Python
+COMMENT= Ctypes-based simple ImageMagick binding for Python
LICENSE= mit
-EGG_NAME= Wand-${VERSION}
-PKGCONFIG_OVERRIDE+= Wand.pc.in
-
DEPENDS+= ImageMagick-[0-9]*:../../graphics/ImageMagick
-post-install:
- ${MV} ${DESTDIR}${PREFIX}/README.rst ${DESTDIR}${PREFIX}/${PYSITELIB}/wand
+USE_LANGUAGES= # none
-.include "../../lang/python/application.mk"
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
diff -r bfb43c02d70d -r 8a6b794db618 graphics/py-wand/PLIST
--- a/graphics/py-wand/PLIST Tue Feb 11 16:06:49 2020 +0000
+++ b/graphics/py-wand/PLIST Tue Feb 11 17:02:11 2020 +0000
@@ -1,10 +1,9 @@
-@comment $NetBSD: PLIST,v 1.3 2020/01/01 06:13:37 mef Exp $
+@comment $NetBSD: PLIST,v 1.4 2020/02/11 17:02:11 adam 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}/wand/README.rst
${PYSITELIB}/wand/__init__.py
${PYSITELIB}/wand/__init__.pyc
${PYSITELIB}/wand/__init__.pyo
diff -r bfb43c02d70d -r 8a6b794db618 graphics/py-wand/distinfo
--- a/graphics/py-wand/distinfo Tue Feb 11 16:06:49 2020 +0000
+++ b/graphics/py-wand/distinfo Tue Feb 11 17:02:11 2020 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.1 2019/12/30 00:52:30 mef Exp $
+$NetBSD: distinfo,v 1.2 2020/02/11 17:02:11 adam Exp $
-SHA1 (wand-0.5.8.tar.gz) = dca490317cd42b08005586abd5a99c4ed2bbdd09
-RMD160 (wand-0.5.8.tar.gz) = 2be6e911a71ac37258f47b5c6a677a46e4799f96
-SHA512 (wand-0.5.8.tar.gz) = 5e525bdfe54d939e47f86b38b8e0f2f01f826526469d0308f58074881cffa7434e60e39ca2a914e4f1b547437bc4bbee85b204af19a2a5d909abf7126b51c44c
-Size (wand-0.5.8.tar.gz) = 10484892 bytes
+SHA1 (Wand-0.5.9.tar.gz) = 3bd26d37123852b485087f1d7e71cbee2f9a5ffd
+RMD160 (Wand-0.5.9.tar.gz) = 289c10947901c754e1162177afad30022ce89b95
+SHA512 (Wand-0.5.9.tar.gz) = 892709a411c44c80aa55346b857b294e36ee428e558a9a3347a17ac9c46e28fe490469468cb4c2044a82c50c0890ed1eda9768a171686906ed40332752dedaf2
+Size (Wand-0.5.9.tar.gz) = 118311 bytes
+SHA1 (patch-setup.py) = c4aa3386573378aba14c4388141cbfb353eeb2dd
diff -r bfb43c02d70d -r 8a6b794db618 graphics/py-wand/patches/patch-setup.py
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/graphics/py-wand/patches/patch-setup.py Tue Feb 11 17:02:11 2020 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-setup.py,v 1.1 2020/02/11 17:02:11 adam Exp $
+
+Do not install README.rst.
+
+--- setup.py.orig 2020-02-11 16:56:13.000000000 +0000
++++ setup.py
+@@ -40,7 +40,6 @@ test_requires = [
+ setup(
+ name='Wand',
+ packages=['wand', 'wand.cdefs'],
+- data_files=[('', ['README.rst'])],
+ version=VERSION,
+ description='Ctypes-based simple MagickWand API binding for Python',
+ long_description=readme(),
Home |
Main Index |
Thread Index |
Old Index