summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome
diff options
context:
space:
mode:
authorJoe Slater <joe.slater@windriver.com>2020-07-24 15:34:15 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-07-27 10:37:57 +0100
commit5008ee45e41ac99f7867e929124c77b539fe4fb9 (patch)
treeb605df45f5542a84b286adccfe92ab41ee5a4376 /meta/recipes-gnome
parent7d82155fd5a4718d7375327a36651413fcc47d68 (diff)
downloadpoky-5008ee45e41ac99f7867e929124c77b539fe4fb9.tar.gz
gconf: use python3
Modify gsettings-schema-convert to use python3. Also add RDEPEND on python3-xml. (From OE-Core rev: ce6e5da12fb004811270a37941094c9bd8d7e161) Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome')
-rw-r--r--meta/recipes-gnome/gnome/gconf/python3.patch60
-rw-r--r--meta/recipes-gnome/gnome/gconf_3.2.6.bb3
2 files changed, 63 insertions, 0 deletions
diff --git a/meta/recipes-gnome/gnome/gconf/python3.patch b/meta/recipes-gnome/gnome/gconf/python3.patch
new file mode 100644
index 0000000000..7c022a2e1b
--- /dev/null
+++ b/meta/recipes-gnome/gnome/gconf/python3.patch
@@ -0,0 +1,60 @@
1gconf: use python3
2
3Convert gsettings-schema-convert to use python3.
4
5Upstream-Status: Inappropriate [gconf is deprecated]
6
7Signed-off-by: Joe Slater <joe.slater@windriver.com>
8
9
10--- a/gsettings/gsettings-schema-convert
11+++ b/gsettings/gsettings-schema-convert
12@@ -1,4 +1,4 @@
13-#!/usr/bin/env python
14+#!/usr/bin/env python3
15 # vim: set ts=4 sw=4 et: coding=UTF-8
16 #
17 # Copyright (c) 2010, Novell, Inc.
18@@ -603,7 +603,7 @@ class SimpleSchemaParser:
19 for line in lines:
20 current_line_nb += 1
21 self.parse_line(line)
22- except GSettingsSchemaConvertException, e:
23+ except GSettingsSchemaConvertException as e:
24 raise GSettingsSchemaConvertException('%s:%s: %s' % (os.path.basename(self.file), current_line_nb, e))
25
26 return self.root
27@@ -1095,7 +1095,7 @@ def main(args):
28 try:
29 parser = GConfSchemaParser(argfile, options.gettext_domain, options.schema_id, options.keep_underscores)
30 schema_root = parser.parse()
31- except SyntaxError, e:
32+ except SyntaxError as e:
33 raise GSettingsSchemaConvertException('\'%s\' does not look like a valid gconf schema file: %s' % (argfile, e))
34 else:
35 # autodetect if file is XML or not
36@@ -1104,7 +1104,7 @@ def main(args):
37 schema_root = parser.parse()
38 if not options.simple and not options.xml:
39 options.simple = True
40- except SyntaxError, e:
41+ except SyntaxError as e:
42 parser = SimpleSchemaParser(argfile)
43 schema_root = parser.parse()
44 if not options.simple and not options.xml:
45@@ -1127,13 +1127,13 @@ def main(args):
46 fout = open(options.output, 'w')
47 fout.write(output)
48 fout.close()
49- except GSettingsSchemaConvertException, e:
50+ except GSettingsSchemaConvertException as e:
51 fout.close()
52 if os.path.exists(options.output):
53 os.unlink(options.output)
54 raise e
55
56- except GSettingsSchemaConvertException, e:
57+ except GSettingsSchemaConvertException as e:
58 print >> sys.stderr, '%s' % e
59 return 1
60
diff --git a/meta/recipes-gnome/gnome/gconf_3.2.6.bb b/meta/recipes-gnome/gnome/gconf_3.2.6.bb
index b8466d4833..ff365551df 100644
--- a/meta/recipes-gnome/gnome/gconf_3.2.6.bb
+++ b/meta/recipes-gnome/gnome/gconf_3.2.6.bb
@@ -15,6 +15,7 @@ SRC_URI = "${GNOME_MIRROR}/GConf/${@gnome_verdir("${PV}")}/GConf-${PV}.tar.xz;na
15 file://remove_plus_from_invalid_characters_list.patch \ 15 file://remove_plus_from_invalid_characters_list.patch \
16 file://unable-connect-dbus.patch \ 16 file://unable-connect-dbus.patch \
17 file://create_config_directory.patch \ 17 file://create_config_directory.patch \
18 file://python3.patch \
18" 19"
19 20
20SRC_URI[archive.md5sum] = "2b16996d0e4b112856ee5c59130e822c" 21SRC_URI[archive.md5sum] = "2b16996d0e4b112856ee5c59130e822c"
@@ -52,6 +53,8 @@ FILES_${PN} += "${libdir}/GConf/* \
52 ${datadir}/dbus-1/services/*.service \ 53 ${datadir}/dbus-1/services/*.service \
53 ${datadir}/dbus-1/system-services/*.service \ 54 ${datadir}/dbus-1/system-services/*.service \
54 " 55 "
56RDEPENDS_${PN} = "python3-xml"
57
55FILES_${PN}-dev += "${datadir}/sgml/gconf/gconf-1.0.dtd" 58FILES_${PN}-dev += "${datadir}/sgml/gconf/gconf-1.0.dtd"
56 59
57BBCLASSEXTEND = "native" 60BBCLASSEXTEND = "native"