From owner-svn-ports-head@freebsd.org Thu Oct 3 18:23:59 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E981713CE16; Thu, 3 Oct 2019 18:23:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46khGl5khXz4V3P; Thu, 3 Oct 2019 18:23:59 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A84ED1825E; Thu, 3 Oct 2019 18:23:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x93INxqn083438; Thu, 3 Oct 2019 18:23:59 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x93INxXs083436; Thu, 3 Oct 2019 18:23:59 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201910031823.x93INxXs083436@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 3 Oct 2019 18:23:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513687 - in head/multimedia/py-moviepy: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/multimedia/py-moviepy: . files X-SVN-Commit-Revision: 513687 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Oct 2019 18:24:00 -0000 Author: sunpoet Date: Thu Oct 3 18:23:58 2019 New Revision: 513687 URL: https://svnweb.freebsd.org/changeset/ports/513687 Log: Update to 1.0.1 Changes: https://github.com/Zulko/moviepy/releases Modified: head/multimedia/py-moviepy/Makefile head/multimedia/py-moviepy/distinfo head/multimedia/py-moviepy/files/patch-moviepy-config_defaults.py Modified: head/multimedia/py-moviepy/Makefile ============================================================================== --- head/multimedia/py-moviepy/Makefile Thu Oct 3 18:23:53 2019 (r513686) +++ head/multimedia/py-moviepy/Makefile Thu Oct 3 18:23:58 2019 (r513687) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= moviepy -PORTVERSION= 1.0.0 -PORTREVISION= 1 +PORTVERSION= 1.0.1 CATEGORIES= multimedia python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/multimedia/py-moviepy/distinfo ============================================================================== --- head/multimedia/py-moviepy/distinfo Thu Oct 3 18:23:53 2019 (r513686) +++ head/multimedia/py-moviepy/distinfo Thu Oct 3 18:23:58 2019 (r513687) @@ -1,3 +1,3 @@ -TIMESTAMP = 1550245347 -SHA256 (moviepy-1.0.0.tar.gz) = 16c7ffca23d90c76dd7b163f648c8166dfd589b7c180b8ff75aa327ae0a2fc6d -SIZE (moviepy-1.0.0.tar.gz) = 398839 +TIMESTAMP = 1570031407 +SHA256 (moviepy-1.0.1.tar.gz) = 9d5b0a0e884c0eb92c431baa110e560059720aab15d2ef3e4cba3892c34cf1ed +SIZE (moviepy-1.0.1.tar.gz) = 373968 Modified: head/multimedia/py-moviepy/files/patch-moviepy-config_defaults.py ============================================================================== --- head/multimedia/py-moviepy/files/patch-moviepy-config_defaults.py Thu Oct 3 18:23:53 2019 (r513686) +++ head/multimedia/py-moviepy/files/patch-moviepy-config_defaults.py Thu Oct 3 18:23:58 2019 (r513687) @@ -1,12 +1,10 @@ ---- moviepy/config_defaults.py.orig 2018-12-15 16:06:35 UTC +--- moviepy/config_defaults.py.orig 2019-10-01 15:30:18 UTC +++ moviepy/config_defaults.py @@ -50,5 +50,6 @@ IMAGEMAGICK_BINARY import os -FFMPEG_BINARY = os.getenv('FFMPEG_BINARY', 'ffmpeg-imageio') --IMAGEMAGICK_BINARY = os.getenv('IMAGEMAGICK_BINARY', 'auto-detect') -\ No newline at end of file +# Use ffmpeg from ports +FFMPEG_BINARY = "ffmpeg" -+IMAGEMAGICK_BINARY = os.getenv('IMAGEMAGICK_BINARY', 'auto-detect') + IMAGEMAGICK_BINARY = os.getenv('IMAGEMAGICK_BINARY', 'auto-detect')