Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Jul 2018 19:24:07 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r475820 - head/graphics/py-imageio/files
Message-ID:  <201807291924.w6TJO7pR060802@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
+     



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807291924.w6TJO7pR060802>