From owner-svn-ports-all@freebsd.org Tue Mar 30 12:53:02 2021 Return-Path: Delivered-To: svn-ports-all@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 575715C49CF; Tue, 30 Mar 2021 12:53:02 +0000 (UTC) (envelope-from fernape@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F8q9p210dz4gGp; Tue, 30 Mar 2021 12:53:02 +0000 (UTC) (envelope-from fernape@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 37C0726C82; Tue, 30 Mar 2021 12:53:02 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12UCr2Lp070563; Tue, 30 Mar 2021 12:53:02 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12UCr19T070560; Tue, 30 Mar 2021 12:53:01 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <202103301253.12UCr19T070560@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Tue, 30 Mar 2021 12:53:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r569554 - head/print/lilypond-devel X-SVN-Group: ports-head X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: head/print/lilypond-devel X-SVN-Commit-Revision: 569554 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.34 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: Tue, 30 Mar 2021 12:53:02 -0000 Author: fernape Date: Tue Mar 30 12:53:01 2021 New Revision: 569554 URL: https://svnweb.freebsd.org/changeset/ports/569554 Log: print/lilypond-devel: update to 2.23.1 Add option to use Guile2 PR: 254571 Submitted by: m.ne@gmx.net (maintainer) Modified: head/print/lilypond-devel/Makefile head/print/lilypond-devel/distinfo head/print/lilypond-devel/pkg-plist Modified: head/print/lilypond-devel/Makefile ============================================================================== --- head/print/lilypond-devel/Makefile Tue Mar 30 12:52:12 2021 (r569553) +++ head/print/lilypond-devel/Makefile Tue Mar 30 12:53:01 2021 (r569554) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lilypond -DISTVERSION= 2.23.0 +DISTVERSION= 2.23.1 CATEGORIES= print audio MASTER_SITES= http://lilypond.org/download/source/v${DISTVERSION:R}/ PKGNAMESUFFIX= -devel @@ -26,13 +26,12 @@ BUILD_DEPENDS= bash:shells/bash \ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libgmp.so:math/gmp \ - libguile.so:lang/guile1 \ libltdl.so:devel/libltdl RUN_DEPENDS= ${LOCALBASE}/share/fonts/dejavu/DejaVuSans-Bold.ttf:x11-fonts/dejavu \ mftrace:print/mftrace -USES= bison:build compiler:c++11-lib ghostscript gmake gnome \ - perl5 pkgconfig python:3.5+ +USES= bison:build compiler:c++11-lib ghostscript gmake gnome perl5 \ + pkgconfig python:3.5+ USE_CXXSTD= c++11 USE_GNOME= pango USE_PERL5= build @@ -51,21 +50,26 @@ ALL_TARGET= all BINARY_ALIAS= python=${PYTHON_VERSION} INFO= lilypond-changes \ - lilypond-contributor \ - lilypond-essay \ - lilypond-extending \ - lilypond-internals \ - lilypond-learning \ - lilypond-notation \ - lilypond-snippets \ - lilypond-usage \ - music-glossary + lilypond-contributor \ + lilypond-essay \ + lilypond-extending \ + lilypond-internals \ + lilypond-learning \ + lilypond-notation \ + lilypond-snippets \ + lilypond-usage \ + music-glossary PLIST_SUB= DISTVERSION=${DISTVERSION} -OPTIONS_DEFINE= URW NLS +OPTIONS_DEFINE= GUILE2 NLS URW OPTIONS_SUB= yes +GUILE2_DESC= Use guile2 (will incur some performance penalty) URW_DESC= Use bundled URW fonts + +GUILE2_LIB_DEPENDS= libgc-threaded.so:devel/boehm-gc-threaded \ + libguile-2.2.so:lang/guile2 +GUILE2_LIB_DEPENDS_OFF= libguile.so:lang/guile1 NLS_USES= gettext Modified: head/print/lilypond-devel/distinfo ============================================================================== --- head/print/lilypond-devel/distinfo Tue Mar 30 12:52:12 2021 (r569553) +++ head/print/lilypond-devel/distinfo Tue Mar 30 12:53:01 2021 (r569554) @@ -1,3 +1,3 @@ -TIMESTAMP = 1611684518 -SHA256 (lilypond-2.23.0.tar.gz) = b2c795278ecef7e7b4383be6d9ad64b735dd826e790ccf791e656fa16a135fd3 -SIZE (lilypond-2.23.0.tar.gz) = 17047610 +TIMESTAMP = 1616598999 +SHA256 (lilypond-2.23.1.tar.gz) = 911a8af1f8dc862ff6fee81292a1d63c6fc592f8d4a9c8080978b6698eddfb07 +SIZE (lilypond-2.23.1.tar.gz) = 17073884 Modified: head/print/lilypond-devel/pkg-plist ============================================================================== --- head/print/lilypond-devel/pkg-plist Tue Mar 30 12:52:12 2021 (r569553) +++ head/print/lilypond-devel/pkg-plist Tue Mar 30 12:53:01 2021 (r569554) @@ -351,7 +351,6 @@ share/emacs/site-lisp/lilypond-words.el %%DATADIR%%/%%DISTVERSION%%/scm/titling.scm %%DATADIR%%/%%DISTVERSION%%/scm/to-xml.scm %%DATADIR%%/%%DISTVERSION%%/scm/translation-functions.scm -%%DATADIR%%/%%DISTVERSION%%/tex/lilypond-tex-metrics.tex %%DATADIR%%/%%DISTVERSION%%/tex/texinfo-ja.tex %%DATADIR%%/%%DISTVERSION%%/vim/compiler/lilypond.vim %%DATADIR%%/%%DISTVERSION%%/vim/ftdetect/lilypond.vim