-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
flatpak: Have stable and devel manifests in tree
With the master version of the runtime we can test the changes in the development versions of the libraries beforehand. This also removes `webp-pixbuf-loader` from the modules in the devel manifest, as it will be included in the platform for GNOME 46. See https://gitlab.gnome.org/GNOME/gnome-build-meta/-/merge_requests/2507
- Loading branch information
Showing
3 changed files
with
124 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
{ | ||
"id" : "com.mattjakeman.ExtensionManager.Devel", | ||
"runtime" : "org.gnome.Platform", | ||
"runtime-version" : "master", | ||
"sdk" : "org.gnome.Sdk", | ||
"command" : "extension-manager", | ||
"finish-args" : [ | ||
"--share=network", | ||
"--share=ipc", | ||
"--socket=fallback-x11", | ||
"--device=dri", | ||
"--socket=wayland", | ||
"--talk-name=org.gnome.Shell.Extensions", | ||
"--talk-name=org.gnome.SessionManager" | ||
], | ||
"cleanup" : [ | ||
"/include", | ||
"/lib/pkgconfig", | ||
"/man", | ||
"/share/doc", | ||
"/share/gtk-doc", | ||
"/share/man", | ||
"/share/pkgconfig", | ||
"*.la", | ||
"*.a" | ||
], | ||
"modules" : [ | ||
{ | ||
"name" : "blueprint-compiler", | ||
"builddir" : true, | ||
"buildsystem" : "meson", | ||
"cleanup" : [ | ||
"*" | ||
], | ||
"sources" : [ | ||
{ | ||
"type" : "git", | ||
"url" : "https://gitlab.gnome.org/jwestman/blueprint-compiler.git", | ||
"commit" : "2a39a16391122af2f3d812e478c1c1398c98b972", | ||
"tag" : "v0.10.0" | ||
} | ||
] | ||
}, | ||
{ | ||
"name" : "libbacktrace", | ||
"builddir" : true, | ||
"buildsystem" : "autotools", | ||
"sources" : [ | ||
{ | ||
"type" : "git", | ||
"url" : "https://github.com/ianlancetaylor/libbacktrace.git", | ||
"branch" : "master" | ||
} | ||
] | ||
}, | ||
{ | ||
"name" : "text-engine", | ||
"builddir" : true, | ||
"buildsystem" : "meson", | ||
"sources" : [ | ||
{ | ||
"type" : "git", | ||
"url" : "https://github.com/mjakeman/text-engine.git", | ||
"commit" : "379437b2b589a9414985dec9136b7b48bae76f9e", | ||
"tag" : "v0.1.0" | ||
} | ||
] | ||
}, | ||
{ | ||
"name" : "extension-manager", | ||
"builddir" : true, | ||
"buildsystem" : "meson", | ||
"config-opts" : [ | ||
"-Ddevelopment=true", | ||
"-Dpackage=Flatpak", | ||
"-Ddistributor=mjakeman", | ||
"-Dofficial=true" | ||
], | ||
"sources" : [ | ||
{ | ||
"type" : "dir", | ||
"path" : "../" | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters