aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorolivierd <olivierd@FreeBSD.org>2016-10-22 23:30:08 +0800
committerolivierd <olivierd@FreeBSD.org>2016-10-22 23:30:08 +0800
commit57d4b5d67d20cdfc3d069bede6e5f6495f8f5246 (patch)
tree30e8f0af5c99de12eee93a48195f7f94cfcf4802
parent9cdf09c1530254eb5ce916c50b2053df6b7b2cb5 (diff)
downloadfreebsd-ports-gnome-57d4b5d67d20cdfc3d069bede6e5f6495f8f5246.tar.gz
freebsd-ports-gnome-57d4b5d67d20cdfc3d069bede6e5f6495f8f5246.tar.zst
freebsd-ports-gnome-57d4b5d67d20cdfc3d069bede6e5f6495f8f5246.zip
- Update to 0.4.4
- Remove patch (merged upstream)
-rw-r--r--graphics/py-wand/Makefile2
-rw-r--r--graphics/py-wand/distinfo6
-rw-r--r--graphics/py-wand/files/patch-wand_api.py22
3 files changed, 4 insertions, 26 deletions
diff --git a/graphics/py-wand/Makefile b/graphics/py-wand/Makefile
index 81eed53287ca..1d71c224b9dd 100644
--- a/graphics/py-wand/Makefile
+++ b/graphics/py-wand/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= Wand
-PORTVERSION= 0.4.3
+PORTVERSION= 0.4.4
CATEGORIES= graphics python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/graphics/py-wand/distinfo b/graphics/py-wand/distinfo
index 2dc754fc8c2b..847f1873295f 100644
--- a/graphics/py-wand/distinfo
+++ b/graphics/py-wand/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1464905007
-SHA256 (Wand-0.4.3.tar.gz) = 576133476b1970313b4ab69460051dba2563ac125143bc109d6c796f77d9bd57
-SIZE (Wand-0.4.3.tar.gz) = 65381
+TIMESTAMP = 1477149724
+SHA256 (Wand-0.4.4.tar.gz) = 28e0454c9d16d69c5d5034918d96320d8f9f1377b4fdaf4944eec2f938c74704
+SIZE (Wand-0.4.4.tar.gz) = 65559
diff --git a/graphics/py-wand/files/patch-wand_api.py b/graphics/py-wand/files/patch-wand_api.py
deleted file mode 100644
index beaf537da944..000000000000
--- a/graphics/py-wand/files/patch-wand_api.py
+++ /dev/null
@@ -1,22 +0,0 @@
---- wand/api.py.orig 2016-05-31 16:40:51 UTC
-+++ wand/api.py
-@@ -180,8 +180,8 @@ try:
- libraries = load_library()
- except (OSError, IOError):
- msg = 'http://docs.wand-py.org/en/latest/guide/install.html'
-- if sys.platform.startswith('freebsd'):
-- msg = 'pkg_add -r'
-+ if sys.platform.startswith('dragonfly') or sys.platform.startswith('freebsd'):
-+ msg = 'pkg install'
- elif sys.platform == 'win32':
- msg += '#install-imagemagick-on-windows'
- elif sys.platform == 'darwin':
-@@ -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'))
- else:
- libc = ctypes.cdll.LoadLibrary('libc.so.6')