diff options
| author | Michał Górny <mgorny@gentoo.org> | 2024-01-11 17:04:37 +0100 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2024-01-12 15:36:00 +0100 |
| commit | f7fdfdaeec3764929686064a6054c38a6b2d7788 (patch) | |
| tree | a420a7aa231f9c43b9911a90b4cfa99ba60b3a24 /app-text/doxygen/files/doxygen-1.9.1-ignore-bad-encoding.patch | |
| parent | 97d464ca1fac11a186de447c6e258771063af450 (diff) | |
| download | gentoo-f7fdfdaeec3764929686064a6054c38a6b2d7788.tar.gz gentoo-f7fdfdaeec3764929686064a6054c38a6b2d7788.tar.bz2 gentoo-f7fdfdaeec3764929686064a6054c38a6b2d7788.zip | |
Move {app-doc → app-text}/doxygen
Per the category metadata, app-doc/ is reserved for documentation
*files* and not software. Move it to app-text/ where it seems a better
fit.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-text/doxygen/files/doxygen-1.9.1-ignore-bad-encoding.patch')
| -rw-r--r-- | app-text/doxygen/files/doxygen-1.9.1-ignore-bad-encoding.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app-text/doxygen/files/doxygen-1.9.1-ignore-bad-encoding.patch b/app-text/doxygen/files/doxygen-1.9.1-ignore-bad-encoding.patch new file mode 100644 index 000000000000..5dd7578f24ec --- /dev/null +++ b/app-text/doxygen/files/doxygen-1.9.1-ignore-bad-encoding.patch @@ -0,0 +1,23 @@ +Hack to avoid "UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb0 in position 45: invalid start byte" +in src/._xmlgen.cpp which is binary. This doesn't seem like it should be present at the time the docs +are generated, but this is simpler for now. +--- a/doc/translator.py ++++ b/doc/translator.py +@@ -1454,10 +1454,13 @@ class TrManager: + + # Read content of the file as one string.
+ assert os.path.isfile(fname)
+- f = xopen(fname)
+- cont = f.read()
+- cont = ''.join(cont.split('\n')) # otherwise the 'match' function won't work.
+- f.close()
++ try:
++ with xopen(fname) as f:
++ cont = f.read()
++ cont = ''.join(cont.split('\n')) # otherwise the 'match' function won't work.
++ except UnicodeDecodeError:
++ print("Skipping {0} because of decoding errors".format(fname))
++ return
+
+ # Remove the items for identifiers that were found in the file.
+ while lst_in:
|
