From owner-svn-ports-all@freebsd.org Sat Nov 11 08:15:44 2017 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 71AA1E6446B; Sat, 11 Nov 2017 08:15:44 +0000 (UTC) (envelope-from yuri@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 263FE78795; Sat, 11 Nov 2017 08:15:44 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAB8FhYB086935; Sat, 11 Nov 2017 08:15:43 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAB8FgVY086931; Sat, 11 Nov 2017 08:15:42 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201711110815.vAB8FgVY086931@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 11 Nov 2017 08:15:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453959 - in head/multimedia: . py-mido X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/multimedia: . py-mido X-SVN-Commit-Revision: 453959 X-SVN-Commit-Repository: ports 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.23 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: Sat, 11 Nov 2017 08:15:44 -0000 Author: yuri Date: Sat Nov 11 08:15:42 2017 New Revision: 453959 URL: https://svnweb.freebsd.org/changeset/ports/453959 Log: New port: multimedia/py-mido: MIDI Objects for Python PR: 220750 Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D12995 Added: head/multimedia/py-mido/ head/multimedia/py-mido/Makefile (contents, props changed) head/multimedia/py-mido/distinfo (contents, props changed) head/multimedia/py-mido/pkg-descr (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Sat Nov 11 08:11:36 2017 (r453958) +++ head/multimedia/Makefile Sat Nov 11 08:15:42 2017 (r453959) @@ -328,6 +328,7 @@ SUBDIR += py-kaa-imlib2 SUBDIR += py-kaa-metadata SUBDIR += py-librtmp + SUBDIR += py-mido SUBDIR += py-mlt SUBDIR += py-moviepy SUBDIR += py-openlp Added: head/multimedia/py-mido/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-mido/Makefile Sat Nov 11 08:15:42 2017 (r453959) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= mido +DISTVERSION= 1.2.8 +CATEGORIES= multimedia python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= MIDI Objects for Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= autoplist concurrent distutils +NO_ARCH= yes + +.include Added: head/multimedia/py-mido/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-mido/distinfo Sat Nov 11 08:15:42 2017 (r453959) @@ -0,0 +1,3 @@ +TIMESTAMP = 1510112765 +SHA256 (mido-1.2.8.tar.gz) = 35142874d4521dc5fcebcdc3a645df87cb0ecad129dd031cbca391e2d052313f +SIZE (mido-1.2.8.tar.gz) = 93671 Added: head/multimedia/py-mido/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-mido/pkg-descr Sat Nov 11 08:15:42 2017 (r453959) @@ -0,0 +1,4 @@ +Mido is a library for working with MIDI messages and ports. It's designed +to be as straightforward and Pythonic as possible. + +WWW: https://github.com/olemb/mido