Accepting request 482203 from GNOME:Next
1 OBS-URL: https://build.opensuse.org/request/show/482203 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/flatpak?expand=0&rev=23
This commit is contained in:
parent
c820fd915e
commit
1b2778e579
2
_service
2
_service
@ -4,7 +4,7 @@
|
||||
<param name="scm">git</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
<param name="revision">refs/tags/0.8.4</param>
|
||||
<param name="revision">refs/tags/0.9.1</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="file">*.tar</param>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/flatpak/flatpak.git</param>
|
||||
<param name="changesrevision">7e18ec30b27e6f25a43e982dc6e5dd6c0a708fa0</param></service></servicedata>
|
||||
<param name="changesrevision">696775687721748ba779dfb58f29ab47ed1fd6ae</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:07bb07150809a960cb8430d55b42a2dd2a0b876578b57f4e7322b034d076e9a0
|
||||
size 547956
|
3
flatpak-0.9.1.tar.xz
Normal file
3
flatpak-0.9.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4b461701057cb60f3210c0c065369c41c14d23498190c2360a7e068e29965ae7
|
||||
size 569988
|
@ -1,3 +1,54 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 16 11:59:38 UTC 2017 - adrien.plazas@suse.com
|
||||
|
||||
- Update to version 0.9.1:
|
||||
+ The flatpak-builder build cache now uses the rofiles-fuse
|
||||
ostree feature.
|
||||
+ The cflags and cxxflags module properties now work by
|
||||
appending, rather that replacing, when there are multiple
|
||||
values specified.
|
||||
+ Do not invalidate build cache when the installed version of the
|
||||
SDK changed by default. Use --rebuild-on-sdk-change to force
|
||||
rebuild otherwise.
|
||||
+ The build cache is now per-arch.
|
||||
+ New buildsystem "cmake-ninja" which works like "cmake", but
|
||||
builds using ninja.
|
||||
+ New buildsystem "simple" which just runs a set of shell
|
||||
commands specified in the "build-commands" property.
|
||||
+ flatpak-builder now has build-runtime and build-extension
|
||||
properties that makes it easier to build runtimes and
|
||||
extensions.
|
||||
+ FLATPAK_DEST is set in the build environment to the
|
||||
installation destination.
|
||||
+ flatpak-builder now supports --from-git=URL which pulls the
|
||||
json manifest and related files directly from a git repo.
|
||||
+ modules have a new no-make-install property which skips the
|
||||
make install step.
|
||||
+ Modules and sources have only-arches and skip-arches
|
||||
properties, which lets you enable/disable them based on the
|
||||
build architecture.
|
||||
+ build-options has a new property ldflags, which is similar to
|
||||
cflags and cxxflags.
|
||||
+ flatpak build (and thus flatpak-builder --run) now supports
|
||||
dbus proxies when needed.
|
||||
+ All git repos are cloned with fsckObjects=true, which means we
|
||||
verify that the repos are valid.
|
||||
+ New flatpak-builder argument --build-shell=MODULE extracts and
|
||||
prepares the sources for a specified module and then starts a
|
||||
build sandbox inside it.
|
||||
+ build-export: Now supports --timestamp=ISO-8601-TIMESTAMP,
|
||||
which allows you to create reproducible commits.
|
||||
+ The OCI support has been updated to the latest version of the
|
||||
OCI image specification format.
|
||||
+ There is a new flatpak-bisect script that can be used to bisect
|
||||
flatpak applications, looking for regressions.
|
||||
+ flatpak list got a revamp. It now shows more information, and
|
||||
shows both apps and runtimes by default.
|
||||
+ flatpak remote-list was renamed flatpak remotes in order to
|
||||
minimize confusion with flatpak remote-ls. The old name is
|
||||
deprecated but still works.
|
||||
- Bump minimal glib to 2.44.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 10 20:58:11 UTC 2017 - dimstar@opensuse.org
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
%define libname libflatpak0
|
||||
Name: flatpak
|
||||
Version: 0.8.4
|
||||
Version: 0.9.1
|
||||
Release: 0
|
||||
Summary: Manage OSTree based application bundles
|
||||
License: LGPL-2.1+
|
||||
@ -40,7 +40,7 @@ BuildRequires: xsltproc
|
||||
BuildRequires: pkgconfig(fuse)
|
||||
BuildRequires: pkgconfig(gio-2.0)
|
||||
BuildRequires: pkgconfig(gio-unix-2.0)
|
||||
BuildRequires: pkgconfig(glib-2.0)
|
||||
BuildRequires: pkgconfig(glib-2.0) >= 2.44
|
||||
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)
|
||||
@ -199,6 +199,7 @@ flatpak remote-list --system > /dev/null 2>&1
|
||||
|
||||
%files builder
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/flatpak-bisect
|
||||
%{_bindir}/flatpak-builder
|
||||
%{_mandir}/man1/flatpak-builder.1%{ext_man}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user