Accepting request 1000418 from GNOME:Factory
- Update to version 1.14.0: OBS-URL: https://build.opensuse.org/request/show/1000418 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/flatpak?expand=0&rev=72
This commit is contained in:
commit
2b6fd8933f
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6db52a531ce278282ac7ebfb99f66a0bb3eccaf44e864844c2c95c1ee5ba9316
|
||||
size 1562920
|
3
flatpak-1.14.0.tar.xz
Normal file
3
flatpak-1.14.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8e276973770ea24ddf2597ad4aecd36b98393e6bde91e48e1743aaca67f27815
|
||||
size 1636864
|
@ -1,3 +1,42 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 30 19:50:38 UTC 2022 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
- Update to version 1.14.0:
|
||||
+ Improved support for sideloading.
|
||||
+ Allow sub-sandboxes to own MPRIS names on the session bus.
|
||||
+ Commands that accept "--user" will now also take "-u" as an alias
|
||||
for that.
|
||||
+ The CLI now properly informs the user of which apps are
|
||||
(indirectly) using end-of-life runtime extensions in end-of-life
|
||||
info messages.
|
||||
+ The CLI now takes into account operations in the pending
|
||||
transaction when printing end-of-life messages.
|
||||
+ The uninstall command now asks for confirmation before removing
|
||||
in-use runtimes or runtime extensions.
|
||||
+ A "--socket=gpg-agent" option is now recognized by "flatpak run"
|
||||
and related commands.
|
||||
+ Curl supported as default HTTP backend.
|
||||
+ Uses Fuse 3.
|
||||
+ Implement support for rewriting dynamic launchers when an app
|
||||
is renamed.
|
||||
+ Add --include-sdk/debug options to install command to install
|
||||
SDK/debuginfo along with a ref.
|
||||
+ defense in depth against arbitrary file deletion by
|
||||
flatpak-system-helper when using very old libostree
|
||||
(boo#1202639).
|
||||
+ Updated translations.
|
||||
- Replace pkgconfig(fuse) BuildRequires with pkgconfig(fuse3):
|
||||
Follow upstreams port to fuse3.
|
||||
- Add pkgconfig(libcurl) BuildRequires: enable the new HTTP
|
||||
backend.
|
||||
- Drop gtk-doc BuildRequires and no longer pass --enable-gtk-doc to
|
||||
configure: no longer supported.
|
||||
- Drop libtool BuildRequires: no need to bootstrap the tarball.
|
||||
- Replace pkgconfig(appstream-glib) BuildRequires with
|
||||
pkgconfig(appstream): match what configure checks for.
|
||||
- Add pkgconfig(gdk-pixbuf-2.0): verified dependency that was
|
||||
implicitly included by appstream-glib before.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 15 14:05:05 UTC 2022 - Benjamin Greiner <code@bnavigator.de>
|
||||
|
||||
|
18
flatpak.spec
18
flatpak.spec
@ -30,7 +30,7 @@
|
||||
%define support_environment_generators 1
|
||||
%endif
|
||||
Name: flatpak
|
||||
Version: 1.12.7
|
||||
Version: 1.14.0
|
||||
Release: 0
|
||||
Summary: OSTree based application bundles management
|
||||
License: LGPL-2.1-or-later
|
||||
@ -41,30 +41,30 @@ Source1: update-system-flatpaks.service
|
||||
Source2: update-system-flatpaks.timer
|
||||
Patch0: polkit_rules_usability.patch
|
||||
BuildRequires: bison
|
||||
BuildRequires: bubblewrap >= 0.4.1
|
||||
BuildRequires: bubblewrap >= 0.5.0
|
||||
BuildRequires: docbook-xsl-stylesheets
|
||||
BuildRequires: gtk-doc
|
||||
BuildRequires: intltool >= 0.35.0
|
||||
BuildRequires: libcap-devel
|
||||
BuildRequires: libgpg-error-devel
|
||||
BuildRequires: libgpgme-devel >= 1.1.8
|
||||
BuildRequires: libtool
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: python3-pyparsing
|
||||
BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: sysuser-tools
|
||||
BuildRequires: xdg-dbus-proxy >= 0.1.0
|
||||
BuildRequires: xsltproc
|
||||
BuildRequires: pkgconfig(appstream-glib)
|
||||
BuildRequires: pkgconfig(appstream) >= 0.12.0
|
||||
BuildRequires: pkgconfig(dconf) >= 0.26
|
||||
BuildRequires: pkgconfig(fuse) >= 2.9.2
|
||||
BuildRequires: pkgconfig(fuse3) >= 3.1.1
|
||||
BuildRequires: pkgconfig(gdk-pixbuf-2.0)
|
||||
BuildRequires: pkgconfig(gio-2.0)
|
||||
BuildRequires: pkgconfig(gio-unix-2.0)
|
||||
BuildRequires: pkgconfig(glib-2.0) >= 2.44
|
||||
BuildRequires: pkgconfig(glib-2.0) >= 2.46
|
||||
BuildRequires: pkgconfig(gobject-introspection-1.0) >= 1.40.0
|
||||
BuildRequires: pkgconfig(gobject-introspection-no-export-1.0) >= 1.40.0
|
||||
BuildRequires: pkgconfig(json-glib-1.0)
|
||||
BuildRequires: pkgconfig(libarchive) >= 2.8.0
|
||||
BuildRequires: pkgconfig(libcurl) >= 7.29.0
|
||||
BuildRequires: pkgconfig(libelf) >= 0.8.12
|
||||
BuildRequires: pkgconfig(libseccomp)
|
||||
BuildRequires: pkgconfig(libsoup-2.4)
|
||||
@ -150,7 +150,6 @@ sed -i -e '1s,#!%{_bindir}/env python3,#!%{_bindir}/python3,' scripts/flatpak-*
|
||||
%build
|
||||
%configure \
|
||||
--disable-silent-rules \
|
||||
--enable-gtk-doc \
|
||||
--with-system-bubblewrap \
|
||||
--with-priv-mode=none \
|
||||
--with-dbus-config-dir=%{_dbusconfigdir} \
|
||||
@ -225,6 +224,8 @@ fi
|
||||
%{_libexecdir}/revokefs-fuse
|
||||
%{_datadir}/bash-completion/completions/flatpak
|
||||
%dir %{_datadir}/fish
|
||||
%dir %{_datadir}/fish/vendor_conf.d
|
||||
%{_datadir}/fish/vendor_conf.d/flatpak.fish
|
||||
%dir %{_datadir}/fish/vendor_completions.d
|
||||
%{_datadir}/fish/vendor_completions.d/flatpak.fish
|
||||
# # Own dirs so we don't have to depend on dbus for building.
|
||||
@ -293,7 +294,6 @@ fi
|
||||
%{_bindir}/flatpak-bisect
|
||||
%{_bindir}/flatpak-coredumpctl
|
||||
%{_libdir}/pkgconfig/flatpak.pc
|
||||
%{_datadir}/gtk-doc/
|
||||
%{_includedir}/%{name}/
|
||||
%{_libdir}/libflatpak.so
|
||||
%{_datadir}/gir-1.0/Flatpak-1.0.gir
|
||||
|
Loading…
Reference in New Issue
Block a user