From owner-svn-ports-all@freebsd.org Thu Jun 2 20:15:29 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC168B66AD0; Thu, 2 Jun 2016 20:15:29 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 83E9710EB; Thu, 2 Jun 2016 20:15:29 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u52KFSnP046100; Thu, 2 Jun 2016 20:15:28 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u52KFSY2046096; Thu, 2 Jun 2016 20:15:28 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201606022015.u52KFSY2046096@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Thu, 2 Jun 2016 20:15:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416293 - in head/graphics/py-wand: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jun 2016 20:15:29 -0000 Author: olivierd Date: Thu Jun 2 20:15:28 2016 New Revision: 416293 URL: https://svnweb.freebsd.org/changeset/ports/416293 Log: Update to 0.4.3 Modified: head/graphics/py-wand/Makefile head/graphics/py-wand/distinfo head/graphics/py-wand/files/patch-wand_api.py Modified: head/graphics/py-wand/Makefile ============================================================================== --- head/graphics/py-wand/Makefile Thu Jun 2 20:03:32 2016 (r416292) +++ head/graphics/py-wand/Makefile Thu Jun 2 20:15:28 2016 (r416293) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= Wand -PORTVERSION= 0.4.2 -PORTREVISION= 1 +PORTVERSION= 0.4.3 CATEGORIES= graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/graphics/py-wand/distinfo ============================================================================== --- head/graphics/py-wand/distinfo Thu Jun 2 20:03:32 2016 (r416292) +++ head/graphics/py-wand/distinfo Thu Jun 2 20:15:28 2016 (r416293) @@ -1,2 +1,3 @@ -SHA256 (Wand-0.4.2.tar.gz) = a0ded99a9824ddd82617a4b449164e2c5c93853aaff96f9e0bab8b405d62ca7c -SIZE (Wand-0.4.2.tar.gz) = 63720 +TIMESTAMP = 1464905007 +SHA256 (Wand-0.4.3.tar.gz) = 576133476b1970313b4ab69460051dba2563ac125143bc109d6c796f77d9bd57 +SIZE (Wand-0.4.3.tar.gz) = 65381 Modified: head/graphics/py-wand/files/patch-wand_api.py ============================================================================== --- head/graphics/py-wand/files/patch-wand_api.py Thu Jun 2 20:03:32 2016 (r416292) +++ head/graphics/py-wand/files/patch-wand_api.py Thu Jun 2 20:15:28 2016 (r416293) @@ -1,6 +1,6 @@ ---- wand/api.py.orig 2015-11-29 19:02:15 UTC +--- wand/api.py.orig 2016-05-31 16:40:51 UTC +++ wand/api.py -@@ -179,8 +179,8 @@ try: +@@ -180,8 +180,8 @@ try: libraries = load_library() except (OSError, IOError): msg = 'http://docs.wand-py.org/en/latest/guide/install.html' @@ -11,10 +11,10 @@ elif sys.platform == 'win32': msg += '#install-imagemagick-on-windows' elif sys.platform == 'darwin': -@@ -1390,7 +1390,7 @@ if platform.system() == 'Windows': - else: - if platform.system() == 'Darwin': - libc = ctypes.cdll.LoadLibrary('libc.dylib') +@@ -1418,7 +1418,7 @@ else: + except OSError: + # In case of El Capitan SIP + libc = ctypes.cdll.LoadLibrary('/usr/lib/libc.dylib') - elif platform.system() == 'FreeBSD': + elif sys.platform.startswith('dragonfly') or sys.platform.startswith('freebsd'): libc = ctypes.cdll.LoadLibrary(ctypes.util.find_library('c'))