Received: by mail.netbsd.org (Postfix, from userid 605) id 9A00B84D90; Sat, 5 Sep 2020 00:11:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 162F584D61 for ; Sat, 5 Sep 2020 00:07:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 9y4ttgJKOW0C for ; Sat, 5 Sep 2020 00:07:17 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8A27984D24 for ; Sat, 5 Sep 2020 00:07:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 834D0FB28; Sat, 5 Sep 2020 00:07:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159926443717230" MIME-Version: 1.0 Date: Sat, 5 Sep 2020 00:07:17 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/audio/py-music21 To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20200905000717.834D0FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_159926443717230 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Sat Sep 5 00:07:17 UTC 2020 Modified Files: pkgsrc/audio/py-music21: Makefile options.mk Log Message: py-music21: add py-jsonpickle as a dependency py-jsonpickle is one of two choices available to serialize py-music21 objects. Add it by default, since it's a very small dependency. While here, add another explanatory comment to options.mk. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/audio/py-music21/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/audio/py-music21/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159926443717230 Content-Disposition: inline Content-Length: 1822 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/py-music21/Makefile diff -u pkgsrc/audio/py-music21/Makefile:1.5 pkgsrc/audio/py-music21/Makefile:1.6 --- pkgsrc/audio/py-music21/Makefile:1.5 Fri Sep 4 01:11:31 2020 +++ pkgsrc/audio/py-music21/Makefile Sat Sep 5 00:07:17 2020 @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.5 2020/09/04 01:11:31 gutteridge Exp $ +# $NetBSD: Makefile,v 1.6 2020/09/05 00:07:17 gutteridge Exp $ VERSION= 6.1.0 DISTNAME= music21-noCorpus-${VERSION} PKGNAME= ${PYPKGPREFIX}-music21-${VERSION} +PKGREVISION= 1 CATEGORIES= audio python MASTER_SITES= ${MASTER_SITE_GITHUB:=cuthbertLab/} GITHUB_PROJECT= music21 @@ -22,6 +23,7 @@ DEPENDS+= ${PYPKGPREFIX}-joblib-[0-9]*:. DEPENDS+= ${PYPKGPREFIX}-more-itertools-[0-9]*:../../devel/py-more-itertools DEPENDS+= ${PYPKGPREFIX}-matplotlib-[0-9]*:../../graphics/py-matplotlib DEPENDS+= ${PYPKGPREFIX}-scipy-[0-9]*:../../math/py-scipy +DEPENDS+= ${PYPKGPREFIX}-jsonpickle-[0-9]*:../../textproc/py-jsonpickle DEPENDS+= ${PYPKGPREFIX}-webcolors>=1.11:../../www/py-webcolors # Many tests will fail because they depend on the score files that Index: pkgsrc/audio/py-music21/options.mk diff -u pkgsrc/audio/py-music21/options.mk:1.2 pkgsrc/audio/py-music21/options.mk:1.3 --- pkgsrc/audio/py-music21/options.mk:1.2 Fri Sep 4 01:11:31 2020 +++ pkgsrc/audio/py-music21/options.mk Sat Sep 5 00:07:17 2020 @@ -1,4 +1,8 @@ -# $NetBSD: options.mk,v 1.2 2020/09/04 01:11:31 gutteridge Exp $ +# $NetBSD: options.mk,v 1.3 2020/09/05 00:07:17 gutteridge Exp $ + +# print/lilypond and devel/py-game are optional because they pull in +# large and complex dependency chains that don't presently build in +# some environments. # audio/musescore is also an application dependency that gets called # by music21's show() method, but it's a pretty heavy dependency for --_----------=_159926443717230--