Accepting request 428782 from GNOME:Next
How did this end up building OBS-URL: https://build.opensuse.org/request/show/428782 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/flatpak?expand=0&rev=3
This commit is contained in:
parent
f35faf72c4
commit
fcaed2849d
5
_service
5
_service
@ -2,9 +2,9 @@
|
|||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="disabled">
|
||||||
<param name="url">https://github.com/flatpak/flatpak.git</param>
|
<param name="url">https://github.com/flatpak/flatpak.git</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="versionformat">0.6.9</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
<param name="revision">refs/tags/0.6.9</param>
|
<param name="revision">refs/tags/0.6.10</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="recompress" mode="disabled">
|
<service name="recompress" mode="disabled">
|
||||||
<param name="file">*.tar</param>
|
<param name="file">*.tar</param>
|
||||||
@ -12,3 +12,4 @@
|
|||||||
</service>
|
</service>
|
||||||
<service name="set_version" mode="disabled"/>
|
<service name="set_version" mode="disabled"/>
|
||||||
</services>
|
</services>
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/flatpak/flatpak.git</param>
|
<param name="url">https://github.com/flatpak/flatpak.git</param>
|
||||||
<param name="changesrevision">fcd91ad6db34114bb9da4a120f3d059085e06e3c</param></service></servicedata>
|
<param name="changesrevision">95891501a0a9e255a12d75906b87d88c170672dd</param></service></servicedata>
|
3
flatpak-0.6.10.tar.xz
Normal file
3
flatpak-0.6.10.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0d2f95940e5ac7410a479b40cbf7708b489b3c62e1b9f5a169a5775cc91694d3
|
||||||
|
size 476676
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a1937a471103504beb95b9bcf1a638de64a79efb987425dadcdb9a0e9db6e9b3
|
|
||||||
size 450628
|
|
@ -1,3 +1,56 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 19 17:51:42 UTC 2016 - opensuse-packaging@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 0.6.10:
|
||||||
|
+ Dropped requirement for systemd --user. The way we detect if an
|
||||||
|
process we're talking to is sandboxed, and what application id
|
||||||
|
it has doesn't use cgroups anymore, which means that the
|
||||||
|
dependency on systemd in the user session is now optional. This
|
||||||
|
also means the --no-desktop argument is not needed any more.
|
||||||
|
(It is still accepted but does nothing.)
|
||||||
|
+ Initial support has been added for .flatpakref files. These are
|
||||||
|
simple key value files similar to .flatpakrepo files, however
|
||||||
|
they specify an application to install in addition to the repo
|
||||||
|
information. For example, gedit can be installed by downloading
|
||||||
|
https://sdk.gnome.org/gedit.flatpakref and running: flatpak
|
||||||
|
install --from gedit.flatpakref There is also library support
|
||||||
|
for this so it can be added to graphical installers (such as
|
||||||
|
gnome-software).
|
||||||
|
+ Requires OSTree 2016.10. The change in how OSTree handles
|
||||||
|
mtimes in checkouts that was introduced in 2016.7 has been
|
||||||
|
reverted, and the required changes in Flatpak has been made.
|
||||||
|
This means that flatpak now depends on OSTree 2016.10.
|
||||||
|
+ Requires Bubblewrap 0.1.2 for builds using the system
|
||||||
|
bubblewrap. Builds using the included copy need no changes.
|
||||||
|
+ The $XDG_RUNTIME_DIR/flatpak-info file has added information
|
||||||
|
about the running application, and is now also securely
|
||||||
|
available for a running application from the host as
|
||||||
|
"/proc/$fd/root/.flatpak-info". This is what is used to
|
||||||
|
identify remote apps instead of the cgroup info.
|
||||||
|
+ A new run permission --allow=devel has been added. An
|
||||||
|
application with this permission is allowed to use ptrace and
|
||||||
|
perf. This was previously only available during "flatpak build"
|
||||||
|
and "flatpak run -d". This is useful if you're packaging e.g.
|
||||||
|
an IDE.
|
||||||
|
+ When an application is updated or removed a /app/.updated or
|
||||||
|
/app/.removed file is created for running instances. This can
|
||||||
|
be used by applications to trigger e.g. a restart for the new
|
||||||
|
version.
|
||||||
|
+ A new dbus request "HostCommand" has been added to
|
||||||
|
org.freedesktop.Flatpak. This lets you run any command on the
|
||||||
|
host, and is therefore clearly not sandboxed, so access to this
|
||||||
|
should be limited. However, it is very useful if you're using
|
||||||
|
flatpak mainly as a distribution mechanism, for a non-sandboxed
|
||||||
|
application.
|
||||||
|
+ flatpak-builder now supports running from inside a flatpak, by
|
||||||
|
auto-detecting this and using the HostCommand service to run
|
||||||
|
recursive flatpaks.
|
||||||
|
+ Consecutive calls to flatpak build-update-repo has been speed
|
||||||
|
up.
|
||||||
|
+ The document portal now allows sandboxed applications to create
|
||||||
|
references to files in /app and /usr (in the app/runtime).
|
||||||
|
+ The update process now doesn't stop at the first failure.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 06 15:34:26 UTC 2016 - zaitor@opensuse.org
|
Tue Sep 06 15:34:26 UTC 2016 - zaitor@opensuse.org
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
%define libname libflatpak0
|
%define libname libflatpak0
|
||||||
Name: flatpak
|
Name: flatpak
|
||||||
Version: 0.6.9
|
Version: 0.6.10
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Manage OSTree based application bundles
|
Summary: Manage OSTree based application bundles
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1+
|
||||||
@ -47,7 +47,7 @@ BuildRequires: pkgconfig(libarchive) >= 2.8.0
|
|||||||
BuildRequires: pkgconfig(libelf) >= 0.8.12
|
BuildRequires: pkgconfig(libelf) >= 0.8.12
|
||||||
BuildRequires: pkgconfig(libseccomp)
|
BuildRequires: pkgconfig(libseccomp)
|
||||||
BuildRequires: pkgconfig(libsoup-2.4)
|
BuildRequires: pkgconfig(libsoup-2.4)
|
||||||
BuildRequires: pkgconfig(ostree-1) >= 2016.7
|
BuildRequires: pkgconfig(ostree-1) >= 2016.10
|
||||||
BuildRequires: pkgconfig(polkit-gobject-1)
|
BuildRequires: pkgconfig(polkit-gobject-1)
|
||||||
BuildRequires: pkgconfig(xau)
|
BuildRequires: pkgconfig(xau)
|
||||||
Requires: ostree >= 2016.5
|
Requires: ostree >= 2016.5
|
||||||
|
Loading…
Reference in New Issue
Block a user