[SCM] qtbase packaging branch, experimental, updated. debian/5.6.0-beta+dfsg-4-28-g282d779

Dmitry Shachnev mitya57 at moszumanska.debian.org
Wed Feb 3 08:46:50 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/qt/qtbase.git;a=commitdiff;h=ff87cc6

The following commit has been merged in the experimental branch:
commit ff87cc68f4c79b1a506d91f12a05b7383fa99c8a
Author: Dmitry Shachnev <mitya57 at gmail.com>
Date:   Wed Feb 3 11:39:43 2016 +0300

    migrate-symbols: Correctly handle non-UTF-8 characters in the build log.
---
 debian/scripts/migrate-symbols.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/scripts/migrate-symbols.py b/debian/scripts/migrate-symbols.py
index a3277c9..a7b7cc8 100755
--- a/debian/scripts/migrate-symbols.py
+++ b/debian/scripts/migrate-symbols.py
@@ -48,7 +48,7 @@ def apply_substs(symbol):
 
 def main(buildlog_path, mark_private, source_version):
     new_symbols = {}
-    with open(buildlog_path) as buildlog:
+    with open(buildlog_path, errors='replace') as buildlog:
         for line in buildlog:
             if not line.startswith('+ '):
                 continue

-- 
qtbase packaging



More information about the pkg-kde-commits mailing list