gnome-software/gnome-software.spec

205 lines
6.9 KiB
RPMSpec
Raw Normal View History

2014-04-28 11:37:55 +00:00
%define distrotag 21
2014-02-03 10:32:53 +00:00
2013-09-02 15:44:12 +00:00
Summary: A software center for GNOME
Name: gnome-software
2014-04-28 10:54:49 +00:00
Version: 3.13.1
Release: 4%{?dist}
2013-09-02 15:44:12 +00:00
License: GPLv2+
Group: Applications/System
URL: https://wiki.gnome.org/Apps/Software
2014-04-28 12:01:37 +00:00
Source0: http://download.gnome.org/sources/gnome-software/3.13/%{name}-%{version}.tar.xz
2014-02-03 10:32:53 +00:00
Source1: http://people.freedesktop.org/~hughsient/temp/fedora-%{?distrotag}.xml.gz
Source2: http://people.freedesktop.org/~hughsient/temp/fedora-%{?distrotag}-icons.tar.gz
2013-09-02 15:44:12 +00:00
# already upstream
Patch0: 0002-Fix-the-formatting-specifiers-for-the-i386-build-wit.patch
Requires: epiphany-runtime
Requires: gsettings-desktop-schemas
2014-02-03 10:32:53 +00:00
Requires: PackageKit
2013-09-02 15:44:12 +00:00
BuildRequires: gettext
BuildRequires: intltool
2013-09-02 18:59:57 +00:00
BuildRequires: libxslt
BuildRequires: docbook-style-xsl
2013-09-02 15:44:12 +00:00
BuildRequires: desktop-file-utils
2013-11-19 09:14:15 +00:00
BuildRequires: glib2-devel >= 2.39.1
2013-09-02 15:44:12 +00:00
BuildRequires: gtk3-devel >= 3.9.12
2013-09-13 20:01:54 +00:00
BuildRequires: libnotify-devel
2013-09-02 15:44:12 +00:00
BuildRequires: PackageKit-glib-devel >= 0.8.10
2013-10-29 10:36:22 +00:00
BuildRequires: libsoup-devel
2014-03-20 09:47:08 +00:00
BuildRequires: gnome-desktop3-devel
2013-11-19 17:12:20 +00:00
BuildRequires: gsettings-desktop-schemas-devel
2014-04-28 12:01:31 +00:00
BuildRequires: libappstream-glib-devel
2013-10-29 10:36:22 +00:00
# this is not a library version
2014-02-03 10:32:53 +00:00
%define gs_plugin_version 3
2013-09-02 15:44:12 +00:00
%description
gnome-software is an application that makes it easy to add, remove
and update software in the GNOME desktop.
%prep
%setup -q
%patch0 -p1 -b .upstream
2013-09-02 15:44:12 +00:00
%build
2014-04-28 11:37:55 +00:00
%configure --disable-static
2013-09-02 15:44:12 +00:00
make %{?_smp_mflags}
%install
%make_install
2013-10-29 10:36:22 +00:00
%__rm %{buildroot}%{_libdir}/gs-plugins-%{gs_plugin_version}/*.la
2013-09-13 16:16:43 +00:00
# install AppStream data for Fedora
DESTDIR=%{buildroot} appstream-util install %{SOURCE1} %{SOURCE2}
2013-09-02 15:44:12 +00:00
2013-10-29 10:36:22 +00:00
# make the software center load faster
2014-02-03 10:32:53 +00:00
desktop-file-edit %{buildroot}%{_datadir}/applications/org.gnome.Software.desktop \
2013-10-29 10:36:22 +00:00
--set-key=X-AppInstall-Package --set-value=%{name}
2013-09-02 15:44:12 +00:00
%find_lang %name --with-gnome
%check
2013-10-29 10:36:22 +00:00
desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
2013-09-02 15:44:12 +00:00
%post
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
%postun
if [ $1 -eq 0 ]; then
touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
fi
%posttrans
gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
%files -f %{name}.lang
%doc AUTHORS COPYING NEWS README
%{_bindir}/gnome-software
2013-10-29 10:36:22 +00:00
%{_datadir}/applications/*.desktop
2013-09-02 15:44:12 +00:00
%dir %{_datadir}/gnome-software
%{_datadir}/gnome-software/*.png
2013-09-25 07:50:48 +00:00
%{_datadir}/appdata/*.appdata.xml
2013-10-29 10:36:22 +00:00
%{_datadir}/app-info/xmls/*
2014-02-03 10:32:53 +00:00
%{_datadir}/app-info/icons/fedora-%{?distrotag}/*.png
2013-09-02 15:44:12 +00:00
%{_mandir}/man1/gnome-software.1.gz
2013-09-13 16:16:43 +00:00
%{_datadir}/icons/hicolor/*/apps/*
%{_datadir}/gnome-software/featured.ini
2013-10-29 10:36:22 +00:00
%dir %{_libdir}/gs-plugins-%{gs_plugin_version}
%{_libdir}/gs-plugins-%{gs_plugin_version}/*.so
%{_sysconfdir}/xdg/autostart/gnome-software-service.desktop
%{_datadir}/dbus-1/services/org.gnome.Software.service
%{_datadir}/gnome-shell/search-providers/gnome-software-search-provider.ini
2013-11-19 09:14:15 +00:00
%{_datadir}/glib-2.0/schemas/org.gnome.software.gschema.xml
2014-02-19 12:31:53 +00:00
%dir %{_datadir}/gnome-software/modulesets.d
%{_datadir}/gnome-software/modulesets.d/*.xml
2013-09-02 15:44:12 +00:00
%changelog
* Thu May 15 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.1-4
- Depend on gsettings-desktop-schemas
2014-05-12 12:17:50 +00:00
* Mon May 12 2014 Richard Hughes <rhughes@redhat.com> - 3.13.1-3
- Update the metadata and use appstream-util to install the metadata.
* Wed May 07 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.1-2
- Drop gnome-icon-theme dependency
2014-04-28 10:54:49 +00:00
* Mon Apr 28 2014 Richard Hughes <rhughes@redhat.com> - 3.13.1-1
- Update to 3.13.1
2014-04-11 17:37:38 +00:00
* Fri Apr 11 2014 Kalev Lember <kalevlember@gmail.com> - 3.12.1-2
- Rebuild with new metadata.
2014-04-11 15:07:00 +00:00
* Fri Apr 11 2014 Richard Hughes <rhughes@redhat.com> - 3.12.1-1
- Update to 3.12.1
2014-03-24 10:29:20 +00:00
* Mon Mar 24 2014 Richard Hughes <rhughes@redhat.com> - 3.12.0-1
- Update to 3.12.0
2014-03-20 09:23:58 +00:00
* Thu Mar 20 2014 Richard Hughes <rhughes@redhat.com> - 3.11.92-1
- Update to 3.11.92
2014-03-18 15:05:00 +00:00
* Tue Mar 18 2014 Richard Hughes <rhughes@redhat.com> - 3.11.91-2
- Rebuild with new metadata.
2014-03-08 17:50:06 +00:00
* Sat Mar 08 2014 Richard Hughes <rhughes@redhat.com> - 3.11.91-1
- Update to 3.11.91
2014-02-18 17:14:05 +00:00
* Tue Feb 18 2014 Richard Hughes <rhughes@redhat.com> - 3.11.90-1
- Update to 3.11.90
* Mon Feb 03 2014 Richard Hughes <rhughes@redhat.com> - 3.11.5-2
- Require epiphany-runtime rather than the full application
2014-02-03 10:32:53 +00:00
* Mon Feb 03 2014 Richard Hughes <rhughes@redhat.com> - 3.11.5-1
- Update to 3.11.5
* Thu Jan 30 2014 Richard Hughes <rhughes@redhat.com> - 3.11.4-3
- Rebuild for libpackagekit-glib soname bump
* Wed Jan 22 2014 Richard Hughes <rhughes@redhat.com> - 3.11.4-2
- Rebuild with metadata that has the correct screenshot url.
2014-01-16 15:02:28 +00:00
* Thu Jan 16 2014 Richard Hughes <rhughes@redhat.com> - 3.11.4-1
- Update to 3.11.4
2013-12-17 11:45:54 +00:00
* Tue Dec 17 2013 Richard Hughes <rhughes@redhat.com> - 3.11.3-1
- Update to 3.11.3
2013-11-19 09:57:04 +00:00
* Tue Nov 19 2013 Richard Hughes <rhughes@redhat.com> - 3.11.2-1
- Update to 3.11.2
2013-10-29 01:29:00 +00:00
* Tue Oct 29 2013 Richard Hughes <rhughes@redhat.com> - 3.11.1-1
- Update to 3.11.1
2013-10-29 10:36:22 +00:00
- Add a gnome shell search provider
- Add a module to submit the user rating to the fedora-tagger web service
- Add support for 'missing' codecs that we know exist but we can't install
- Add support for epiphany web applications
- Handle offline installation sensibly
- Save the user rating if the user clicks the rating stars
- Show a modal error message if install or remove actions failed
- Show a star rating on the application details page
- Show font screenshots
- Show more detailed version numbers when required
- Show screenshots to each application
2013-10-29 01:29:00 +00:00
2013-09-25 07:50:48 +00:00
* Wed Sep 25 2013 Richard Hughes <richard@hughsie.com> 3.10.0-1
- New upstream release.
- New metadata for fedora, updates and updates-testing
- Add a plugin to query the PackageKit prepared-update file directly
- Do not clear the offline-update trigger if rebooting succeeded
- Do not load incompatible projects when parsing AppStream data
- Lots of updated translations
- Show the window right away when starting
2013-09-13 16:16:43 +00:00
* Fri Sep 13 2013 Richard Hughes <richard@hughsie.com> 3.9.3-1
- New upstream release.
- Lots of new and fixed UI and updated metadata for Fedora 20
2013-09-03 21:32:58 +00:00
* Tue Sep 03 2013 Richard Hughes <richard@hughsie.com> 3.9.2-1
- New upstream release.
- Allow stock items in the AppStream XML
- Extract the AppStream URL and description from the XML
- Only present the window when the overview is complete
- Return the subcategories sorted by name
2013-09-02 18:50:01 +00:00
* Mon Sep 02 2013 Richard Hughes <richard@hughsie.com> 3.9.1-1
- New upstream release which is a technical preview for the alpha.
2013-09-02 15:44:12 +00:00
* Sun Sep 01 2013 Richard Hughes <richard@hughsie.com> 0.1-3
- Use buildroot not RPM_BUILD_ROOT
- Own all gnome-software directories
- Drop gtk-update-icon-cache requires and the mime database functionality
* Thu Aug 29 2013 Richard Hughes <richard@hughsie.com> 0.1-2
- Add call to desktop-file-validate and fix other review comments.
* Wed Aug 28 2013 Richard Hughes <richard@hughsie.com> 0.1-1
- First release for Fedora package review