Update to 2.17.25: changes not documented.

This commit is contained in:
Thomas Klausner 2013-09-01 09:55:03 +00:00
parent a4a88bea29
commit cdfd63b0f5
4 changed files with 11 additions and 38 deletions

View file

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.11 2013/08/05 11:36:21 thomasklausner Exp $
# $NetBSD: Makefile,v 1.12 2013/09/01 09:55:03 thomasklausner Exp $
DISTNAME= lilypond-2.17.23
DISTNAME= lilypond-2.17.25
CATEGORIES= print
MASTER_SITES= http://download.linuxaudio.org/lilypond/sources/v2.17/
@ -62,6 +62,11 @@ CONFIGURE_ENV+= LEX="${PREFIX}/bin/flex"
USE_TOOLS+= flex
.endif
# files were created with bison<3 and regeneration rules
# aren't correct
post-extract:
rm ${WRKSRC}/lily/out/parser.*
.include "../../devel/pango/buildlink3.mk"
.include "../../fonts/fontconfig/buildlink3.mk"
.include "../../lang/guile/buildlink3.mk"

View file

@ -1,9 +1,7 @@
$NetBSD: distinfo,v 1.12 2013/08/05 11:36:21 thomasklausner Exp $
$NetBSD: distinfo,v 1.13 2013/09/01 09:55:03 thomasklausner Exp $
SHA1 (lilypond-2.17.23.tar.gz) = d729fede319f8b580a709fd0c91b79a227eb3f8c
RMD160 (lilypond-2.17.23.tar.gz) = 956615ab591b12055f04f00eafe7b94d1e3c1acd
Size (lilypond-2.17.23.tar.gz) = 16348515 bytes
SHA1 (lilypond-2.17.25.tar.gz) = 122f5c9d47ef5c3e15cbc668afaeefa3b41397d7
RMD160 (lilypond-2.17.25.tar.gz) = 22eaa2fbdcd2aa6a0fd45bb5634005ba38592586
Size (lilypond-2.17.25.tar.gz) = 16358453 bytes
SHA1 (patch-ab) = a1d327ab900cca18b9306846f137e1bbcfdca945
SHA1 (patch-configure) = b0c73d828f26fb8db895ace55a678a6d7b09db0e
SHA1 (patch-lily_parser.yy) = 3314a19713680f4e0b1449c86d2b60c58931a49a
SHA1 (patch-scripts_auxiliar_cg-section.sh) = c6838a358ae1ea2f8ddd0791e72eb3c25ac2019b

View file

@ -1,15 +0,0 @@
$NetBSD: patch-lily_parser.yy,v 1.1 2013/07/31 14:44:08 thomasklausner Exp $
Fix for bison-3.0.
--- lily/parser.yy.orig 2013-01-04 13:41:57.000000000 +0000
+++ lily/parser.yy
@@ -100,7 +100,7 @@ or
-%pure_parser
+%pure-parser
%locations

View file

@ -1,15 +0,0 @@
$NetBSD: patch-scripts_auxiliar_cg-section.sh,v 1.1 2013/01/25 11:37:34 thomasklausner Exp $
Fix unportable test(1) construct.
--- scripts/auxiliar/cg-section.sh.orig 2013-01-04 13:41:56.000000000 +0000
+++ scripts/auxiliar/cg-section.sh
@@ -31,7 +31,7 @@ EOF
exit "$1"
}
-if [ "$1" == '-h' ] || [ "$1" == '--help' ]; then
+if [ "$1" = '-h' ] || [ "$1" = '--help' ]; then
usage 0
fi