Dash:
[t2.git] / package / network / serf / python3.patch
blob4bd622547cd13d0e12a2e75865d9b927a312fcee
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
3 #
4 # T2 SDE: package/.../serf/python3.patch
5 # Copyright (C) 2019 The T2 SDE Project
6 #
7 # More information can be found in the files COPYING and README.
8 #
9 # This patch file is dual-licensed. It is available under the license the
10 # patched project is licensed under, as long as it is an OpenSource license
11 # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
12 # of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 # --- T2-COPYRIGHT-NOTE-END ---
17 --- serf-1.3.9.orig/SConstruct 2015-09-17 12:46:24.000000000 +0000
18 +++ serf-1.3.9/SConstruct 2019-09-20 10:11:44.425188450 +0000
19 @@ -166,7 +166,7 @@
20 match = re.search('SERF_MAJOR_VERSION ([0-9]+).*'
21 'SERF_MINOR_VERSION ([0-9]+).*'
22 'SERF_PATCH_VERSION ([0-9]+)',
23 - env.File('serf.h').get_contents(),
24 + env.File('serf.h').get_contents().decode(),
25 re.DOTALL)
26 MAJOR, MINOR, PATCH = [int(x) for x in match.groups()]
27 env.Append(MAJOR=str(MAJOR))
28 @@ -183,7 +183,7 @@
30 unknown = opts.UnknownVariables()
31 if unknown:
32 - print 'Warning: Used unknown variables:', ', '.join(unknown.keys())
33 + print( 'Warning: Used unknown variables:', ', '.join(unknown.keys()))
35 apr = str(env['APR'])
36 apu = str(env['APU'])