mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
Enhancements: * Improve check for --filesystem paths pointing to a parent folder (#6473) * Fail if non-interactive and multiple refs, remotes or installations match (#5754) * Default to text auth on WSL (#6491) * Add build instructions for Ubuntu 24.04 (#6498) * Show a better message when there are no refs to update (#6521) * Silence AppStream refresh output on non-interactive runs (#6521) * Translation updates: pt_BR (#6483), sl (#6468, #6475), sv (#6514), tr (#6528), zh_CN (#6469, #6477) Bug fixes: * Map the font-dirs.xml file more selectively (#6450) * Change const pointers. This fixes build issues with glibc 2.43. (#6490) * Add custom type flatpak_home_t for ~/.local/share/flatpak for SELinux (#6437) * Fix build warnings when compiling with -Wanalyzer-null-argument and with -Wanalyzer-null-dereference (#6527) * Use raw string for regular expression in the flatpak-bisect script (#6519) Internal changes: * Set the `FLATPAK_TRIGGERSDIR` environment variable when running installed tests. This fixes a regression with autopkg tests in Debian. (#6444) * Add translator comments for some translatable strings (#6462) * Fix typos in translatable strings (#6463) * Fix lots of typos in code comments (#6482) * Remove an unused function (#6529) * Update two strings (#6464) Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
79 lines
2.4 KiB
BlitzBasic
79 lines
2.4 KiB
BlitzBasic
DESCRIPTION = "Desktop containment framework."
|
|
HOMEPAGE = "http://flatpak.org"
|
|
LICENSE = "LGPL-2.1-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/flatpak/flatpak;protocol=https;branch=main;tag=${PV} \
|
|
file://0001-flatpak-pc-add-pc_sysrootdir.patch \
|
|
"
|
|
|
|
SRCREV = "13b26a94a3bd6fec309a16982a3a80d83776d7ac"
|
|
|
|
|
|
inherit meson pkgconfig gettext systemd gtk-doc gobject-introspection python3native mime features_check useradd
|
|
|
|
REQUIRED_DISTRO_FEATURES = "polkit"
|
|
|
|
DEPENDS = " \
|
|
appstream \
|
|
bison-native \
|
|
bubblewrap-native \
|
|
fuse3 \
|
|
gdk-pixbuf \
|
|
glib-2.0 \
|
|
gpgme \
|
|
json-glib \
|
|
libarchive \
|
|
libcap \
|
|
libxml2 \
|
|
ostree \
|
|
polkit \
|
|
python3-pyparsing-native \
|
|
xdg-dbus-proxy-native \
|
|
zstd \
|
|
curl \
|
|
"
|
|
|
|
RDEPENDS:${PN} = " \
|
|
ca-certificates \
|
|
flatpak-xdg-utils \
|
|
fuse3-utils \
|
|
bubblewrap \
|
|
xdg-dbus-proxy \
|
|
"
|
|
|
|
GIR_MESON_OPTION = "gir"
|
|
GIR_MESON_ENABLE_FLAG = 'enabled'
|
|
GIR_MESON_DISABLE_FLAG = 'disabled'
|
|
GTKDOC_MESON_OPTION = 'gtkdoc'
|
|
GTKDOC_MESON_ENABLE_FLAG = 'enabled'
|
|
GTKDOC_MESON_DISABLE_FLAG = 'disabled'
|
|
|
|
PACKAGECONFIG[dconf] = "-Ddconf=enabled,-Ddconf=disabled,dconf"
|
|
PACKAGECONFIG[docbook_docs] = "-Ddocbook_docs=enabled,-Ddocbook_docs=disabled,xmlto-native"
|
|
PACKAGECONFIG[man] = "-Dman=enabled,-Dman=disabled,libxslt-native"
|
|
PACKAGECONFIG[tests] = "-Dtests=true,-Dtests=false,xauth socat-native"
|
|
PACKAGECONFIG[xauth] = "-Dxauth=enabled,-Dxauth=disabled,xauth"
|
|
PACKAGECONFIG[seccomp] = "-Dseccomp=enabled,-Dseccomp=disabled,libseccomp"
|
|
PACKAGECONFIG[malcontent] = "-Dmalcontent=enabled,-Dmalcontent=disabled,malcontent"
|
|
PACKAGECONFIG[selinux] = "-Dselinux_module=enabled,-Dselinux_module=disabled,libselinux"
|
|
PACKAGECONFIG[wayland-security-context] = "-Dwayland_security_context=enabled,-Dwayland_security_context=disabled,wayland wayland-native wayland-protocols"
|
|
|
|
PACKAGECONFIG ?= " \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'xauth', '', d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'seccomp', 'seccomp', '', d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland-security-context', '', d)} \
|
|
"
|
|
|
|
EXTRA_OEMESON = " \
|
|
-Dsystem_fusermount=fusermount3 \
|
|
-Dsystem_bubblewrap=bwrap \
|
|
-Dsystem_dbus_proxy=xdg-dbus-proxy \
|
|
"
|
|
|
|
USERADD_PACKAGES = "${PN}"
|
|
USERADD_PARAM:${PN} = "--system --no-create-home --user-group --shell /sbin/nologin flatpak"
|
|
|
|
FILES:${PN} += "${libdir} ${datadir}"
|