summaryrefslogtreecommitdiff
path: root/media-libs/lv2/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-08-25 10:45:55 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-08-25 10:45:55 +0100
commit3cf7c3ef441822c889356fd1812ebf2944a59851 (patch)
treec513fe68548b40365c1c2ebfe35c58ad431cdd77 /media-libs/lv2/files
parent05b8b0e0af1d72e51a3ee61522941bf7605cd01c (diff)
gentoo resync : 25.08.2020
Diffstat (limited to 'media-libs/lv2/files')
-rw-r--r--media-libs/lv2/files/lv2-1.16.0-python3.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/media-libs/lv2/files/lv2-1.16.0-python3.patch b/media-libs/lv2/files/lv2-1.16.0-python3.patch
deleted file mode 100644
index 330fc4cfcac7..000000000000
--- a/media-libs/lv2/files/lv2-1.16.0-python3.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py
-index ddd0ba5..224ace8 100755
---- a/lv2specgen/lv2specgen.py
-+++ b/lv2specgen/lv2specgen.py
-@@ -329,7 +329,7 @@ def getComment(m, urinode, classlist, proplist, instalist):
- if have_lxml:
- try:
- # Parse and validate documentation as XHTML Basic 1.1
-- doc = """<?xml version="1.0" encoding="UTF-8"?>
-+ doc = """<?xml version="1.0"?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN"
- "DTD/xhtml-basic11.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
-@@ -340,7 +340,7 @@ def getComment(m, urinode, classlist, proplist, instalist):
- %s
- </body>
- </html>
--""" % str(markup.decode())
-+""" % str(markup)
-
- oldcwd = os.getcwd()
- os.chdir(specgendir)