summaryrefslogtreecommitdiff
path: root/examples/demo/org.gnome.pygobject-demo.json
blob: a468b972d51fab0470cb688cce3cb8d12e093dfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
    "app-id" : "org.gnome.pygobject-demo",
    "runtime" : "org.gnome.Platform",
    "runtime-version" : "master",
    "sdk" : "org.gnome.Sdk",
    "command" : "pygobject-demo.py",
    "finish-args" : [
        "--device=dri",
        "--share=ipc",
        "--socket=x11",
        "--socket=wayland",
        "--talk-name=org.gnome.OnlineAccounts",
        "--filesystem=host",
        "--talk-name=org.gtk.vfs",
        "--talk-name=org.gtk.vfs.*",
        "--filesystem=xdg-run/dconf",
        "--filesystem=~/.config/dconf:ro",
        "--talk-name=ca.desrt.dconf",
        "--env=DCONF_USER_CONFIG_DIR=.config/dconf"
    ],
    "build-options" : {
        "build-args" : [
            "--share=network"
        ],
        "cflags" : "-O2 -g",
        "cxxflags" : "-O2 -g",
        "env" : {
            "V" : "1",
            "GI_TYPELIB_PATH" : "/app/lib/girepository-1.0/",
            "PYTHONPATH": "/app/lib/python3.7/site-packages"
        }
    },
    "modules" : [
        {
            "name" : "pytest",
            "buildsystem" : "simple",
            "build-commands" : [
                "/usr/bin/pip3 --disable-pip-version-check install --prefix=/app --verbose ."
            ],
            "sources" : [
                {
                    "type" : "git",
                    "url" : "https://github.com/pytest-dev/pytest",
                    "tag" : "3.7.2"
                }
            ]
        },
        {
            "name" : "wayland",
            "buildsystem" : "autotools",
            "builddir" : true,
            "config-opts" : [
                "--disable-documentation"
            ],
            "sources" : [
                {
                    "type" : "git",
                    "url" : "https://github.com/wayland-project/wayland.git"
                }
            ]
        },
        {
            "name" : "graphene",
            "buildsystem" : "meson",
            "builddir" : true,
            "config-opts" : [
                "--libdir=/app/lib",
                "-Dtests=false",
                "-Dbenchmarks=false"
            ],
            "sources" : [
                {
                    "type" : "git",
                    "url" : "https://github.com/ebassi/graphene.git"
                }
            ]
        },
        {
            "name" : "gtk",
            "buildsystem" : "meson",
            "builddir" : true,
            "config-opts" : [
                "--libdir=/app/lib"
            ],
            "sources" : [
                {
                    "type" : "git",
                    "url" : "https://gitlab.gnome.org/GNOME/gtk.git",
                    "tag" : "3.94.0"
                }
            ]
        },
        {
            "name" : "pygobject-demo.py",
            "buildsystem" : "meson",
            "builddir" : true,
            "config-opts" : [
                "--libdir=/app/lib",
                "-Ddemos=true"
            ],
            "sources" : [
                {
                    "type" : "git",
                    "url" : "https://gitlab.gnome.org/GNOME/pygobject.git"
                }
            ]
        }
    ]
}