Received: by mail.netbsd.org (Postfix, from userid 605) id BB43784D77; Tue, 11 Feb 2020 17:02:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4362684D65 for ; Tue, 11 Feb 2020 17:02:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 334PWcLRITqx for ; Tue, 11 Feb 2020 17:02:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7FC5984D5F for ; Tue, 11 Feb 2020 17:02:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 79C35FBF4; Tue, 11 Feb 2020 17:02:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1581440531117290" MIME-Version: 1.0 Date: Tue, 11 Feb 2020 17:02:11 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/graphics/py-wand To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200211170211.79C35FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1581440531117290 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Feb 11 17:02:11 UTC 2020 Modified Files: pkgsrc/graphics/py-wand: Makefile PLIST distinfo Added Files: pkgsrc/graphics/py-wand/patches: patch-setup.py Log Message: 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. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/graphics/py-wand/Makefile \ pkgsrc/graphics/py-wand/PLIST cvs rdiff -u -r1.1 -r1.2 pkgsrc/graphics/py-wand/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/graphics/py-wand/patches/patch-setup.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1581440531117290 Content-Disposition: inline Content-Length: 3837 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/py-wand/Makefile diff -u pkgsrc/graphics/py-wand/Makefile:1.3 pkgsrc/graphics/py-wand/Makefile:1.4 --- pkgsrc/graphics/py-wand/Makefile:1.3 Thu Jan 2 09:07:46 2020 +++ pkgsrc/graphics/py-wand/Makefile Tue Feb 11 17:02:11 2020 @@ -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 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" Index: pkgsrc/graphics/py-wand/PLIST diff -u pkgsrc/graphics/py-wand/PLIST:1.3 pkgsrc/graphics/py-wand/PLIST:1.4 --- pkgsrc/graphics/py-wand/PLIST:1.3 Wed Jan 1 06:13:37 2020 +++ pkgsrc/graphics/py-wand/PLIST Tue Feb 11 17:02:11 2020 @@ -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 Index: pkgsrc/graphics/py-wand/distinfo diff -u pkgsrc/graphics/py-wand/distinfo:1.1 pkgsrc/graphics/py-wand/distinfo:1.2 --- pkgsrc/graphics/py-wand/distinfo:1.1 Mon Dec 30 00:52:30 2019 +++ pkgsrc/graphics/py-wand/distinfo Tue Feb 11 17:02:11 2020 @@ -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 Added files: Index: pkgsrc/graphics/py-wand/patches/patch-setup.py diff -u /dev/null pkgsrc/graphics/py-wand/patches/patch-setup.py:1.1 --- /dev/null Tue Feb 11 17:02:11 2020 +++ pkgsrc/graphics/py-wand/patches/patch-setup.py Tue Feb 11 17:02:11 2020 @@ -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(), --_----------=_1581440531117290--