comparison flatpak/build_manifest.py @ 151:6f8c849daf2a

flatpak (build_manifest): updated org.freedesktop.Platform runtime version: manifests were using an old 1.6 version of the runtime, this patch fixes them by using the current 18.8 one. Thanks to that, the main_loop.patch which was made because of an outdated version of GLib (see https://github.com/flatpak/flatpak/issues/1899) is not needed anymore and has been removed. Some useless extensions have also been removed from default manifest.
author Goffi <goffi@goffi.org>
date Wed, 26 Jun 2019 20:49:31 +0200
parents 10adfa3f9552
children df75b62e653e
comparison
equal deleted inserted replaced
150:10adfa3f9552 151:6f8c849daf2a
34 }, 34 },
35 "dbus-python": { 35 "dbus-python": {
36 "build-commands": [ 36 "build-commands": [
37 "python2 setup.py build", 37 "python2 setup.py build",
38 "python2 setup.py install --prefix=${FLATPAK_DEST}", 38 "python2 setup.py install --prefix=${FLATPAK_DEST}",
39 ]
40 },
41 "urwid": {
42 "sources_extend": [
43 {
44 "type": "patch",
45 "path": "main_loop.patch"
46 }
47 ] 39 ]
48 }, 40 },
49 "kivy": { 41 "kivy": {
50 "post-install": [ 42 "post-install": [
51 # this file is not copied normally when installing with 43 # this file is not copied normally when installing with
66 'mistune', # needed my m2r 58 'mistune', # needed my m2r
67 'm2r', # needed by automat 59 'm2r', # needed by automat
68 ] 60 ]
69 DEFAULT_MANIFEST = { 61 DEFAULT_MANIFEST = {
70 "runtime": "org.freedesktop.Platform", 62 "runtime": "org.freedesktop.Platform",
71 "runtime-version": "1.6", 63 "runtime-version": "18.08",
72 "sdk": "org.freedesktop.Sdk", 64 "sdk": "org.freedesktop.Sdk",
73 "sdk-extensions": [
74 "org.freedesktop.Sdk.Debug",
75 "org.freedesktop.Sdk.Locale",
76 "org.freedesktop.Sdk.Docs"
77 ],
78 "platform-extensions": [
79 "org.freedesktop.Platform.Locale"
80 ],
81 "command": "sat_wrapper", 65 "command": "sat_wrapper",
82 "finish-args": [ 66 "finish-args": [
83 "--socket=session-bus", 67 "--socket=session-bus",
84 "--share=network", 68 "--share=network",
85 "--filesystem=home" 69 "--filesystem=home"