Codebase list xsunpinyin / d6a487e
Prepare new upload. Boyuan Yang 4 years ago
4 changed file(s) with 35 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 xsunpinyin (2.0.3-6) unstable; urgency=high
1
2 * Team upload.
3 * debian/control:
4 + Bump Standards-Version to 4.4.1.
5 * debian/patches/0003: Add patch to fix compatibility with scons
6 3.1.2+. (Closes: #947587)
7
8 -- Boyuan Yang <byang@debian.org> Fri, 17 Jan 2020 13:43:33 -0500
9
010 xsunpinyin (2.0.3-5) unstable; urgency=high
111
212 * Team upload.
66 YunQiang Su <syq@debian.org>,
77 GengYu Rao <zouyoo@outlook.com>,
88 Build-Depends:
9 debhelper (>= 11),
9 debhelper-compat (= 12),
1010 libgtk2.0-dev,
1111 libsunpinyin-dev (>=3.0.0~rc1+ds1),
1212 pkg-config,
1313 scons,
14 Standards-Version: 4.2.1
14 Standards-Version: 4.4.1
1515 Homepage: https://github.com/sunpinyin/sunpinyin/tree/master/wrapper/xim
1616 Vcs-Git: https://salsa.debian.org/input-method-team/xsunpinyin.git
1717 Vcs-Browser: https://salsa.debian.org/input-method-team/xsunpinyin
0 From: Boyuan Yang <byang@debian.org>
1 Date: Fri, 17 Jan 2020 13:43:16 -0500
2 Subject: wrapper: xim: Make SConstruct python3-compatible
3
4 Forwarded: https://github.com/sunpinyin/sunpinyin/pull/101
5 ---
6 SConstruct | 2 +-
7 1 file changed, 1 insertion(+), 1 deletion(-)
8
9 diff --git a/SConstruct b/SConstruct
10 index 6940600..4f3689e 100644
11 --- a/SConstruct
12 +++ b/SConstruct
13 @@ -47,7 +47,7 @@ opts.Add('PREFIX', default='/usr/local')
14 def PassVariables(envvar, env):
15 for (x, y) in envvar:
16 if x in os.environ:
17 - print 'Warning: you\'ve set %s in the environmental variable!' % x
18 + print('Warning: you\'ve set %s in the environmental variable!' % x)
19 env.MergeFlags(os.environ[x])
20
21 env = Environment(ENV=os.environ,
00 append-os-environ-toenv.patch
11 separate_ldflags.patch
2 0003-wrapper-xim-Make-SConstruct-python3-compatible.patch