From owner-svn-ports-head@freebsd.org Sun Feb 12 13:50:27 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 7F440CDB15D; Sun, 12 Feb 2017 13:50:27 +0000 (UTC) (envelope-from olivierd@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 573931BE9; Sun, 12 Feb 2017 13:50:27 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1CDoQPb076648; Sun, 12 Feb 2017 13:50:26 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1CDoQq4076644; Sun, 12 Feb 2017 13:50:26 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201702121350.v1CDoQq4076644@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sun, 12 Feb 2017 13:50:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433942 - in head/print: . py-python-ly X-SVN-Group: ports-head 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.23 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: Sun, 12 Feb 2017 13:50:27 -0000 Author: olivierd Date: Sun Feb 12 13:50:25 2017 New Revision: 433942 URL: https://svnweb.freebsd.org/changeset/ports/433942 Log: This package provides a Python library ly containing various Python modules to parse, manipulate or create documents in LilyPond format. A command line program ly is also provided that can be used to do various manipulations with LilyPond files. The LilyPond format is a plain text input format that is used by the GNU music typesetter LilyPond (www.lilypond.org). The python-ly package is Free Software, licensed under the GPL. This package is written by the Frescobaldi developers and is used extensively by the Frescobaldi project. The main author is Wilbert Berendsen. WWW: https://github.com/wbsoft/python-ly PR: 216824 Submitted by: Added: head/print/py-python-ly/ head/print/py-python-ly/Makefile (contents, props changed) head/print/py-python-ly/distinfo (contents, props changed) head/print/py-python-ly/pkg-descr (contents, props changed) Modified: head/print/Makefile Modified: head/print/Makefile ============================================================================== --- head/print/Makefile Sun Feb 12 13:46:39 2017 (r433941) +++ head/print/Makefile Sun Feb 12 13:50:25 2017 (r433942) @@ -197,6 +197,7 @@ SUBDIR += py-preppy SUBDIR += py-pycups SUBDIR += py-pyscript + SUBDIR += py-python-ly SUBDIR += py-qt5-printsupport SUBDIR += py-relatorio SUBDIR += py-reportlab Added: head/print/py-python-ly/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/py-python-ly/Makefile Sun Feb 12 13:50:25 2017 (r433942) @@ -0,0 +1,21 @@ +# Created by: martin.dieringer@gmx.de +# $FreeBSD$ + +PORTNAME= python-ly +PORTVERSION= 0.9.4 +DISTVERSIONPREFIX= v +CATEGORIES= print python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= martin.dieringer@gmx.de +COMMENT= Python package to manipulate LilyPond files + +LICENSE= GPLv3 + +USE_GITHUB= yes +GH_ACCOUNT= wbsoft + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/print/py-python-ly/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/py-python-ly/distinfo Sun Feb 12 13:50:25 2017 (r433942) @@ -0,0 +1,3 @@ +TIMESTAMP = 1486329729 +SHA256 (wbsoft-python-ly-v0.9.4_GH0.tar.gz) = b847dcc2371beb63df2bd85350956a43c05873e1a8656b79b21e3e6f979a856d +SIZE (wbsoft-python-ly-v0.9.4_GH0.tar.gz) = 231808 Added: head/print/py-python-ly/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/py-python-ly/pkg-descr Sun Feb 12 13:50:25 2017 (r433942) @@ -0,0 +1,13 @@ +This package provides a Python library ly containing various Python modules +to parse, manipulate or create documents in LilyPond format. A command line +program ly is also provided that can be used to do various manipulations +with LilyPond files. + +The LilyPond format is a plain text input format that is used by the GNU +music typesetter LilyPond (www.lilypond.org). + +The python-ly package is Free Software, licensed under the GPL. This +package is written by the Frescobaldi developers and is used extensively by +the Frescobaldi project. The main author is Wilbert Berendsen. + +WWW: https://github.com/wbsoft/python-ly