Guidelines and HOWTOs/Snap: Difference between revisions

From KDE Community Wiki
No edit summary
 
(53 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Construction}}
{{Construction}}


Want to run your application binaries on any Linux distribution? Snap makes that possible.
= Put Your App in the Snap Store =


For general purpose information about snap, snapcraft and how to use them please have a look at their documentation  as it excellently teaches you most generic information about snaps https://docs.snapcraft.io
[[File:Screenshot 20210318 150131.png|thumb|Snap Store KDE Page]]
Even so this page will teach you a lot of the basics of snaps.


For a primer on YAML, the format used to describe snap building,  have a look here https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html
It is a KDE goal to be [https://community.kde.org/Goals All About the Apps] to deliver our apps directly to our users. Snaps is one of the ways of doing this. Snaps are Linux app packages that can run on pretty much any Linux operating system. There is a single centralized Snap store ( https://snapcraft.io/store ) that delivers them to users. Take a look at the [https://snapcraft.io/publisher/kde KDE page on the Snap Store] to see what's available.


TBD separate page specifically about how to use the content snap
== Snap intro ==
{{Construction}}


== How it Works ==
A Snap package typically contains all the files, including libraries and data files, to run the app. There are also Content Snaps which contain reusable libraries. KDE has the KDE Frameworks Content Snap https://snapcraft.io/search?q=kf6 and https://snapcraft.io/search?q=kf5 which includes recent Qt and KDE Frameworks and this is shared between all KDE apps so we do not have to waste disk space and build resources. With KDE / Plasma 6 the content pack has been split https://snapcraft.io/kde-qt6-core22-sdk for Qt6 and https://snapcraft.io/kf6-core22-sdk for KDE Frameworks 6.


Snaps work very much like DMG files on OS X. A snap is a compressed squashfs file containing the entire file tree of the program. A system-level helper called snapd manages the snap file and mounts it into the file system. Snapd also manages host-level integration (e.g. creation of .desktop files). Running an application from the snap needs to go through snapd (e.g. snap run foo) which needs to be installed on the target system. Snap, the format, could be used by various daemon implementations, but as a matter of fact the only viable implementation is snapd and maintained by Canonical. Snapd frowns upon side-loaded snaps. You may still install a snap downloaded manually, but the preferred way to use snaps is through snapd directly which in turn will go to the associated [https://snapcraft.io/store store] as a remote source. The store too is run by Canonical. Most aspects of snaps may be inspected/changed through the CLI for snapd. It's simply called "snap" <code>snap help</code> for help.
Give it a try by installing a package or two on your system. E.g. the KDE desktop calculator app https://snapcraft.io/kcalc
{{Input|1=<nowiki>snap install kcalc</nowiki>}}
And run kcalc from your apps menu.


== Binary Sources ==
This will have downloaded the kcalc Snap package from the Snap store into e.g. <code>/var/lib/snapd/snaps/kcalc_73.snap</code> and mounted it into e.g. <code>/snap/kcalc/current/</code>. You can also just download it to a local directory with  <code>snap download kcalc</code>, use <code>lesspipe kcalc*snap</code> to see what is inside it.


Building a snap we'll lovingly call "snapping". At the time of writing you can snapcraft on two core systems: one is Ubuntu 16.04, the other is Ubuntu 18.04. Both of them are the LTS version of Ubuntu and therefore supported for what seems like forever. Snapcraft has native support to pull binary packages (i.e. debs) into the snap so that you might build against them without having to build the binaries yourselves. For example you could use Qt from Ubuntu directly without the need to build it in your snap. However, since the base systems are LTS the software is usually very dated. Seeing as you may need newer dependencies there's a bunch of ways you can get them besides pre-built Ubuntu debs:
<code>snap list</code> will show your currently installed snaps and it will now show that you have <code>kcalc</code> and the content snap <code>kf5-5-111-qt-5-15-11-core22</code> as well as the <code>core22</code> content snap installed.


=== As Snapcraft Parts ===
Snaps are containers, similar to Docker. From inside the Snap container access to the file system and system resources are limited. This is good for inter-app security but means the app sees your system quite differently from how you might expect.  You can "log" into the container with <code>snap run --shell kcalc</code> to have a look at how the snapped kcalc app sees your system.


You can add any number of additional parts that build dependencies. For example you might build your own qtbase as part of snap. How much work this is can be vastly different between software. Building all of Qt can get quickly slow, at the same time relying on an ancient Qt may not be practical either. To gain access to newer foundations software you may instead want to get them ...
To give the app controlled permissions to the system it plugs connections into resources such as the network or container snaps. Run <code>snap connections kcalc</code> to see what it gets given access to. The auto connections are controlled by the snap store and app maintainers need to ask the snap store for the desired auto-connections. Connections can also be overridden locally.


=== From KDE neon ===
You can take a look at the snap package with <code>snap download kcalc</code> which will download files such as <code>kcalc_73.assert</code> and <code>kcalc_73.snap</code>. The .assert has the checksums and signatures for the package.  The .snap has the (non-store) metadata and all the files of the package. <code>lesspipe kcalc_73.snap</code> to take a look.


We are in luck and KDE neon already builds packages for Ubuntu LTS, so you may choose to simply use neon debs on top of Ubuntu debs. This gives access to the latest Qt, KDE frameworks and other related libraries. This can be a huge time saver. Unfortunately Snapcraft's support for adding additional repositories is non-existent and so if you choose to go this route you may need to somewhat manually manage the build environment yourself e.g. using an especially prepared LXD container.
== Concepts ==


=== From Content Snaps ===
Snaps are usually one app per Snap package.  The Snap package contains all the libraries and resources it needs to run except those in the shared content <code>kf5-5-111-qt-5-15-11-core22</code> Snap.


Content snaps are other snaps you can "include" in your snap to get access to pre-existing binary (or data) assets so you don't need to ship them. Notable advantage is that one content snap may be shared across multiple consumers and thus reduce the disk and network footprint. For example there is a read to use KF5 content snap which you can use to get access to all
In practice this means all of Qt and KF(5/6) including Breeze icons and themes are in the kde-frameworks content Snap and your app Snap only needs to compile its own sources.  If you apps needs more libraries you can either install these as DEB packages e.g. from the Linux operating system Ubuntu LTS or KDE neon, or you can compile them from source as well. You will need to manually list the build-packages (all the -dev packages) and the stage-packages used in the final package, it'll warn you if any final libraries it expects are missing.
of KF5 and Qt5. Content snaps may be combined with the other means of sourcing binaries.


=== From PPAs ===
'''snapcraft''' is used to build snaps. It can be installed as a snap with <code>snap install snapcraft --classic</code>.  A snap package (app) is defined in the snapcraft.yaml file. Snapcraft will build the package inside a virtual machine; it uses LXD to build the KDE snap packages. Using a virtual machine makes it reliable to build the Snaps on different Linux operating systems with identical results.


Much like KDE neon, this too will require you to manage the build environment manually. Also, when using PPAs beware that they may not be compatible with neon (so, ideally you should use either-or) and that many of them are not particularly trustworthy or well maintained (important vis-a-vis security).
snapcraft.yaml files are kept in their respective upstream repo. Eg. kcalc snapcraft file resides [https://invent.kde.org/utilities/kcalc/-/blob/release/23.08/snapcraft.yaml?ref%20type=heads https://invent.kde.org/utilities/kcalc/-/blob/release/23.08/snapcraft.yaml?ref_type=heads]


== Snapcraft ==
Our Snaps read metadata from AppStream metadata files so it is important the metadata is up to date including current release versions.


The tool to build snaps is called snapcraft. The definition for how to craft a snap is written down in snapcraft.yaml. Generally speaking a snapcraft.yaml will contain global metadata of the snap, a list of applications provided by the snap, and lastly a list of parts that when put together result in the snap. Access to the host system is controlled through a plug-and-slot system which is also used in the snapcraft.yaml. Each application may have one or multiple plugs it uses to get access to resources of the host system or other snaps. For example the 'desktop' plug gives access to host fonts and icons. Also see https://docs.snapcraft.io/interface-management/6154
The [https://snapcraft.io/ Snap Store] is the centralized app store by Canonical. There is no practical way to use other stores or repositories with Snaps. It is what Snapcraft uploads built snaps to and what your local snapd will download and install snaps from. It also says what permissions those snaps should have. As an app developer if you want your app to have extra permissions (for example [https://invent.kde.org/utilities/kdf/-/blob/release/23.08/snapcraft.yaml?ref_type=heads kdf] uses mount-observe) then you need to ask for it on the [https://forum.snapcraft.io/t/request-for-connection-kdf-mount-observe/10953 snapcraft forum].


== Types of Snap==
A Classic containment Snap has no restrictions on what files it can see on your system or what external executable can be run.  This is useful for Integrated Development Environments (IDEs) and similar apps such as [https://forum.snapcraft.io/t/kate-as-classic-snap/23514 Kate] which runs external programs. Again this needs to be set in your [https://invent.kde.org/utilities/kate/-/blob/release/23.08/snapcraft.yaml?ref_type=heads] then you need to ask on the Snap forum for the store to set it to classic. The Store will then tell snapd for anyone installing the Snap to have it installed as a Classic confinement Snap.


With a broad overview of abilities and shortcomings let's dive right in and look at types of snaps we might build.
The KDE account on the Snap store is run by the Snap team developers Jonathan Esk-Riddell, Harald Sitter, Scarlett Moore, Carlos DeMaine, Kevin Ottens, Benjamin Port. One Snap on the store can be shared between more than one account so app maintainers can also create a separate account if they want to have more control over when their app is released and what the store says about it.


=== Standalone  ===
The store has four channels for different levels of stability. Our stable branch builds get uploaded to the Candidate channel and can be moved to the Stable channel once tested.


A standalone snap is a snap which solely relies on a "core" but no other snaps. This is generally speaking the most reliable type of snap as everything the snap needs is inside the snap (except libc and friends which are in the core).
== Example ==


It is also the best supported way of building a snap since it's been around since the very beginning.
[https://apps.kde.org/blinken/ Blinken] is an exciting memory game from KDE.  It's [https://snapcraft.io/blinken available on the Snap store].  The Snap package is defined by a <code>snapcraft.yaml</code> file which is in the https://invent.kde.org/education/blinken/-/tree/release/23.08?ref_type=heads repo.  Any update to that branch triggers a build of the [https://launchpad.net/~kde-community/kde-snap-blinken/+snap/kde-snap-blinken-stable] in launchpad.  If the build is successful it will be uploaded to the <code>Candidate channel</code> of the Snap store ready for review.


Advantages:
The <code>snapcraft.yaml</code> file looks like this:
 
* Very reliable
* Easy to build and test
* You are always on your own and unrelated changes rarely if ever can impair your snap
 
Disadvantages:
 
* Huge in size (each standalone snap needs to ship their own Qt/l10n and necessary kf5 and other dependencies)
* You need to take care of setting up your execution environment yourself.
* You are always on your own and unrelated changes rarely if ever can improve your snap
 
==== Example ====
 
{{Input|<syntaxhighlight lang="yaml" line>
name: qtnetsample
version: '0'  # the version of the snap. has no semantic meaning
summary: This is my-snap's summary  # 79 char long summary
description: This is my-snap's description  # a longer description for the snap
confinement: strict  # use "strict" to enforce system access only via declared interfaces
grade: devel # use "stable" to assert the snap quality
base: core18 # the core this snap depends on
 
apps:
    qtnetsample:
        command: launcher qtnetsample # the launcher will setup the environment for qtnetsample to find libraries/plugins/data etc
        plugs: [x11, network, network-bind] # this snap will be able to act as xclient and talk over the network
 
parts:
    qtnetsample:
        build-packages: [qt5-default]
        plugin: cmake
        stage-packages: [libqt5network5, libqt5core5a]
        source: .
</syntaxhighlight>}}
 
=== Shared Snap ===
 
A snap may also choose to use one or more Content Snaps (see glossary) to share part of the binaries or UI assets with other snaps. As shared content will generally be in the content snap, the ultimate size of the snap can be fairly small. Think of this as an approach more akin to how traditional binary package dependencies work. Albeit with many of the same complexities surrounding it.
 
For example KDE neon builds the kde-frameworks-5 content snap. It contains all of Qt and all (not-deprecated) KDE frameworks along with Plasma integration rigging.
 
Advantages:
 
* Application snap is super small
* You don't need to care of setting up the execution environment
* Integration and international improvements are all in one place (shared environment setup etc)
* Generally speaking when using the KF5 content snap SDK you can get access to KDE neon's Qt and Frameworks without having to actually add the deb sources.
 
Disadvantages:
 
* Up-front "cost" of a single application may be higher. e.g. if the application only uses QtCore, the content snap will still bring in all of Qt and all of KF5 through the content snap. It's like a shared library, the more it is used the smaller the cost per-user.
* Somewhat harder to build and test because of added complexity. Also managing deb build dependencies in addition to content snap SDKs is problematic '''TBD link to forum post'''
* Unrelated changes in the content snaps may impair your snap
* Since this type was introduced a while after snap initially came into being you still can feel rough edges when working with content snaps.
 
==== Example ====


{{Input|<syntaxhighlight lang="yaml" line>
{{Input|<syntaxhighlight lang="yaml" line>
---
---
name: kbruch
name: blinken
version: 18.12.1
adopt-info: blinken
confinement: strict
confinement: strict
grade: stable
grade: stable
base: core18
base: core22
adopt-info: kbruch # part to adopt appstream data from (first in parse list)
apps:
apps:
     kbruch:
     blinken:
         command: kf5-launch kbruch
        common-id: org.kde.blinken.desktop
         command: usr/bin/blinken
         plugs:
         plugs:
         - kde-frameworks-5-plug
         - desktop
         - home
        - desktop-legacy
        - opengl
         - wayland
         - x11
         - x11
         - opengl
         - audio-playback
        - network
        - network-bind
         - unity7
         - unity7
         - pulseaudio
         command-chain:
        - snap/command-chain/desktop-launch
assumes:
- snapd2.55.3
compression: lzo
plugs:
    desktop:
        mount-host-font-cache: false
    icon-themes:
        interface: content
        target: $SNAP/data-dir/icons
        default-provider: gtk-common-themes
    sound-themes:
        interface: content
        target: $SNAP/data-dir/sounds
        default-provider: gtk-common-themes
    kf5-5-111-qt-5-15-11-core22:
        content: kf5-5-111-qt-5-15-11-core22-all
        interface: content
        default-provider: kf5-5-111-qt-5-15-11-core22
        target: $SNAP/kf5
environment:
    SNAP_DESKTOP_RUNTIME: $SNAP/kf5
hooks:
    configure:
        plugs:
         - desktop
         - desktop
         - desktop-legacy
         command-chain:
         common-id: org.kde.kbruch.desktop
         - snap/command-chain/hooks-configure-desktop
         desktop: "usr/share/applications/org.kde.kbruch.desktop"
layout:
    /usr/share/X11:
         symlink: $SNAP/kf5/usr/share/X11
slots:
slots:
     session-dbus-interface:
     session-dbus-interface:
         interface: dbus
         interface: dbus
         name: org.kde.kbruch
         name: org.kde.blinken
         bus: session
         bus: session
plugs:
package-repositories:
    kde-frameworks-5-plug:
-   type: apt
        content: kde-frameworks-5-core18-all
    components:
        interface: content
    - main
        default-provider: kde-frameworks-5-core18
    suites:
        target: kf5 # target directory where the content is mounted i.e. $SNAP/kf5/
    - jammy
    key-id: 444DABCF3667D0283F894EDDE6D4736255751E5D
    url: http://origin.archive.neon.kde.org/user
    key-server: keyserver.ubuntu.com
parts:
parts:
     kbruch:
     kde-neon:
        source: /snap/snapcraft/current/share/snapcraft/extensions/desktop/kde-neon
        source-type: local
        plugin: make
        make-parameters:
        - PLATFORM_PLUG=kf5-5-111-qt-5-15-11-core22
         build-snaps:
         build-snaps:
         - kde-frameworks-5-core18-sdk
         - kf5-5-111-qt-5-15-11-core22-sdk
        build-environment:
        - &id001
            PATH: /snap/kf5-5-111-qt-5-15-11-core22-sdk/current/usr/bin${PATH:+:$PATH}
        - &id002
            XDG_DATA_DIRS: $CRAFT_STAGE/usr/share:/snap/kf5-5-111-qt-5-15-11-core22-sdk/current/usr/share:/usr/share${XDG_DATA_DIRS:+:$XDG_DATA_DIRS}
        - &id003
            XDG_CONFIG_HOME: $CRAFT_STAGE/etc/xdg:/snap/kf5-5-111-qt-5-15-11-core22-sdk/current/etc/xdg:/etc/xdg${XDG_CONFIG_HOME:+:$XDG_CONFIG_HOME}
        - &id004
            CRAFT_CMAKE_ARGS: -DCMAKE_FIND_ROOT_PATH=/snap/kf5-5-111-qt-5-15-11-core22-sdk/current${CRAFT_CMAKE_ARGS:+:$CRAFT_CMAKE_ARGS}
    blinken:
         after:
         after:
         - kde-frameworks-5-env
         - kde-neon
        parse-info:
        - usr/share/metainfo/org.kde.blinken.appdata.xml
        source: .
        source-type: local
         plugin: cmake
         plugin: cmake
         source: src
         build-packages:
         configflags:
        - cmake
         - "-DKDE_INSTALL_USE_QT_SYS_PATHS=ON"
        - libkf5doctools-dev
         - "-DCMAKE_INSTALL_PREFIX=/usr"
        - libphonon4qt5-dev
         - "-DCMAKE_BUILD_TYPE=Release"
        - libphonon4qt5experimental-dev
         - "-DENABLE_TESTING=OFF"
        stage-snaps:
         - "-DBUILD_TESTING=OFF"
         - khelpcenter
         - "-DKDE_SKIP_TEST_SETTINGS=ON"
        cmake-parameters:
         parse-info: [usr/share/metainfo/org.kde.kbruch.appdata.xml]
         - -DKDE_INSTALL_USE_QT_SYS_PATHS=FALSE
    kde-frameworks-5-env:
         - -DCMAKE_INSTALL_PREFIX=/usr
         plugin: dump
         - -DCMAKE_BUILD_TYPE=Release
        source: https://github.com/apachelogger/kf5-snap-env.git
         - -DENABLE_TESTING=OFF
</syntaxhighlight>}}
         - -DBUILD_TESTING=OFF
 
         - -DKDE_SKIP_TEST_SETTINGS=ON
== Execution Environment and Launchers ==
         - "-DCMAKE_FIND_ROOT_PATH=/usr\\;$CRAFT_STAGE\\;/snap/kf5-5-111-qt-5-15-11-core22-sdk/current"
 
         - "-DKDE_INSTALL_PLUGINDIR=/usr/lib/$CRAFT_ARCH_TRIPLET/qt5/plugins/"
When binaries inside snaps get executed they only get a super minimal environment set up by snapd. The snap itself needs to take care of most of the higher level spin up of the environment.
        prime:
 
        - "-usr/lib/*/cmake/*"
Inside a confined snap the <code>/</code> will be the core snap, while the actual snap will be in <code>SNAP=/snap/name/rev/...</code>. As a result for example icons, which usually would be expected in <code>$XDG_DATA_DIRS/icons</code> meaning <code>/usr/share/icons</code>, will need to actually be looked for in <code>$SNAP/usr/share/icons</code>. The same applies to pretty much all XDG_* variables, LD_LIBRARY_PATH, various QT_* variables and so on and so forth.
        - "-usr/include/*"
 
        - "-usr/share/ECM/*"
Simply put: a snap's tree is not "merged" with the core's tree, rather it is "mounted" inside the core tree under $SNAP and so each snap needs to set up an environment which redirects or adds $SNAP to all lookup locations you can possibly imagine. As general assumptions about where things are on a Linux system no longer hold true. One the one hand that technically allows you to create a snap which entirely does away with the [https://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard FHS], on the other it means someone needs to actually mangle the environment so files may be located properly.
        - "-usr/share/man/*"
 
        - "-usr/share/icons/breeze-dark*"
That's why most, if not all, desktop application snaps will need a launch helper. The launcher will set up all the general purpose path variables so they point to $SNAP. A standard desktop launcher implementation is available here https://github.com/ubuntu/snapcraft-desktop-helpers. Obviously you can also write your own, but since there are lots of things to consider, even for simple applications, it's probably not a good idea to do so.
        - "-usr/bin/X11"
 
        - "-usr/lib/gcc/$CRAFT_ARCH_TRIPLET/6.0.0"
You can have a look at the standard environment by running
        - "-usr/lib/aspell/*"
 
        - "-usr/share/lintian"
{{Input|1=<nowiki>
        build-environment: &id005
snap install hello-world
        - *id001
snap run --shell hello-world
        - *id002
env
        - *id003
</nowiki>}}
        - *id004
 
    cleanup:
This will drop you on a minimal shell inside the confined snap, where you can have a look around to see what the snap sees.
        after:
 
        - kde-neon
== A Snap from Scratch ==
        - blinken
 
        plugin: nil
We'll create a snap bundle from scratch using LXD, the KDE neon repositories, and will also look at how to make use of the KDE Frameworks 5 content snap. Using LXD and managing the environment manually  allows us to use the KDE neon repositories, it does however also mean that we need to take care of more things ourselves. It also means that snapcraft will need to be run with <code>--destructive-mode</code> to instruct it that it may install dependencies and the like into the actual system.
        override-prime: |
 
            set -eux
To follow along you'll need a working LXD setup. A KDE neon VM would do as well. Docker however is pretty unsuitable as we need a working systemd, which is hard to get with docker. To get started with LXD, you need to run <code>lxd init</code> on most distributions.
            # # Unused libraries found by linter
 
{{Input|<nowiki>
sudo lxc launch --ephemeral ubuntu:18.04 mycontainer # start an ephemeral container. it will be deleted once stopped
sudo lxc exec mycontainer -- bash
</nowiki>}}
 
You are now inside an Ubuntu 18.04 container. We'll continue to setup the neon repositories and the latest  stable snapcraft.


{{Input|<nowiki>
apt-key adv --keyserver keyserver.ubuntu.com --recv E6D4736255751E5D
echo 'deb http://archive.neon.kde.org/unstable bionic main' > /etc/apt/sources.list.d/neon.list
apt update
snap install --stable --classic snapcraft
mkdir /workspace
cd /workspace
</nowiki>}}


Now we can start writing our snapcraft.yaml. You can either install a command line editor and write it inside the container or write it on your system and "upload" it to the container with the command <code>sudo lxc file push --recursive snapcraft.yaml mycontainer/workspace/</code>. Let's start with the absolutely bare minimum.


{{Input|<syntaxhighlight lang="yaml" line>
---
name: kmplot
version: '0'
summary: Function Plotter
description: KmPlot is a program to plot graphs of functions.
confinement: strict
grade: stable
base: core18
parts:
    kmplot:
        plugin: cmake
        source: https://anongit.kde.org/kmplot.git
        configflags: ['-DCMAKE_INSTALL_PREFIX=/usr']
</syntaxhighlight>}}
</syntaxhighlight>}}


We've defined (not very good) metadata for the snap and a single part to build. Attempting to build this using <code>snapcraft --destructive-mode</code> will however result in an error similar to
Check [https://snapcraft.io/docs/snapcraft-yaml-reference Snapcraft YAML reference] if unsure.


{{Output|<nowiki>
=== Top Level ===
CMake Error at CMakeLists.txt:1 (project):
  No CMAKE_CXX_COMPILER could be found.
</nowiki>}}


We haven't installed any of our build dependencies. An easy fix. We'll simply add build-packages to our part. In this case the compiler is missing and it's usually best pulled in via the package "build-essential". You'd continue building your build-packages list until the software starts building. Fortunately I already know all the stuff that is needed so we can move ahead.
* name: blinken ← the snap name registered on the snap store
* confinement: strict ← Snaps are a containerised format and can't see the outside system from inside their container. Strict is the normal container method. Classic is also possible which allows it to see the outside system and is used by e.g. Kate because Kate needs to run external programs like Git.  It can only be Classic on request.  Can also be devmode for testing.
* grade: stable ← It must be stable to be in a released channel, can also be devel.
* base: core22 ← which base system to build on, core22 means Ubuntu 22.04 and is the current recommended.
* adopt-info: blinken ← Which Snap part to get the appstream info from. This sets version, icon, description.


{{Tip|1=For software which is packaged through KDE neon (which is just about everything KDE) you can get a good list to start with by looking at the debian/control file of the Neon/release branch of the packaging repository at https://packaging.neon.kde.org}}
You might also need to add <code>version</code> if it is not in the appstream file.  This is just a version read by users it does not affect the revision number which is tracked by the store.


The part needs editing with build-packges specified before we can do another snapcraft run:
=== apps ===


{{Input|<syntaxhighlight lang="yaml" line>
{{Input|<syntaxhighlight lang="yaml" line>
parts:
apps:
     kmplot:
     blinken:
         plugin: cmake
         extensions:
         source: https://anongit.kde.org/kmplot.git
         - kde-neon
        source-branch: Applications/19.04 # not needed for master
         common-id: org.kde.blinken.desktop
        configflags: ['-DCMAKE_INSTALL_PREFIX=/usr']
        command: usr/bin/blinken
         build-packages: [build-essential, extra-cmake-modules, libkf5widgetsaddons-dev, libqt5svg5-dev, libkf5parts-dev, libkf5doctools-dev, libkf5crash-dev, gettext]
        plugs:
</syntaxhighlight>}}
        - desktop
 
        - desktop-legacy
Snapcrafting our refined snapcraft.yaml should finally succeed in creating a snap. Unfortunately it will also print a long list of missing dependencies:
        - opengl
 
        - wayland
{{Output|<nowiki>
        - x11
[...]
        - audio-playback
Staging kmplot
        - unity7
Priming kmplot
        command-chain:
The 'kmplot' part needs the following libraries that are not included in the snap or base:  
        - snap/command-chain/desktop-launch
usr/lib/x86_64-linux-gnu/libGL.so.1
usr/lib/x86_64-linux-gnu/libGLX.so.0
usr/lib/x86_64-linux-gnu/libGLdispatch.so.0
usr/lib/x86_64-linux-gnu/libKF5Archive.so.5
usr/lib/x86_64-linux-gnu/libKF5Attica.so.5
usr/lib/x86_64-linux-gnu/libKF5AuthCore.so.5
usr/lib/x86_64-linux-gnu/libKF5Codecs.so.5
usr/lib/x86_64-linux-gnu/libKF5Completion.so.5
usr/lib/x86_64-linux-gnu/libKF5ConfigCore.so.5
usr/lib/x86_64-linux-gnu/libKF5ConfigGui.so.5
usr/lib/x86_64-linux-gnu/libKF5ConfigWidgets.so.5
usr/lib/x86_64-linux-gnu/libKF5CoreAddons.so.5
usr/lib/x86_64-linux-gnu/libKF5Crash.so.5
usr/lib/x86_64-linux-gnu/libKF5DBusAddons.so.5
usr/lib/x86_64-linux-gnu/libKF5GlobalAccel.so.5
usr/lib/x86_64-linux-gnu/libKF5GuiAddons.so.5
usr/lib/x86_64-linux-gnu/libKF5I18n.so.5
usr/lib/x86_64-linux-gnu/libKF5IconThemes.so.5
usr/lib/x86_64-linux-gnu/libKF5ItemViews.so.5
usr/lib/x86_64-linux-gnu/libKF5JobWidgets.so.5
usr/lib/x86_64-linux-gnu/libKF5KIOCore.so.5
usr/lib/x86_64-linux-gnu/libKF5KIOWidgets.so.5
usr/lib/x86_64-linux-gnu/libKF5Parts.so.5
usr/lib/x86_64-linux-gnu/libKF5Service.so.5
usr/lib/x86_64-linux-gnu/libKF5SonnetCore.so.5
usr/lib/x86_64-linux-gnu/libKF5SonnetUi.so.5
usr/lib/x86_64-linux-gnu/libKF5TextWidgets.so.5
usr/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5
usr/lib/x86_64-linux-gnu/libKF5WindowSystem.so.5
usr/lib/x86_64-linux-gnu/libKF5XmlGui.so.5
usr/lib/x86_64-linux-gnu/libQt5Core.so.5
usr/lib/x86_64-linux-gnu/libQt5DBus.so.5
usr/lib/x86_64-linux-gnu/libQt5Gui.so.5
usr/lib/x86_64-linux-gnu/libQt5Network.so.5
usr/lib/x86_64-linux-gnu/libQt5PrintSupport.so.5
usr/lib/x86_64-linux-gnu/libQt5Svg.so.5
usr/lib/x86_64-linux-gnu/libQt5TextToSpeech.so.5
usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
usr/lib/x86_64-linux-gnu/libQt5X11Extras.so.5
usr/lib/x86_64-linux-gnu/libQt5Xml.so.5
usr/lib/x86_64-linux-gnu/libX11.so.6
usr/lib/x86_64-linux-gnu/libXau.so.6
usr/lib/x86_64-linux-gnu/libXdmcp.so.6
usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1
usr/lib/x86_64-linux-gnu/libfam.so.0
usr/lib/x86_64-linux-gnu/libfreetype.so.6
usr/lib/x86_64-linux-gnu/libgraphite2.so.3
usr/lib/x86_64-linux-gnu/libharfbuzz.so.0
usr/lib/x86_64-linux-gnu/libicudata.so.60
usr/lib/x86_64-linux-gnu/libicui18n.so.60
usr/lib/x86_64-linux-gnu/libicuuc.so.60
usr/lib/x86_64-linux-gnu/libpcre2-16.so.0
usr/lib/x86_64-linux-gnu/libpng16.so.16
usr/lib/x86_64-linux-gnu/libxcb-keysyms.so.1
usr/lib/x86_64-linux-gnu/libxcb.so.1
These dependencies can be satisfied via more stage-packages, more parts, or content sharing.
Snapping 'kmplot' |                                                                                                                                 
Snapped kmplot_18.12.1_amd64.snap
</nowiki>}}
 
We can build the software fine, but snapcraft is concerned that we haven't "snapped" all the necessary dependencies. The list it prints is by no means exhaustive, it's only things snapcraft can easily detect, such as missing shared libraries. Getting the necessary dependencies on board is a bit tricky. The easiest way would be to simply take the list of build-packages and use the exact same list as stage-packages. Stage packages (and their dependencies) get put into the final snap. So, by using the build-packages also as stage-packages we'd put a whole bunch of buildtime-only stuff into our final snap unless we explicitly exclude files from getting primed. Since that is somewhat unreliable and probably not particularly advisable unless you have a firm grasp of all concepts involved, we'll opt to do it the other way around and only stage packages we know are need. So from the list of build-packages packages we'll simply look at their dependencies and try to infer which of their dependencies we need (if any).
 
* build-essential we'll leave out entirely, as the name suggests it only contains buildtime stuff such as make and gcc
* extra-cmake-modules similarly is only useful at build time as it contains cmake extensions
* libkf5widgetsaddons-dev is a dev package of a library and thus actually needed at runtime.
 
We'll inspect its package relationships with the command <code>apt show libkf5widgetsaddons-dev | grep -P "(Depends|Recommends)"</code>.
 
{{Output|<nowiki>
Depends: libkf5widgetsaddons5 (= 5.56.0+p18.04+git20190322.0124-0), qtbase5-dev (>= 5.8.0~)
Recommends: libkf5widgetsaddons-doc (= 5.56.0+p18.04+git20190322.0124-0)
</nowiki>}}
 
We can ignore qtbase5, its another dev package.  libkf5widgetsaddons-doc is library documentation which we also do not need. libkf5widgetsaddons5 is the actual library and we'll definitely want it staged.
We'll continue this review for all build-packages:


* libqt5svg5-dev: libray is libqt5svg5
* libkf5parts-dev: library is libkf5parts5
* libkf5doctools-dev: buildtime only, builds documentation
* gettext: buildtime only, builds localization
* libkf5crash-dev: library is libkf5crash5
We now have a list of packages that need staging and can update our part accordingly:
{{Input|<syntaxhighlight lang="yaml" line>
parts:
    kmplot:
        plugin: cmake
        source: https://anongit.kde.org/kmplot.git
        source-branch: Applications/19.04 # not needed for master
        configflags: ['-DCMAKE_INSTALL_PREFIX=/usr']
        build-packages: [build-essential, extra-cmake-modules, libkf5widgetsaddons-dev, libqt5svg5-dev, libkf5parts-dev, libkf5doctools-dev, libkf5crash-dev, gettext]
        stage-packages: [libkf5widgetsaddons5, libqt5svg5, libkf5parts5, libkf5crash5]
</syntaxhighlight>}}
</syntaxhighlight>}}


Snapcrafting our refined data should now create a snap without any additional warnings. This should be good enough to now. You can pull the snap out of the container with <code>sudo lxc file pull mycontainer/workspace/kmplot_0_amd64.snap .</code> and install it into with <code>snap install --force-dangerous kmplot_0_amd64.snap</code> and try to run it <code>snap run kmplot</code>. Unsuccessfully...
<code>apps</code> are the programs which the snap includes for users to run.  Usually there is only one in a Snap but sometimes e.g. [https://invent.kde.org/office/calligra/-/blob/calligra/3.3/snapcraft.yaml?ref_type=heads Calligra] there are more than one.


{{Output|<nowiki>
The [https://snapcraft.io/docs/kde-neon-extension KDE neon extension] adds some commonly used features to the KDE snaps including using the [https://snapcraft.io/kf5-5-113-qt-5-15-11-core22 content Snap].
error: cannot find app "kmplot" in "kmplot"
</nowiki>}}


Before snapd can run an application the snap first needs to declare oneLet's add one:
The <code>common-id</code> comes from the Appstream fileYou ''must'' check what it is in the appstream file. <code>org.kde.blinken.appdata.xml</code> contains <code><id>org.kde.blinken.desktop</id></code> so we use that.  Sometimes apps use the .desktop and sometimes they don't, this is at random.


{{Input|<syntaxhighlight lang="yaml" line>
The command to run is listed.  The KDE neon extension will run a script first which sets many necessary environment variables.
apps:
    kmplot:
        command: kmplot
        plugs: [x11, opengl, desktop, desktop-legacy]
</syntaxhighlight>}}


Plugs are a bit out of scope, for more information on them refer to the upstream snapcraft documentation. Snapcrafting, installing and running the new snap will unfortunately still result in problems:
The plugs give access to the outside system, see [https://snapcraft.io/docs/supported-interfaces Supported interfaces] for descriptions.  When a Snap is installed from the Store it is up to the Store to say which plugs get used.  Those listed as auto connect in the docs are permitted.  Otherwise you must ask on the Snap forum for permission to have the Snap connected. (Locally installed snaps with --devmode have access to everything, you can also manually connect snaps to interfaces on your local system.)


{{Output|<nowiki>
<code>slots</code> are the complement to plugs, they allow the outside system to access our Snap app. In this case we are allowing a dbus interface into the Snap. All KDE apps have a dbus interface and you can check what it is called by running the app and using <code>qdbus</code>.
kmplot(4481)/(qt.qpa.plugin) unknown: Could not find the Qt platform plugin "xcb" in ""
kmplot(4481)/(default) unknown: This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this proble
</nowiki>}}
 
This is where the environment helpers come in. Qt attempts to find the xcb plugin in /usr/... but actually needs to look in $SNAP/usr/... Easiest solution is using the kf5-launch helper. We need to define a new part for it. It doesn't have any build system so we simply use the 'dump' plugin which copies the source tree verbatim into the snap. One caveat is that we need to skip the kf5 directory, otherwise the launcher thinks we want to use it with the KF5 content snap. To skip directories or files in one of the stage or prime lists simply prefix it with a minus character:
 
{{Input|<syntaxhighlight lang="yaml" line>
parts:
    [...]
    kde-frameworks-5-env:
        plugin: dump
        source: https://github.com/apachelogger/kf5-snap-env.git
        stage: ['-kf5/'] # keeps it out of
</syntaxhighlight>}}


snapcraft and install again and you should see some progress:
<code>package-repositories</code> add the KDE neon apt repo to build against, this will give you the latest libraries to compile with.


{{Output|<nowiki>
The source of a Snap is the <code>parts</code> and some snaps have several parts made of different sources e.g. [https://invent.kde.org/network/ktorrent/-/blob/release/23.08/snapcraft.yaml?ref_type=heads KTorrent] has both libktorrent and ktorrent parts. Blinken is not complex so it has only one part made of the compiles Blinken source.
kmplot(8069)/(default) unknown: "Couldn't register name 'org.kde.kmplot-8069' with DBUS - another process owns it already!"
</nowiki>}}


Many of our applications will expose themselves on the dbus session bus. Doing so does require extra permissions though. The snap needs a dbus slot. A dbus slot allows us to claim a well-known name on the session bus, meaning snapd will allow us to register a service on it. In our case the name is org.kde.kmplot and snapd will be smart enough to figure out that this name also entails our per-process variants org.kde.kmplot-$PID. To define a slot we'll need a completely new section in our snapcraft.yaml:
To get started with contributing to KDE snaps. Please fork the upstream repo aka https://invent.kde.org/network/ktorrent
Currently we only have packaging for Kf5 applications, so one needs to checkout release/23.08.
Hack snapcraft.yaml. Commit. Push. Create MR


{{Input|<syntaxhighlight lang="yaml" line>
=== Parts ===
slots:
    session-dbus-interface: # semi-arbitrary name
        interface: dbus # type of the interface; this allows snapd to restrict/allow what is necessary
        name: org.kde.kmplot
        bus: session
</syntaxhighlight>}}


With this the application should now be actually starting. Alas, it looks terrible! We haven't yet added any styles or icons! Let's solve this. We can either use a new part of extend our kmplot. For easier reading we'll use a new part, in practice that is not really necessary though.
* plugin ← which [https://snapcraft.io/docs/supported-plugins Snap build plugin] to use
* build-packages ← most build packages are in the KDE Frameworks content snap but some need added explicitly and some are not in there.  They will be downloaded from the neon and ubuntu apt repos.  [https://invent.kde.org/packaging/snapcraft-kde-applications/-/blob/Neon/release/ktorrent/snapcraft.yaml] uses non-KDE libraries and it needs to list the -dev packages in the <code>build-packages</code> then the library itself in the <code>stage-packages</code>.
* source ← link to the tar
* cmake-parameters ← copy and paste this, it sets the right paths.
* parse-info ← where the appstream file is to be installed
* filesets and prime ← snap parts get build then copied into a <code>stage</code> area, when all the parts are built they are copied into the <code>prime</code> area which is converted into the Snap package. This lists a common set of excluded files we do not want copied. You can add more here if you end up with unnecessary files in your snap.


{{Input|<syntaxhighlight lang="yaml" line>
== Building ==
parts:
Install snapcraft with <code>snap install snapcraft --classic</code>.
    [...]
    plasma-integration:
        plugin: nil
        stage-packages: [plasma-integration] # this also pulls in all of breeze, so it forms a complete theme set
</syntaxhighlight>}}


Snapcraft and install and the application should look like a piece of art! In fact, it's almost ready for production now. We are still missing a bunch of metadata.
In the directory with the <code>snapcraft.yaml</code> run: <code>snapcraft</code>


# Desktop file (so snapd can shove us into the host's XDG menu)
This will start a virtual machine and build the package. If all is well you will have <code>blinken_20.12.3_amd64.snap</code> or similar created. If you had not installed lxd before, you may need to add your user to the lxd group to allow access to lxd.
# Icon file for snap store
# Appstream association, so discover can find the snap


Since we can derive all of this from appstream data we'll start by extending our kmplot part to parse the appstream file by setting the 'parse-info' attribute:
Install with <code>snap install blinken_20.12.3_amd64.snap --devmode</code>.


{{Input|<syntaxhighlight lang="yaml" line>
Run with <code>blinken</code> or check if blinken is available in the app menu and run it from there (remove any versions of blink you have installed from your normal distro packages just to be sure). <code>which -a blinken</code> should say that blinken is available at least as <code>/snap/bin/blinken</code>.
parts:
    [...]
    kmplot:
        plugin: cmake
        source: https://anongit.kde.org/kmplot.git
        source-branch: Applications/19.04 # not needed for master
        configflags: ['-DCMAKE_INSTALL_PREFIX=/usr']
        build-packages: [build-essential, extra-cmake-modules, libkf5widgetsaddons-dev, libqt5svg5-dev, libkf5parts-dev, libkf5doctools-dev, libkf5crash-dev, gettext]
        stage-packages: [libkf5widgetsaddons5, libqt5svg5, libkf5parts5, libkf5crash5]
        parse-info: [usr/share/metainfo/org.kde.kmplot.appdata.xml]
</syntaxhighlight>}}


From this we can let our app automatically determine the desktop file and also hint the appstream id to discover (appstream id is called common-id in snap):
== Quirks ==


{{Input|<syntaxhighlight lang="yaml" line>
=== Qt Only ===
apps:
    kmplot:
        command: kmplot
        plugs: [x11, opengl, desktop, desktop-legacy]
        common-id: org.kde.kmplot.desktop
</syntaxhighlight>}}


And lastly we can drop our summary and description fields in favor of adopting the information from the parsed appstream data of our kmplot part. The entire refined snapcraft.yaml should now look something like this:
You may want to simplify your Snap by using Qt directly instead of the KDE neon extension and KDE Frameworks content Snap. Good luck :)


{{Input|<syntaxhighlight lang="yaml" line>
=== Patches ===
---
name: kmplot
version: '0'
confinement: strict
grade: stable
base: core18
adopt-info: kmplot # part to adopt from (first in parse list)


apps:
If you need to update some code in the release you can patch it in the Snap package. But please get the patch upstream into the Git archive first.
    kmplot:
        command: kf5-launch kmplot
        plugs: [x11, opengl, desktop, desktop-legacy]
        common-id: org.kde.kmplot.desktop


slots:
[https://invent.kde.org/neon/neon-packaging/falkon/-/blob/70fb51728cc9c9f6da4d417bca96e2c34c96c52c/snapcraft.yaml#L45 Falkon does this].
    session-dbus-interface: # semi-arbitrary name
        interface: dbus # type of the interface; this allows snapd to restrict/allow what is necessary
        name: org.kde.kmplot
        bus: session


parts:
== Help ==
    kmplot:
        plugin: cmake
        source: https://anongit.kde.org/kmplot.git
        source-branch: Applications/19.04 # not needed for master
        configflags: ['-DCMAKE_INSTALL_PREFIX=/usr']
        build-packages: [build-essential, extra-cmake-modules, libkf5widgetsaddons-dev, libqt5svg5-dev, libkf5parts-dev, libkf5doctools-dev, libkf5crash-dev, gettext]
        stage-packages: [libkf5widgetsaddons5, libqt5svg5, libkf5parts5, libkf5crash5]
        parse-info: [usr/share/metainfo/org.kde.kmplot.appdata.xml]
    kde-frameworks-5-env:
        plugin: dump
        source: https://github.com/apachelogger/kf5-snap-env.git
        source-branch: standalone
        stage: ['-kf5/']
    plasma-integration:
        plugin: nil
        stage-packages: [plasma-integration] # this also pulls in all of breeze
</syntaxhighlight>}}


Before you run snapcraft this time, make sure to clean up everything <code>rm -r prime stage parts</code>. Appstream extraction strings across multiple stages, so you'll need a fairly clean build to actually pick up the data. After installation you should find kmplot listed in your menu and having an icon.
[https://snapcraft.io/docs Snapcraft docs] including tutorials on using and building.


This snap is now in a very good shape and could be uploaded to the snap [https://snapcraft.io/store store] for either public testing or actual release.
[https://snapcraft.io/docs/snap-format snapcraft.yaml format].


== Using a Content Snap ==
[https://forum.snapcraft.io/ Snap forum] for asking for help or asking to get the store to allow your Snaps to auto connect.


{{Construction}}
[https://webchat.kde.org/#/room/#kde-neon:kde.org KDE neon devs] talk to Riddell or Sitter for help getting your app into KDE neons builds and into the Store.


== Glossary ==
== Glossary ==
Line 494: Line 286:
Words you'll hear and not know what they mean:
Words you'll hear and not know what they mean:


* '''snap''': The actual bundle format.
* '''snap''': The actual package format.
* '''snapd''': The daemon that manages snap on a system.
* '''snapd''': The daemon that manages snap on a system.
* '''snapcraft''': The build tool for building a snap.
* '''snapcraft''': The build tool for building a snap.

Latest revision as of 16:42, 25 March 2024

 
Under Construction
This is a new page, currently under construction!


Put Your App in the Snap Store

Snap Store KDE Page

It is a KDE goal to be All About the Apps to deliver our apps directly to our users. Snaps is one of the ways of doing this. Snaps are Linux app packages that can run on pretty much any Linux operating system. There is a single centralized Snap store ( https://snapcraft.io/store ) that delivers them to users. Take a look at the KDE page on the Snap Store to see what's available.

Snap intro

A Snap package typically contains all the files, including libraries and data files, to run the app. There are also Content Snaps which contain reusable libraries. KDE has the KDE Frameworks Content Snap https://snapcraft.io/search?q=kf6 and https://snapcraft.io/search?q=kf5 which includes recent Qt and KDE Frameworks and this is shared between all KDE apps so we do not have to waste disk space and build resources. With KDE / Plasma 6 the content pack has been split https://snapcraft.io/kde-qt6-core22-sdk for Qt6 and https://snapcraft.io/kf6-core22-sdk for KDE Frameworks 6.

Give it a try by installing a package or two on your system. E.g. the KDE desktop calculator app https://snapcraft.io/kcalc

snap install kcalc

And run kcalc from your apps menu.

This will have downloaded the kcalc Snap package from the Snap store into e.g. /var/lib/snapd/snaps/kcalc_73.snap and mounted it into e.g. /snap/kcalc/current/. You can also just download it to a local directory with snap download kcalc, use lesspipe kcalc*snap to see what is inside it.

snap list will show your currently installed snaps and it will now show that you have kcalc and the content snap kf5-5-111-qt-5-15-11-core22 as well as the core22 content snap installed.

Snaps are containers, similar to Docker. From inside the Snap container access to the file system and system resources are limited. This is good for inter-app security but means the app sees your system quite differently from how you might expect. You can "log" into the container with snap run --shell kcalc to have a look at how the snapped kcalc app sees your system.

To give the app controlled permissions to the system it plugs connections into resources such as the network or container snaps. Run snap connections kcalc to see what it gets given access to. The auto connections are controlled by the snap store and app maintainers need to ask the snap store for the desired auto-connections. Connections can also be overridden locally.

You can take a look at the snap package with snap download kcalc which will download files such as kcalc_73.assert and kcalc_73.snap. The .assert has the checksums and signatures for the package. The .snap has the (non-store) metadata and all the files of the package. lesspipe kcalc_73.snap to take a look.

Concepts

Snaps are usually one app per Snap package. The Snap package contains all the libraries and resources it needs to run except those in the shared content kf5-5-111-qt-5-15-11-core22 Snap.

In practice this means all of Qt and KF(5/6) including Breeze icons and themes are in the kde-frameworks content Snap and your app Snap only needs to compile its own sources. If you apps needs more libraries you can either install these as DEB packages e.g. from the Linux operating system Ubuntu LTS or KDE neon, or you can compile them from source as well. You will need to manually list the build-packages (all the -dev packages) and the stage-packages used in the final package, it'll warn you if any final libraries it expects are missing.

snapcraft is used to build snaps. It can be installed as a snap with snap install snapcraft --classic. A snap package (app) is defined in the snapcraft.yaml file. Snapcraft will build the package inside a virtual machine; it uses LXD to build the KDE snap packages. Using a virtual machine makes it reliable to build the Snaps on different Linux operating systems with identical results.

snapcraft.yaml files are kept in their respective upstream repo. Eg. kcalc snapcraft file resides https://invent.kde.org/utilities/kcalc/-/blob/release/23.08/snapcraft.yaml?ref_type=heads

Our Snaps read metadata from AppStream metadata files so it is important the metadata is up to date including current release versions.

The Snap Store is the centralized app store by Canonical. There is no practical way to use other stores or repositories with Snaps. It is what Snapcraft uploads built snaps to and what your local snapd will download and install snaps from. It also says what permissions those snaps should have. As an app developer if you want your app to have extra permissions (for example kdf uses mount-observe) then you need to ask for it on the snapcraft forum.

A Classic containment Snap has no restrictions on what files it can see on your system or what external executable can be run. This is useful for Integrated Development Environments (IDEs) and similar apps such as Kate which runs external programs. Again this needs to be set in your [1] then you need to ask on the Snap forum for the store to set it to classic. The Store will then tell snapd for anyone installing the Snap to have it installed as a Classic confinement Snap.

The KDE account on the Snap store is run by the Snap team developers Jonathan Esk-Riddell, Harald Sitter, Scarlett Moore, Carlos DeMaine, Kevin Ottens, Benjamin Port. One Snap on the store can be shared between more than one account so app maintainers can also create a separate account if they want to have more control over when their app is released and what the store says about it.

The store has four channels for different levels of stability. Our stable branch builds get uploaded to the Candidate channel and can be moved to the Stable channel once tested.

Example

Blinken is an exciting memory game from KDE. It's available on the Snap store. The Snap package is defined by a snapcraft.yaml file which is in the https://invent.kde.org/education/blinken/-/tree/release/23.08?ref_type=heads repo. Any update to that branch triggers a build of the [2] in launchpad. If the build is successful it will be uploaded to the Candidate channel of the Snap store ready for review.

The snapcraft.yaml file looks like this:

---
name: blinken
adopt-info: blinken
confinement: strict
grade: stable
base: core22
apps:
    blinken:
        common-id: org.kde.blinken.desktop
        command: usr/bin/blinken
        plugs:
        - desktop
        - desktop-legacy
        - opengl
        - wayland
        - x11
        - audio-playback
        - unity7
        command-chain:
        - snap/command-chain/desktop-launch
assumes:
- snapd2.55.3
compression: lzo
plugs:
    desktop:
        mount-host-font-cache: false
    icon-themes:
        interface: content
        target: $SNAP/data-dir/icons
        default-provider: gtk-common-themes
    sound-themes:
        interface: content
        target: $SNAP/data-dir/sounds
        default-provider: gtk-common-themes
    kf5-5-111-qt-5-15-11-core22:
        content: kf5-5-111-qt-5-15-11-core22-all
        interface: content
        default-provider: kf5-5-111-qt-5-15-11-core22
        target: $SNAP/kf5
environment:
    SNAP_DESKTOP_RUNTIME: $SNAP/kf5
hooks:
    configure:
        plugs:
        - desktop
        command-chain:
        - snap/command-chain/hooks-configure-desktop
layout:
    /usr/share/X11:
        symlink: $SNAP/kf5/usr/share/X11
slots:
    session-dbus-interface:
        interface: dbus
        name: org.kde.blinken
        bus: session
package-repositories:
-   type: apt
    components:
    - main
    suites:
    - jammy
    key-id: 444DABCF3667D0283F894EDDE6D4736255751E5D
    url: http://origin.archive.neon.kde.org/user
    key-server: keyserver.ubuntu.com
parts:
    kde-neon:
        source: /snap/snapcraft/current/share/snapcraft/extensions/desktop/kde-neon
        source-type: local
        plugin: make
        make-parameters:
        - PLATFORM_PLUG=kf5-5-111-qt-5-15-11-core22
        build-snaps:
        - kf5-5-111-qt-5-15-11-core22-sdk
        build-environment:
        - &id001
            PATH: /snap/kf5-5-111-qt-5-15-11-core22-sdk/current/usr/bin${PATH:+:$PATH}
        - &id002
            XDG_DATA_DIRS: $CRAFT_STAGE/usr/share:/snap/kf5-5-111-qt-5-15-11-core22-sdk/current/usr/share:/usr/share${XDG_DATA_DIRS:+:$XDG_DATA_DIRS}
        - &id003
            XDG_CONFIG_HOME: $CRAFT_STAGE/etc/xdg:/snap/kf5-5-111-qt-5-15-11-core22-sdk/current/etc/xdg:/etc/xdg${XDG_CONFIG_HOME:+:$XDG_CONFIG_HOME}
        - &id004
            CRAFT_CMAKE_ARGS: -DCMAKE_FIND_ROOT_PATH=/snap/kf5-5-111-qt-5-15-11-core22-sdk/current${CRAFT_CMAKE_ARGS:+:$CRAFT_CMAKE_ARGS}
    blinken:
        after:
        - kde-neon
        parse-info:
        - usr/share/metainfo/org.kde.blinken.appdata.xml
        source: .
        source-type: local
        plugin: cmake
        build-packages:
        - cmake
        - libkf5doctools-dev
        - libphonon4qt5-dev
        - libphonon4qt5experimental-dev
        stage-snaps:
        - khelpcenter
        cmake-parameters:
        - -DKDE_INSTALL_USE_QT_SYS_PATHS=FALSE
        - -DCMAKE_INSTALL_PREFIX=/usr
        - -DCMAKE_BUILD_TYPE=Release
        - -DENABLE_TESTING=OFF
        - -DBUILD_TESTING=OFF
        - -DKDE_SKIP_TEST_SETTINGS=ON
        - "-DCMAKE_FIND_ROOT_PATH=/usr\\;$CRAFT_STAGE\\;/snap/kf5-5-111-qt-5-15-11-core22-sdk/current"
        - "-DKDE_INSTALL_PLUGINDIR=/usr/lib/$CRAFT_ARCH_TRIPLET/qt5/plugins/"
        prime:
        - "-usr/lib/*/cmake/*"
        - "-usr/include/*"
        - "-usr/share/ECM/*"
        - "-usr/share/man/*"
        - "-usr/share/icons/breeze-dark*"
        - "-usr/bin/X11"
        - "-usr/lib/gcc/$CRAFT_ARCH_TRIPLET/6.0.0"
        - "-usr/lib/aspell/*"
        - "-usr/share/lintian"
        build-environment: &id005
        - *id001
        - *id002
        - *id003
        - *id004
    cleanup:
        after:
        - kde-neon
        - blinken
        plugin: nil
        override-prime:  |
            set -eux
            # # Unused libraries found by linter

Check Snapcraft YAML reference if unsure.

Top Level

  • name: blinken ← the snap name registered on the snap store
  • confinement: strict ← Snaps are a containerised format and can't see the outside system from inside their container. Strict is the normal container method. Classic is also possible which allows it to see the outside system and is used by e.g. Kate because Kate needs to run external programs like Git. It can only be Classic on request. Can also be devmode for testing.
  • grade: stable ← It must be stable to be in a released channel, can also be devel.
  • base: core22 ← which base system to build on, core22 means Ubuntu 22.04 and is the current recommended.
  • adopt-info: blinken ← Which Snap part to get the appstream info from. This sets version, icon, description.

You might also need to add version if it is not in the appstream file. This is just a version read by users it does not affect the revision number which is tracked by the store.

apps

apps:
    blinken:
        extensions:
        - kde-neon
        common-id: org.kde.blinken.desktop
        command: usr/bin/blinken
        plugs:
        - desktop
        - desktop-legacy
        - opengl
        - wayland
        - x11
        - audio-playback
        - unity7
        command-chain:
        - snap/command-chain/desktop-launch

apps are the programs which the snap includes for users to run. Usually there is only one in a Snap but sometimes e.g. Calligra there are more than one.

The KDE neon extension adds some commonly used features to the KDE snaps including using the content Snap.

The common-id comes from the Appstream file. You must check what it is in the appstream file. org.kde.blinken.appdata.xml contains <id>org.kde.blinken.desktop</id> so we use that. Sometimes apps use the .desktop and sometimes they don't, this is at random.

The command to run is listed. The KDE neon extension will run a script first which sets many necessary environment variables.

The plugs give access to the outside system, see Supported interfaces for descriptions. When a Snap is installed from the Store it is up to the Store to say which plugs get used. Those listed as auto connect in the docs are permitted. Otherwise you must ask on the Snap forum for permission to have the Snap connected. (Locally installed snaps with --devmode have access to everything, you can also manually connect snaps to interfaces on your local system.)

slots are the complement to plugs, they allow the outside system to access our Snap app. In this case we are allowing a dbus interface into the Snap. All KDE apps have a dbus interface and you can check what it is called by running the app and using qdbus.

package-repositories add the KDE neon apt repo to build against, this will give you the latest libraries to compile with.

The source of a Snap is the parts and some snaps have several parts made of different sources e.g. KTorrent has both libktorrent and ktorrent parts. Blinken is not complex so it has only one part made of the compiles Blinken source.

To get started with contributing to KDE snaps. Please fork the upstream repo aka https://invent.kde.org/network/ktorrent Currently we only have packaging for Kf5 applications, so one needs to checkout release/23.08. Hack snapcraft.yaml. Commit. Push. Create MR

Parts

  • plugin ← which Snap build plugin to use
  • build-packages ← most build packages are in the KDE Frameworks content snap but some need added explicitly and some are not in there. They will be downloaded from the neon and ubuntu apt repos. [3] uses non-KDE libraries and it needs to list the -dev packages in the build-packages then the library itself in the stage-packages.
  • source ← link to the tar
  • cmake-parameters ← copy and paste this, it sets the right paths.
  • parse-info ← where the appstream file is to be installed
  • filesets and prime ← snap parts get build then copied into a stage area, when all the parts are built they are copied into the prime area which is converted into the Snap package. This lists a common set of excluded files we do not want copied. You can add more here if you end up with unnecessary files in your snap.

Building

Install snapcraft with snap install snapcraft --classic.

In the directory with the snapcraft.yaml run: snapcraft

This will start a virtual machine and build the package. If all is well you will have blinken_20.12.3_amd64.snap or similar created. If you had not installed lxd before, you may need to add your user to the lxd group to allow access to lxd.

Install with snap install blinken_20.12.3_amd64.snap --devmode.

Run with blinken or check if blinken is available in the app menu and run it from there (remove any versions of blink you have installed from your normal distro packages just to be sure). which -a blinken should say that blinken is available at least as /snap/bin/blinken.

Quirks

Qt Only

You may want to simplify your Snap by using Qt directly instead of the KDE neon extension and KDE Frameworks content Snap. Good luck :)

Patches

If you need to update some code in the release you can patch it in the Snap package. But please get the patch upstream into the Git archive first.

Falkon does this.

Help

Snapcraft docs including tutorials on using and building.

snapcraft.yaml format.

Snap forum for asking for help or asking to get the store to allow your Snaps to auto connect.

KDE neon devs talk to Riddell or Sitter for help getting your app into KDE neons builds and into the Store.

Glossary

Words you'll hear and not know what they mean:

  • snap: The actual package format.
  • snapd: The daemon that manages snap on a system.
  • snapcraft: The build tool for building a snap.
  • 'app: In the context of snapcraft/snapd this is the (portable) description of an 'executable' exposed to the outside (i.e. something snapd knows how to run).
  • parts: In the context of snapcraft a part refers to one build entity. They describe where to get the source of the entity, how to build it, how to stage it into the final snap and which other parts are a dependency and need to be built first. A part is much like a "makefile" target.
  • interfaces: A way for a snap to talk to the outside world (or another snaps). Split into slots and plugs. Each of which has their own security permissions as a client may need to be able to do different things from a server. https://docs.snapcraft.io/interface-management
  • slot: The provider part of an interface. e.g. a kwin snap might have a wayland-client slot which exposes a way for clients to talk to kwin.
  • plug: The client part of an interface. e.g. an application may plug into the wayland-client slot of kwin to talk to it.
  • Core: A special snap containing the core aspects of any Linux OS (libc/libpthread/...). All snaps depend on exactly one core which provides the snap's understanding of what will be in "/" from the snap's POV. The core does not include a kernel! Kernels may be snaps.
  • Content Snap: Special kind of snap that implements the "content" interface. It's kind of like a shared dependency between snaps allowing one snap to be bound into the scope of another snap. For example the KF5 content snap may be used to share all of KF5 across multiple snaps.
  • Build Snap: Also a special kind of snap, it's the build-time variant of the Content Snap and contains header files etc. necessary to build against a Content Snap.
  • stage, staging: As part of snapcrafting parts get "staged". This kind of means the same as make install, but it's actually a separate step after make install. For the process of staging, snapcraft will copy all files created by make install into a stage directory. You may also exclude certain files or reorganize the files (e.g. rename, or move to different directory). The stage is available for parts ordered after the current one, meaning that they for example can link against a newly built library.
  • prime, priming: Is similar to staging but happens once all parts are built and staged. Priming is the process by which the snap tree is actually constructed. Priming, like staging, allows for excluding files (e.g. dev headers may be staged so other parts can build using them but later excluded from priming and thus left out of the final bundle).