diff -Nru sunpinyin-2.0.3+git20140127/debian/changelog sunpinyin-2.0.3+git20140127/debian/changelog --- sunpinyin-2.0.3+git20140127/debian/changelog 2015-10-14 06:07:01.000000000 +0000 +++ sunpinyin-2.0.3+git20140127/debian/changelog 2016-08-06 13:00:18.000000000 +0000 @@ -1,3 +1,9 @@ +sunpinyin (2.0.3+git20140127-4+elementary0.5.1) yakkety; urgency=medium + + * Fix "self-comparison always evaluates to false" + + -- Rico Tzschichholz Sat, 06 Aug 2016 14:59:18 +0200 + sunpinyin (2.0.3+git20140127-4) unstable; urgency=medium * Break & replace libsunpinyin3 to enable smothly diff -Nru sunpinyin-2.0.3+git20140127/debian/patches/gcc-6.patch sunpinyin-2.0.3+git20140127/debian/patches/gcc-6.patch --- sunpinyin-2.0.3+git20140127/debian/patches/gcc-6.patch 1970-01-01 00:00:00.000000000 +0000 +++ sunpinyin-2.0.3+git20140127/debian/patches/gcc-6.patch 2016-08-06 12:59:07.000000000 +0000 @@ -0,0 +1,13 @@ +Index: b/src/pinyin/segmentor.h +=================================================================== +--- a/src/pinyin/segmentor.h ++++ b/src/pinyin/segmentor.h +@@ -62,7 +62,7 @@ + return true; + + if (m_start == other.m_start) +- return m_len < m_len; ++ return m_len < other.m_len; + + return false; + } diff -Nru sunpinyin-2.0.3+git20140127/debian/patches/series sunpinyin-2.0.3+git20140127/debian/patches/series --- sunpinyin-2.0.3+git20140127/debian/patches/series 2015-10-13 23:35:11.000000000 +0000 +++ sunpinyin-2.0.3+git20140127/debian/patches/series 2016-08-06 12:58:21.000000000 +0000 @@ -2,3 +2,4 @@ strndup_in_cxx.patch detect-endianness-for-arm64.patch pod2man.patch +gcc-6.patch