|
@@ -0,0 +1,456 @@
|
|
|
|
+%bcond_with qt5
|
|
|
|
+%bcond_with doc
|
|
|
|
+
|
|
|
|
+%global _vpath_srcdir .
|
|
|
|
+%global _vpath_builddir build
|
|
|
|
+%global __global_cflags %{optflags}
|
|
|
|
+%global __global_ldflags ""
|
|
|
|
+
|
|
|
|
+%global _kf5_metainfodir %{_datadir}/metainfo
|
|
|
|
+
|
|
|
|
+# Vala/Vapi support ( upstream disabled by default, probably explains why it the build breaks often )
|
|
|
|
+%global vala 1
|
|
|
|
+
|
|
|
|
+Summary: Utilities to generate, maintain and access the AppStream database
|
|
|
|
+Name: appstream
|
|
|
|
+Version: 0.12.3
|
|
|
|
+Release: 2%{?_dist_release}
|
|
|
|
+
|
|
|
|
+# lib LGPLv2+, tools GPLv2+
|
|
|
|
+License: GPLv2+ and LGPLv2+
|
|
|
|
+#URL: http://www.freedesktop.org/wiki/Distributions/AppStream
|
|
|
|
+URL: https://github.com/ximion/appstream
|
|
|
|
+
|
|
|
|
+Vendor: Project Vine
|
|
|
|
+Distribution: Vine Linux
|
|
|
|
+
|
|
|
|
+Source0: http://www.freedesktop.org/software/appstream/releases/AppStream-%{version}.tar.xz
|
|
|
|
+
|
|
|
|
+## upstream patches (lookaside cache)
|
|
|
|
+
|
|
|
|
+## upstreamable patches
|
|
|
|
+
|
|
|
|
+# needed for cmake auto-provides
|
|
|
|
+BuildRequires: cmake
|
|
|
|
+BuildRequires: meson
|
|
|
|
+BuildRequires: gettext
|
|
|
|
+BuildRequires: gperf
|
|
|
|
+BuildRequires: gtk-doc
|
|
|
|
+BuildRequires: intltool
|
|
|
|
+BuildRequires: itstool
|
|
|
|
+%if %{with qt5}
|
|
|
|
+# for %%_kf5_metainfodir macro
|
|
|
|
+BuildRequires: kf5-rpm-macros
|
|
|
|
+%endif
|
|
|
|
+#BuildRequires: libstemmer-devel
|
|
|
|
+BuildRequires: pkgconfig(gio-2.0) pkgconfig(gobject-introspection-1.0)
|
|
|
|
+BuildRequires: pkgconfig(libxml-2.0)
|
|
|
|
+BuildRequires: pkgconfig(packagekit-glib2)
|
|
|
|
+BuildRequires: pkgconfig(protobuf-lite)
|
|
|
|
+%if %{with qt5}
|
|
|
|
+BuildRequires: pkgconfig(Qt5Core)
|
|
|
|
+%endif
|
|
|
|
+BuildRequires: pkgconfig(yaml-0.1)
|
|
|
|
+%if %{with doc}
|
|
|
|
+BuildRequires: publican
|
|
|
|
+%endif
|
|
|
|
+BuildRequires: xmlto
|
|
|
|
+
|
|
|
|
+#Requires: appstream-data
|
|
|
|
+
|
|
|
|
+%if ! 0%{?vala}
|
|
|
|
+Obsoletes: appstream-vala < 0.7.3
|
|
|
|
+%endif
|
|
|
|
+
|
|
|
|
+%description
|
|
|
|
+AppStream makes it easy to access application information from the
|
|
|
|
+AppStream database over a nice GObject-based interface.
|
|
|
|
+
|
|
|
|
+%package devel
|
|
|
|
+Summary: Development files for %{name}
|
|
|
|
+Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
+%description devel
|
|
|
|
+%{summary}.
|
|
|
|
+
|
|
|
|
+%if %{with qt5}
|
|
|
|
+%package qt
|
|
|
|
+Summary: Qt5 bindings for %{name}
|
|
|
|
+Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
+%description qt
|
|
|
|
+%{summary}.
|
|
|
|
+
|
|
|
|
+%package qt-devel
|
|
|
|
+Summary: Development files for %{name}-qt bindings
|
|
|
|
+Requires: %{name}-qt%{?_isa} = %{version}-%{release}
|
|
|
|
+Requires: pkgconfig(Qt5Core)
|
|
|
|
+%description qt-devel
|
|
|
|
+%{summary}.
|
|
|
|
+%endif
|
|
|
|
+
|
|
|
|
+%if 0%{?vala}
|
|
|
|
+%package vala
|
|
|
|
+Summary: Vala bindings for %{name}
|
|
|
|
+Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
+BuildRequires: vala-tools
|
|
|
|
+Requires: vala
|
|
|
|
+%description vala
|
|
|
|
+%{summary}.
|
|
|
|
+%endif
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+%prep
|
|
|
|
+%autosetup -n AppStream-%{version} -p1
|
|
|
|
+
|
|
|
|
+sed -i -e "s|0.12.2|%{version}|" meson.build
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+%build
|
|
|
|
+export LANG=ja_JP.UTF-8
|
|
|
|
+
|
|
|
|
+%{meson} \
|
|
|
|
+ -Dstemming=false \
|
|
|
|
+%if %{with doc}
|
|
|
|
+ -Ddocs=true \
|
|
|
|
+%endif
|
|
|
|
+%if %{with qt5}
|
|
|
|
+ -Dqt=true \
|
|
|
|
+%endif
|
|
|
|
+ -Dvapi=%{?vala:true}%{!?vala:false}
|
|
|
|
+
|
|
|
|
+%{meson_build}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+%install
|
|
|
|
+export LANG=ja_JP.UTF-8
|
|
|
|
+
|
|
|
|
+%{meson_install}
|
|
|
|
+
|
|
|
|
+mkdir -p %{buildroot}/var/cache/app-info/{icons,gv,xmls}
|
|
|
|
+touch %{buildroot}/var/cache/app-info/cache.watch
|
|
|
|
+
|
|
|
|
+%find_lang appstream
|
|
|
|
+
|
|
|
|
+%if "%{?_kf5_metainfodir}" != "%{_datadir}/metainfo"
|
|
|
|
+# move metainfo to right/legacy location
|
|
|
|
+mkdir -p %{buildroot}%{_kf5_metainfodir}
|
|
|
|
+mv %{buildroot}%{_datadir}/metainfo/*.xml \
|
|
|
|
+ %{buildroot}%{_kf5_metainfodir}
|
|
|
|
+%endif
|
|
|
|
+
|
|
|
|
+%check
|
|
|
|
+export LANG=ja_JP.UTF-8
|
|
|
|
+
|
|
|
|
+%{meson_test}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+%post -p /sbin/ldconfig
|
|
|
|
+%postun -p /sbin/ldconfig
|
|
|
|
+
|
|
|
|
+%posttrans
|
|
|
|
+%{_bindir}/appstreamcli refresh --force >& /dev/null ||:
|
|
|
|
+
|
|
|
|
+## use file triggers instead of static pkg names
|
|
|
|
+## other repos can provide appdata too
|
|
|
|
+%if 0%{?fedora} > 25
|
|
|
|
+## not sure how smart appstreamcli is about cache validation
|
|
|
|
+## to judge if --force is really needed here or not -- rex
|
|
|
|
+%transfiletriggerin -- %{_datadir}/app-info/xmls
|
|
|
|
+%{_bindir}/appstreamcli refresh --force >& /dev/null ||:
|
|
|
|
+
|
|
|
|
+%transfiletriggerpostun -- %{_datadir}/app-info/xmls
|
|
|
|
+%{_bindir}/appstreamcli refresh >& /dev/null ||:
|
|
|
|
+%else
|
|
|
|
+%triggerun -- appstream-data
|
|
|
|
+%{_bindir}/appstreamcli refresh >& /dev/null ||:
|
|
|
|
+%endif
|
|
|
|
+
|
|
|
|
+%files -f appstream.lang
|
|
|
|
+%doc AUTHORS
|
|
|
|
+%license LICENSE.GPLv2
|
|
|
|
+%license LICENSE.LGPLv2.1
|
|
|
|
+%{_bindir}/appstreamcli
|
|
|
|
+%{_mandir}/man1/appstreamcli.1*
|
|
|
|
+%config(noreplace) %{_sysconfdir}/appstream.conf
|
|
|
|
+%dir %{_libdir}/girepository-1.0/
|
|
|
|
+%{_libdir}/girepository-1.0/AppStream-1.0.typelib
|
|
|
|
+%{_libdir}/libappstream.so.4*
|
|
|
|
+%{_libdir}/libappstream.so.%{version}
|
|
|
|
+%{_kf5_metainfodir}/org.freedesktop.appstream.cli.*.xml
|
|
|
|
+# put in -devel? -- rex
|
|
|
|
+%{_datadir}/gettext/its/metainfo.*
|
|
|
|
+%ghost /var/cache/app-info/cache.watch
|
|
|
|
+%dir /var/cache/app-info/
|
|
|
|
+%dir /var/cache/app-info/icons/
|
|
|
|
+%dir /var/cache/app-info/gv/
|
|
|
|
+%dir /var/cache/app-info/xmls/
|
|
|
|
+
|
|
|
|
+%files devel
|
|
|
|
+%{_includedir}/appstream/
|
|
|
|
+%{_libdir}/libappstream.so
|
|
|
|
+%{_libdir}/pkgconfig/appstream.pc
|
|
|
|
+%dir %{_datadir}/gir-1.0/
|
|
|
|
+%{_datadir}/gir-1.0/AppStream-1.0.gir
|
|
|
|
+%dir %{_docdir}/appstream
|
|
|
|
+%{_docdir}/appstream/html/
|
|
|
|
+## symlink pointing to ^^, but need to take care, since rpm has
|
|
|
|
+## trouble replacing dirs with symlinks, omit it for now -- rex
|
|
|
|
+%exclude %{_datadir}/gtk-doc/html/appstream
|
|
|
|
+
|
|
|
|
+%if %{with qt5}
|
|
|
|
+%ldconfig_scriptlets qt
|
|
|
|
+
|
|
|
|
+%files qt
|
|
|
|
+%{_libdir}/libAppStreamQt.so.2*
|
|
|
|
+%{_libdir}/libAppStreamQt.so.%{version}
|
|
|
|
+
|
|
|
|
+%files qt-devel
|
|
|
|
+%{_includedir}/AppStreamQt/
|
|
|
|
+%{_libdir}/cmake/AppStreamQt/
|
|
|
|
+%{_libdir}/libAppStreamQt.so
|
|
|
|
+%endif
|
|
|
|
+
|
|
|
|
+%if 0%{?vala}
|
|
|
|
+%files vala
|
|
|
|
+%{_datadir}/vala/vapi/appstream.deps
|
|
|
|
+%{_datadir}/vala/vapi/appstream.vapi
|
|
|
|
+%endif
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+%changelog
|
|
|
|
+* Mon Dec 10 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.12.3-2
|
|
|
|
+- initial build for Vine Linux.
|
|
|
|
+
|
|
|
|
+* Tue Nov 27 2018 Rex Dieter <rdieter@fedoraproject.org> - 0.12.3-1
|
|
|
|
+- 0.12.3
|
|
|
|
+
|
|
|
|
+* Fri Oct 12 2018 Kalev Lember <klember@redhat.com> - 0.12.2-2
|
|
|
|
+- Backport an upstream fix for empty content_rating tags
|
|
|
|
+
|
|
|
|
+* Tue Aug 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 0.12.2-1
|
|
|
|
+- appstream-0.12.2 (#1589595)
|
|
|
|
+
|
|
|
|
+* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.1-2
|
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
+
|
|
|
|
+* Sun Jun 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 0.12.1-1
|
|
|
|
+- appstream-0.12.1 (#1589595)
|
|
|
|
+- use %%ldconfig_scriptlets
|
|
|
|
+
|
|
|
|
+* Sun Apr 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 0.12.0-1
|
|
|
|
+- 0.12.0 (#1563876)
|
|
|
|
+
|
|
|
|
+* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.8-3
|
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
+
|
|
|
|
+* Fri Feb 02 2018 Jan Grulich <jgrulich@redhat.com> - 0.11.8-2
|
|
|
|
+- Fix broken cmake for Qt library
|
|
|
|
+
|
|
|
|
+* Fri Jan 26 2018 Rex Dieter <rdieter@fedoraproject.org> - 0.11.8-1
|
|
|
|
+- 0.11.8
|
|
|
|
+
|
|
|
|
+* Fri Dec 29 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.11.7-2
|
|
|
|
+- use metainfo dir for f28+
|
|
|
|
+
|
|
|
|
+* Fri Nov 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.11.7-1
|
|
|
|
+- 0.11.7
|
|
|
|
+
|
|
|
|
+* Mon Oct 02 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.11.6-1
|
|
|
|
+- 0.11.6
|
|
|
|
+
|
|
|
|
+* Thu Sep 14 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.11.5-4
|
|
|
|
+- pull in upstream vala workaround
|
|
|
|
+
|
|
|
|
+* Thu Sep 14 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.11.5-3
|
|
|
|
+- hack around broken vala bindings
|
|
|
|
+
|
|
|
|
+* Tue Sep 12 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.11.5-2
|
|
|
|
+- use file triggers for cache regen
|
|
|
|
+
|
|
|
|
+* Mon Sep 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.11.5-1
|
|
|
|
+- 0.11.5 (#1486970)
|
|
|
|
+
|
|
|
|
+* Thu Sep 07 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.11.4-1
|
|
|
|
+- 0.11.4 (#1486970)
|
|
|
|
+
|
|
|
|
+* Sun Aug 06 2017 Björn Esser <besser82@fedoraproject.org> - 0.11.2-4
|
|
|
|
+- Rebuilt for AutoReq cmake-filesystem
|
|
|
|
+
|
|
|
|
+* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.2-3
|
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
+
|
|
|
|
+* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.2-2
|
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
+
|
|
|
|
+* Wed Jul 19 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.11.2-1
|
|
|
|
+- 0.11.2
|
|
|
|
+
|
|
|
|
+* Mon Jul 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.11.1-1
|
|
|
|
+- 0.11.1
|
|
|
|
+
|
|
|
|
+* Fri May 05 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.11.0-1
|
|
|
|
+- 0.11.0
|
|
|
|
+
|
|
|
|
+* Wed Apr 05 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.10.6-1
|
|
|
|
+- 0.10.6
|
|
|
|
+
|
|
|
|
+* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.5-2
|
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
+
|
|
|
|
+* Mon Jan 02 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.10.5-1
|
|
|
|
+- 0.10.5
|
|
|
|
+
|
|
|
|
+* Thu Dec 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.10.4-1
|
|
|
|
+- 0.10.4
|
|
|
|
+
|
|
|
|
+* Tue Nov 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.10.3-4
|
|
|
|
+- use /usr/share/appdata, improve /var/cache/app-info
|
|
|
|
+
|
|
|
|
+* Mon Nov 14 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.10.3-2
|
|
|
|
+- pull in upstream crash fix
|
|
|
|
+
|
|
|
|
+* Tue Nov 01 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.10.3-1
|
|
|
|
+- 0.10.3
|
|
|
|
+- update scriptlets to use 'refresh' instead of 'refresh-index'
|
|
|
|
+
|
|
|
|
+* Fri Sep 30 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.10.1-3
|
|
|
|
+- s|share/appstream|share/appdata/
|
|
|
|
+
|
|
|
|
+* Sat Sep 17 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.10.1-2
|
|
|
|
+- improve description, drop no-longer-used deps
|
|
|
|
+
|
|
|
|
+* Sat Sep 17 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.10.1-1
|
|
|
|
+- 0.10.1
|
|
|
|
+
|
|
|
|
+* Thu Aug 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.9.8-3
|
|
|
|
+- pull in upstream fixes
|
|
|
|
+
|
|
|
|
+* Wed Aug 17 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.9.8-2
|
|
|
|
+- (re)enable vala support (#1367892)
|
|
|
|
+
|
|
|
|
+* Fri Aug 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.9.8-1
|
|
|
|
+- 0.9.8
|
|
|
|
+
|
|
|
|
+* Thu May 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.9.6-1
|
|
|
|
+- 0.9.6
|
|
|
|
+
|
|
|
|
+* Fri Apr 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.9.3-1
|
|
|
|
+- 0.9.3
|
|
|
|
+
|
|
|
|
+* Wed Feb 24 2016 Rex Dieter <rdieter@fedoraproject.org> 0.9.1-1
|
|
|
|
+- 0.9.1
|
|
|
|
+
|
|
|
|
+* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.0-2
|
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
+
|
|
|
|
+* Sun Dec 13 2015 Rex Dieter <rdieter@fedoraproject.org> 0.9.0-1
|
|
|
|
+- 0.9.0
|
|
|
|
+
|
|
|
|
+* Sun Dec 13 2015 Rex Dieter <rdieter@fedoraproject.org> 0.8.6-1
|
|
|
|
+- 0.8.6
|
|
|
|
+
|
|
|
|
+* Tue Sep 29 2015 Rex Dieter <rdieter@fedoraproject.org> 0.8.4-3
|
|
|
|
+- Don't abort hitting unknown appstream tags (#1267312)
|
|
|
|
+
|
|
|
|
+* Wed Sep 09 2015 Rex Dieter <rdieter@fedoraproject.org> 0.8.4-2
|
|
|
|
+- polish scriptlets
|
|
|
|
+- use --force in %%post
|
|
|
|
+- use %%triggerun -- appstream-data (only on upgrades)
|
|
|
|
+- ignore errors, redirect output to /dev/null
|
|
|
|
+
|
|
|
|
+* Tue Sep 08 2015 Rex Dieter <rdieter@fedoraproject.org> 0.8.4-1
|
|
|
|
+- 0.8.4, refresh-index whenever appstream-data is updated too
|
|
|
|
+
|
|
|
|
+* Thu Sep 03 2015 Rex Dieter <rdieter@fedoraproject.org> 0.8.3-2
|
|
|
|
+- -devel: fix doc handling, omit gtk-doc symlink (for now)
|
|
|
|
+
|
|
|
|
+* Thu Sep 03 2015 Rex Dieter <rdieter@fedoraproject.org> 0.8.3-1
|
|
|
|
+- 0.8.3
|
|
|
|
+
|
|
|
|
+* Sat Jun 27 2015 Rex Dieter <rdieter@fedoraproject.org> 0.8.2-1
|
|
|
|
+- 0.8.2
|
|
|
|
+
|
|
|
|
+* Sat Jun 27 2015 Rex Dieter <rdieter@fedoraproject.org> 0.8.1-1
|
|
|
|
+- 0.8.1
|
|
|
|
+
|
|
|
|
+* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.0-3
|
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
+
|
|
|
|
+* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.8.0-2
|
|
|
|
+- Rebuilt for GCC 5 C++11 ABI change
|
|
|
|
+
|
|
|
|
+* Wed Jan 28 2015 Rex Dieter <rdieter@fedoraproject.org> 0.8.0-1
|
|
|
|
+- 0.8.0
|
|
|
|
+
|
|
|
|
+* Wed Jan 21 2015 Rex Dieter <rdieter@fedoraproject.org> 0.7.6-1
|
|
|
|
+- 0.7.6
|
|
|
|
+
|
|
|
|
+* Wed Jan 21 2015 Rex Dieter <rdieter@fedoraproject.org> 0.7.5-2
|
|
|
|
+- -qt: Qt5 support (drop deprecated Qt4-based bindings)
|
|
|
|
+
|
|
|
|
+* Tue Jan 13 2015 Rex Dieter <rdieter@fedoraproject.org> 0.7.5-1
|
|
|
|
+- 0.7.5
|
|
|
|
+
|
|
|
|
+* Mon Oct 13 2014 Rex Dieter <rdieter@fedoraproject.org> - 0.7.3-1
|
|
|
|
+- 0.7.3
|
|
|
|
+- omit vala support (for now, build broken)
|
|
|
|
+
|
|
|
|
+* Tue Sep 30 2014 Rex Dieter <rdieter@fedoraproject.org> 0.7.2-2
|
|
|
|
+- pull in some upstream fixes, fix %%posttrans scriptlet
|
|
|
|
+
|
|
|
|
+* Tue Sep 30 2014 Rex Dieter <rdieter@fedoraproject.org> 0.7.2-1
|
|
|
|
+- 0.7.2, ready qt5 support (not enabled yet)
|
|
|
|
+
|
|
|
|
+* Fri Sep 12 2014 Rex Dieter <rdieter@fedoraproject.org> 0.7.1-1
|
|
|
|
+- 0.7.1
|
|
|
|
+
|
|
|
|
+* Wed Aug 20 2014 Rex Dieter <rdieter@fedoraproject.org> 0.7.0-4
|
|
|
|
+- enable Qt bindings support
|
|
|
|
+
|
|
|
|
+* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-3
|
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
+
|
|
|
|
+* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 0.7.0-2
|
|
|
|
+- Rebuilt for gobject-introspection 1.41.4
|
|
|
|
+
|
|
|
|
+* Wed Jul 16 2014 Rex Dieter <rdieter@fedoraproject.org> 0.7.0-1
|
|
|
|
+- 0.7.0
|
|
|
|
+
|
|
|
|
+* Sat Jun 28 2014 Rex Dieter <rdieter@fedoraproject.org> 0.6.2-6
|
|
|
|
+- Requires: appstream-data
|
|
|
|
+
|
|
|
|
+* Sat Jun 28 2014 Rex Dieter <rdieter@fedoraproject.org> 0.6.2-5
|
|
|
|
+- backport upstream commit to fix appstream-index hang (#1098306)
|
|
|
|
+
|
|
|
|
+* Fri Jun 20 2014 Rex Dieter <rdieter@fedoraproject.org> 0.6.2-4
|
|
|
|
+- appstream-index scriptlet hanging, skip for now (#1098306)
|
|
|
|
+
|
|
|
|
+* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.2-3
|
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
+
|
|
|
|
+* Thu May 15 2014 Rex Dieter <rdieter@fedoraproject.org> 0.6.2-2
|
|
|
|
+- update URL
|
|
|
|
+
|
|
|
|
+* Mon May 12 2014 Rex Dieter <rdieter@fedoraproject.org> 0.6.2-1
|
|
|
|
+- 0.6.2
|
|
|
|
+
|
|
|
|
+* Sat Apr 26 2014 Rex Dieter <rdieter@fedoraproject.org> 0.6.1-1
|
|
|
|
+- Appstream-0.6.1, -vala support lives!
|
|
|
|
+
|
|
|
|
+* Sat Apr 19 2014 Rex Dieter <rdieter@fedoraproject.org> - 0.6-1
|
|
|
|
+- Appstream-0.6
|
|
|
|
+- Obsoletes: appstream-vala (no longer provided)
|
|
|
|
+
|
|
|
|
+* Sun Feb 23 2014 Rex Dieter <rdieter@fedoraproject.org> 0.5-1
|
|
|
|
+- Appstream-0.5
|
|
|
|
+
|
|
|
|
+* Fri Jan 31 2014 Rex Dieter <rdieter@fedoraproject.org> 0.4.0-3
|
|
|
|
+- rebuild (PackageKit)
|
|
|
|
+
|
|
|
|
+* Mon Nov 04 2013 Rex Dieter <rdieter@fedoraproject.org> 0.4.0-2
|
|
|
|
+- -vala subpkg
|
|
|
|
+- own %%{_libdir}/girepository-1.0, %%{_libdir}/packagekit-plugins (until someone better comes along)
|
|
|
|
+
|
|
|
|
+* Sun Nov 03 2013 Rex Dieter <rdieter@fedoraproject.org> 0.4.0-1
|
|
|
|
+- AppStream-0.4.0
|
|
|
|
+
|
|
|
|
+
|