From owner-svn-ports-head@freebsd.org Fri Nov 24 20:32:45 2017 Return-Path: Delivered-To: svn-ports-head@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 52740DF0C57; Fri, 24 Nov 2017 20:32:45 +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 2916D63950; Fri, 24 Nov 2017 20:32:45 +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 vAOKWi1i006145; Fri, 24 Nov 2017 20:32:44 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAOKWhU3006141; Fri, 24 Nov 2017 20:32:43 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201711242032.vAOKWhU3006141@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 24 Nov 2017 20:32:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454848 - in head/multimedia: . py-pretty_midi X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/multimedia: . py-pretty_midi X-SVN-Commit-Revision: 454848 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.25 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: Fri, 24 Nov 2017 20:32:45 -0000 Author: yuri Date: Fri Nov 24 20:32:43 2017 New Revision: 454848 URL: https://svnweb.freebsd.org/changeset/ports/454848 Log: New port: multimedia/py-pretty_midi: Utility functions for handling MIDI data in a nice/intuitive way PR: 220752 Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D12998 Added: head/multimedia/py-pretty_midi/ head/multimedia/py-pretty_midi/Makefile (contents, props changed) head/multimedia/py-pretty_midi/distinfo (contents, props changed) head/multimedia/py-pretty_midi/pkg-descr (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Fri Nov 24 20:24:30 2017 (r454847) +++ head/multimedia/Makefile Fri Nov 24 20:32:43 2017 (r454848) @@ -332,6 +332,7 @@ SUBDIR += py-moviepy SUBDIR += py-openlp SUBDIR += py-periscope + SUBDIR += py-pretty_midi SUBDIR += py-qt4-multimedia SUBDIR += py-qt4-phonon SUBDIR += py-qt5-multimedia Added: head/multimedia/py-pretty_midi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-pretty_midi/Makefile Fri Nov 24 20:32:43 2017 (r454848) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= pretty_midi +DISTVERSION= 0.2.8 +CATEGORIES= multimedia python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Utility functions for handling MIDI data in a nice/intuitive way + +LICENSE= MIT + +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}mido>=1.1.16:multimedia/py-mido \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/multimedia/py-pretty_midi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-pretty_midi/distinfo Fri Nov 24 20:32:43 2017 (r454848) @@ -0,0 +1,3 @@ +TIMESTAMP = 1510117234 +SHA256 (pretty_midi-0.2.8.tar.gz) = 1246439dd74c31abbe2f7a3aef3d28620b1882ece635f0baf88e2c1b491f1432 +SIZE (pretty_midi-0.2.8.tar.gz) = 5588066 Added: head/multimedia/py-pretty_midi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-pretty_midi/pkg-descr Fri Nov 24 20:32:43 2017 (r454848) @@ -0,0 +1,4 @@ +Functions and classes which make handling MIDI data easy in Python. +Provides methods for parsing, modifying, and analyzing MIDI files. + +WWW: https://github.com/craffel/pretty-midi