File: 01_fix-python-entrypoints.patch

package info (click to toggle)
python-pyrdfa 3.5.2%2B20220621~ds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 584 kB
  • sloc: python: 5,386; makefile: 4; sh: 2
file content (22 lines) | stat: -rw-r--r-- 975 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Description: avoid problems to parse EntryPoint during build
 This fixes "error in pyRdfa3 setup command: Problems to parse EntryPoint".
Author: Christian Marillat <marillat@debian.org>
Bug: https://bugs.debian.org/1026680
Last-Update: 2023-02-04
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/setup.py
+++ b/setup.py
@@ -29,9 +29,9 @@
             'rdfa1.1 = pyRdfa.rdflibparsers:RDFaParser',
             'application/svg+xml = pyRdfa.rdflibparsers:RDFaParser',
             'application/xhtml+xml = pyRdfa.rdflibparsers:RDFaParser',
-            'hturtle = pyRdfa.rdflibparsers:HTurtleParser'
-            'html = pyRdfa.rdflibparsers:StructuredDataParser'
-            'html/text = pyRdfa.rdflibparsers:StructuredDataParser'
+#            'hturtle = pyRdfa.rdflibparsers:HTurtleParser'
+#            'html = pyRdfa.rdflibparsers:StructuredDataParser'
+#            'html/text = pyRdfa.rdflibparsers:StructuredDataParser'
         ],
     }