Accepting request 536379 from GNOME:Next

Update to 0.7.3

OBS-URL: https://build.opensuse.org/request/show/536379
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/appstream-glib?expand=0&rev=109
This commit is contained in:
Dominique Leuenberger 2017-10-30 10:34:44 +00:00 committed by Git OBS Bridge
parent 0e3ca0d975
commit ea1ae447df
7 changed files with 30 additions and 10 deletions

View File

@ -2,9 +2,9 @@
<service name="tar_scm" mode="disabled">
<param name="url">https://github.com/hughsie/appstream-glib.git</param>
<param name="scm">git</param>
<param name="versionformat">0.7.2</param>
<param name="versionformat">0.7.3</param>
<param name="changesgenerate">enable</param>
<param name="revision">refs/tags/appstream_glib_0_7_2</param>
<param name="revision">refs/tags/appstream_glib_0_7_3</param>
</service>
<service name="recompress" mode="disabled">
<param name="file">*.tar</param>

View File

@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/hughsie/appstream-glib.git</param>
<param name="changesrevision">6149f7eb067c4d267738fd5e7ea5c0cc1be7bc5b</param></service></servicedata>
<param name="changesrevision">9783a5357a33d4eb945eba9f2b9a4da4535a46e9</param></service></servicedata>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6d5aba36189bc64e6aaf62282ab357ecaa61bc9f1645fa4bf21b9dc8bfc1feea
size 2227404

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e6a8ad7b7b88027d368ed312f35d024a5956fe2e894fef81867e3153ae762ac7
size 2227288

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Tue Oct 24 13:09:40 UTC 2017 - dimstar@opensuse.org
- Update to version 0.7.3:
+ Add support for URL launchable types
+ Prefer /usr/share/metainfo as default path for metainfo files
+ Do not assign "flatpak" as an app's origin when no origin was
found.
+ Add as_app_get_release_by_version().
+ lib/app-validate: Fix typo in variable name.
+ Write XML for newer AppStream specification versions.
+ Add as_app_get_screenshot_default().
+ Add AS_VERSION_PARSE_FLAG_USE_BCD when formatting version
strings.
+ Add new launchable types from the 0.11 series of the spec.
+ Fix the inode mode to be sane on extracted files.
-------------------------------------------------------------------
Thu Sep 14 11:35:44 UTC 2017 - dimstar@opensuse.org

View File

@ -19,7 +19,7 @@
%define _build_from_vcs 1
Name: appstream-glib
Version: 0.7.2
Version: 0.7.3
Release: 0
Summary: AppStream Abstraction Library
License: LGPL-2.1+ AND GPL-2.0+

View File

@ -17,11 +17,14 @@ TMPDIR=$(mktemp -d)
--origin=appdata \
--basename=appdata \
--packages-dir=${SRC} \
--output-dir=${DEST}
--output-dir=${DEST} 2>&1 > $TMPDIR/as-builder.log
if [ $? -ne 0 ]; then
RET=$?
if [ $RET -ne 0 ]; then
# The appstream-builder failed, exit with an error code, so prod builder knows about it
exit 1
cat $TMPDIR/as-builder.log
exit $RET
fi
# clean up TMPDIR again