lv2: upgrade 1.1.17+ -> 1.1.18 and change SRC_URI

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
This commit is contained in:
Andreas Müller
2020-05-21 17:32:47 +02:00
parent 9d9ad9126b
commit 40c3f9b2f1
2 changed files with 7 additions and 7 deletions

View File

@@ -3,12 +3,12 @@ LICENSE = "ISC"
LIC_FILES_CHKSUM = "file://COPYING;md5=0383f162366b0c5a316292759a55d292"
SRC_URI = " \
gitsm://github.com/drobilla/lv2.git \
gitsm://github.com/lv2/lv2.git \
file://0001-Output-more-details-on-import-error-to-catch-missing.patch \
file://0001-Fix-build-for-python3-only-environments.patch \
"
S = "${WORKDIR}/git"
SRCREV = "06d3f56a39be35b73b7c687920da871b24913edd"
PV = "1.17.0+git${SRCPV}"
SRCREV = "5f40c5c421ffc50783962efb4cab151c8c2519dd"
PV = "1.18.0"
inherit waf pkgconfig

View File

@@ -30,12 +30,12 @@ index 23a239d..685f32e 100755
doap = rdflib.Namespace('http://usefulinc.com/ns/doap#')
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py
index ddd0ba5..c86157e 100755
index 8cfa1c7..028e731 100755
--- a/lv2specgen/lv2specgen.py
+++ b/lv2specgen/lv2specgen.py
@@ -63,13 +63,15 @@ try:
from pygments.lexer import RegexLexer, include, bygroups
from pygments.token import Text, Comment, Operator, Keyword, Name, String, Literal, Punctuation
@@ -66,13 +66,15 @@ try:
import pygments.formatters
have_pygments = True
-except ImportError:
+except ImportError as imperror: