Index: head/print/frescobaldi/Makefile =================================================================== --- head/print/frescobaldi/Makefile (revision 433947) +++ head/print/frescobaldi/Makefile (revision 433948) @@ -1,27 +1,27 @@ # Created by: martin.dieringer@gmx.de # $FreeBSD$ PORTNAME= frescobaldi -PORTVERSION= 2.0.15 -PORTREVISION= 2 +PORTVERSION= 2.19.0 +DISTVERSIONPREFIX= v CATEGORIES= print kde -MASTER_SITES= https://github.com/wbsoft/frescobaldi/releases/download/v${PORTVERSION}/ MAINTAINER= martin.dieringer@gmx.de COMMENT= Music score editor for lilypond LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual RUN_DEPENDS= lilypond:print/lilypond \ - ${PYTHON_PKGNAMEPREFIX}poppler-qt4>=0:graphics/py-poppler-qt4 + ${PYTHON_PKGNAMEPREFIX}poppler-qt4>=0:graphics/py-poppler-qt4 \ + ${PYTHON_PKGNAMEPREFIX}ly>=0:print/py-python-ly +USE_GITHUB= yes +GH_ACCOUNT= wbsoft + USES= gettext kde:4 python INSTALLS_ICONS= yes USE_KDE= kdelibs pykde4_build pykde4_run USE_PYTHON= distutils autoplist - -post-patch: - @${REINPLACE_CMD} '/install-script=frescobaldi-wininst.py/d' ${WRKSRC}/setup.cfg .include Index: head/print/frescobaldi/distinfo =================================================================== --- head/print/frescobaldi/distinfo (revision 433947) +++ head/print/frescobaldi/distinfo (revision 433948) @@ -1,2 +1,3 @@ -SHA256 (frescobaldi-2.0.15.tar.gz) = 1f9d56fc1e4de90c93b327d78b6c086ed2fc575b67503bdbb852545ff75daa17 -SIZE (frescobaldi-2.0.15.tar.gz) = 3747346 +TIMESTAMP = 1486329913 +SHA256 (wbsoft-frescobaldi-v2.19.0_GH0.tar.gz) = a00857f32c77fc5ff364c33f07c4d5b513aa69b76059c4557096469276b2e35b +SIZE (wbsoft-frescobaldi-v2.19.0_GH0.tar.gz) = 7136513 Index: head/print/frescobaldi/files/patch-frescobaldi__app_menu.py =================================================================== --- head/print/frescobaldi/files/patch-frescobaldi__app_menu.py (nonexistent) +++ head/print/frescobaldi/files/patch-frescobaldi__app_menu.py (revision 433948) @@ -0,0 +1,18 @@ +--- frescobaldi_app/menu.py.orig 2016-04-21 23:00:30 UTC ++++ frescobaldi_app/menu.py +@@ -23,11 +23,12 @@ Frescobaldi main menu. + + from __future__ import unicode_literals + +-try: ++import sys ++if sys.version_info >= (3, 0): + import builtins # py3 +-except ImportError: ++else: + import __builtin__ as builtins # py2 +- ++ + from PyQt4.QtCore import QSettings + from PyQt4.QtGui import QMenu + Property changes on: head/print/frescobaldi/files/patch-frescobaldi__app_menu.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/print/frescobaldi/files/patch-frescobaldi__app_po_____init____.py =================================================================== --- head/print/frescobaldi/files/patch-frescobaldi__app_po_____init____.py (nonexistent) +++ head/print/frescobaldi/files/patch-frescobaldi__app_po_____init____.py (revision 433948) @@ -0,0 +1,15 @@ +--- frescobaldi_app/po/__init__.py.orig 2016-04-21 23:00:30 UTC ++++ frescobaldi_app/po/__init__.py +@@ -21,9 +21,10 @@ + Internationalization of Frescobaldi. + """ + +-try: ++import sys ++if sys.version_info >= (3, 0): + import builtins # py3 +-except ImportError: ++else: + import __builtin__ as builtins # py2 + + import os Property changes on: head/print/frescobaldi/files/patch-frescobaldi__app_po_____init____.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/print/frescobaldi/files/patch-frescobaldi__app_snippet_builtin.py =================================================================== --- head/print/frescobaldi/files/patch-frescobaldi__app_snippet_builtin.py (nonexistent) +++ head/print/frescobaldi/files/patch-frescobaldi__app_snippet_builtin.py (revision 433948) @@ -0,0 +1,15 @@ +--- frescobaldi_app/snippet/builtin.py.orig 2016-04-21 23:00:30 UTC ++++ frescobaldi_app/snippet/builtin.py +@@ -23,9 +23,10 @@ Builtin snippets. + + from __future__ import unicode_literals + +-try: ++import sys ++if sys.version_info >= (3, 0): + import builtins # py3 +-except ImportError: ++else: + import __builtin__ as builtins # py2 + + import collections Property changes on: head/print/frescobaldi/files/patch-frescobaldi__app_snippet_builtin.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/print/frescobaldi/files/patch-frescobaldi__app_snippet_expand.py =================================================================== --- head/print/frescobaldi/files/patch-frescobaldi__app_snippet_expand.py (nonexistent) +++ head/print/frescobaldi/files/patch-frescobaldi__app_snippet_expand.py (revision 433948) @@ -0,0 +1,15 @@ +--- frescobaldi_app/snippet/expand.py.orig 2016-04-21 23:00:30 UTC ++++ frescobaldi_app/snippet/expand.py +@@ -23,9 +23,10 @@ Expand variables like $DATE, $LILYPOND_V + + from __future__ import unicode_literals + +-try: ++import sys ++if sys.version_info >= (3, 0): + import builtins # py3 +-except ImportError: ++else: + import __builtin__ as builtins # py2 + + import time Property changes on: head/print/frescobaldi/files/patch-frescobaldi__app_snippet_expand.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/print/frescobaldi/files/patch-frescobaldi__app_snippet_highlight.py =================================================================== --- head/print/frescobaldi/files/patch-frescobaldi__app_snippet_highlight.py (nonexistent) +++ head/print/frescobaldi/files/patch-frescobaldi__app_snippet_highlight.py (revision 433948) @@ -0,0 +1,15 @@ +--- frescobaldi_app/snippet/highlight.py.orig 2016-04-21 23:00:30 UTC ++++ frescobaldi_app/snippet/highlight.py +@@ -23,9 +23,10 @@ Highlighter for the snippet editor and v + + from __future__ import unicode_literals + +-try: ++import sys ++if sys.version_info >= (3, 0): + import builtins # py3 +-except ImportError: ++else: + import __builtin__ as builtins # py2 + + import keyword Property changes on: head/print/frescobaldi/files/patch-frescobaldi__app_snippet_highlight.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property