svn commit: r475820 - head/graphics/py-imageio/files

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Jul 29 19:24:23 UTC 2018


Author: sunpoet
Date: Sun Jul 29 19:24:07 2018
New Revision: 475820
URL: https://svnweb.freebsd.org/changeset/ports/475820

Log:
  Add preliminary FreeBSD support to fix multimedia/py-moviepy
  
  - Bump PORTREVISION for package change
  
  PR:		227363
  Reported by:	yuri
  Reference:	https://github.com/Zulko/moviepy/issues/756
  		https://github.com/sunpoet/imageio/commit/0a4562bfee1efd7ccb95a98f16ad1519dc2e2f63

Added:
  head/graphics/py-imageio/files/
  head/graphics/py-imageio/files/patch-imageio-core-util.py   (contents, props changed)

Added: head/graphics/py-imageio/files/patch-imageio-core-util.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-imageio/files/patch-imageio-core-util.py	Sun Jul 29 19:24:07 2018	(r475820)
@@ -0,0 +1,11 @@
+--- imageio/core/util.py.orig
++++ imageio/core/util.py
+@@ -550,6 +550,8 @@ def get_platform():
+         plat = 'win%i'
+     elif sys.platform.startswith('darwin'):
+         plat = 'osx%i'
++    elif sys.platform.startswith('freebsd'):
++        plat = 'freebsd%i'
+     else:  # pragma: no cover
+         return None
+     


More information about the svn-ports-all mailing list