Accepting request 615655 from home:luc14n0:branches:GNOME:Factory

Update to version 0.7.9+0

OBS-URL: https://build.opensuse.org/request/show/615655
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/appstream-glib?expand=0&rev=129
This commit is contained in:
Bjørn Lie 2018-06-11 08:19:00 +00:00 committed by Git OBS Bridge
parent c1ccc80fba
commit 4bffe751bc
6 changed files with 27 additions and 17 deletions

View File

@ -6,7 +6,7 @@
<param name="versionrewrite-pattern">appstream_glib_(\d+)_(\d+)_(\d+)</param>
<param name="versionrewrite-replacement">\1.\2.\3</param>
<param name="changesgenerate">enable</param>
<param name="revision">2f2e2ee</param>
<param name="revision">4e30302</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">2f2e2ee3d39955bc26fac9781f491d4f426ede18</param></service></servicedata>
<param name="changesrevision">4e30302953a7e7b89c57b717e2aa0096c17ac166</param></service></servicedata>

View File

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

View File

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

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Sat Jun 9 22:15:58 UTC 2018 - luc14n0@linuxmail.org
- Update to version 0.7.9+0:
+ New Features:
- Add ability to store signature filename and checksum;
- Convert local icons found in metainfo files;
+ Bugs fixed:
- Follow the Debian tilde usage when ordering versions;
- Remove the refcounted string interning feature;
- Use the launchable to find the desktop filename.
- Drop gnome-common BuildRequires: this package has no use since
build system port to Meson.
- Update check section to work with meson.
-------------------------------------------------------------------
Wed May 02 11:29:23 UTC 2018 - dimstar@opensuse.org
@ -10,10 +25,10 @@ Wed May 02 11:29:23 UTC 2018 - dimstar@opensuse.org
Mon Apr 23 02:43:01 UTC 2018 - luc14n0@linuxmail.org
- Update to version 0.7.8:
+ New Features addition: as_store_get_app_by_launchable(),
+ New Features: as_store_get_app_by_launchable(),
as_utils_unique_id_match(), as_version_string() for fwupd. And
support for component agreements.
+ Bugfixes:
+ Bugs fixed:
- Correctly compare version numbers like '1.2.3' and '1.2.3a';
- Don't include the path component in the name when parsing the
package filename;

View File

@ -17,9 +17,8 @@
#
%define _build_from_vcs 0
Name: appstream-glib
Version: 0.7.8+3
Version: 0.7.9+0
Release: 0
Summary: AppStream Abstraction Library
License: LGPL-2.1-or-later AND GPL-2.0-or-later
@ -34,6 +33,8 @@ BuildRequires: gperf
BuildRequires: gtk-doc
BuildRequires: meson
BuildRequires: pkgconfig
# We still need some part to build the man pages
BuildRequires: xsltproc
BuildRequires: pkgconfig(gdk-pixbuf-2.0) >= 2.31.5
BuildRequires: pkgconfig(gio-2.0)
BuildRequires: pkgconfig(gio-unix-2.0) >= 2.45.8
@ -52,12 +53,6 @@ Requires: gcab
# Required in order to be able to convert .svg icons
Requires: gdk-pixbuf-loader-rsvg
Requires: pngquant >= 2.8
%if %{_build_from_vcs}
BuildRequires: gnome-common
%else
# We still need some part to build the man pages
BuildRequires: xsltproc
%endif
%description
This library provides GObjects and helper methods to read and write
@ -181,12 +176,12 @@ install -m 0755 -D %{SOURCE1} %{buildroot}%{_bindir}/$(basename %{SOURCE1})
%find_lang %{name}
%check
if make %{?_smp_mflags} check; then
if %meson_test; then
echo CHECKS passed
exit 0
else
echo CHECKS failed... dumping log file
find -name test-suite.log -exec cat {} +
find -name testlog.txt -exec cat {} +
exit 0
fi