Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Librem5/example-apps/simple-weather-app
  • jsc/simple-weather-app
2 results
Show changes
Commits on Source (3)
{
"app-id": "com.example.simple_weather",
"runtime": "org.gnome.Platform",
"runtime-version": "3.30",
"runtime-version": "3.32",
"sdk": "org.gnome.Sdk",
"command": "simple-weather",
"finish-args": [
......@@ -35,7 +35,10 @@
"name": "python3-python-dateutil",
"buildsystem": "simple",
"build-commands": [
"pip3 install --no-build-isolation --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} python-dateutil"
"tar zxf six-1.12.0.tar.gz",
"cd six-1.12.0; python3 setup.py build; python3 setup.py install --prefix=${FLATPAK_DEST}",
"tar zxf python-dateutil-2.8.0.tar.gz",
"cd python-dateutil-2.8.0; python3 setup.py build; python3 setup.py install --prefix=${FLATPAK_DEST}"
],
"sources": [
{
......@@ -89,12 +92,14 @@
"buildsystem" : "meson",
"builddir": true,
"config-opts": [
"-Dglade_catalog=disabled"
"-Dglade_catalog=disabled",
"-Dexamples=false",
"-Dtests=false",
"-Dvapi=false"
],
"sources" : [
{
"type" : "git",
"branch": "v0.0.9",
"url" : "https://source.puri.sm/Librem5/libhandy.git"
}
]
......