Update to 3.11.3
This commit is contained in:
parent
799b78aecc
commit
5b8cb0c697
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
/gnome-logs-3.11.2.tar.xz
|
/gnome-logs-3.11.2.tar.xz
|
||||||
|
/gnome-logs-3.11.3.tar.xz
|
||||||
|
@ -1,24 +0,0 @@
|
|||||||
diff -urN gnome-logs-3.11.2.old/aclocal.m4 gnome-logs-3.11.2/aclocal.m4
|
|
||||||
--- gnome-logs-3.11.2.old/aclocal.m4 2013-11-18 22:40:00.000000000 +0000
|
|
||||||
+++ gnome-logs-3.11.2/aclocal.m4 2013-12-12 19:16:33.396241488 +0000
|
|
||||||
@@ -1385,7 +1385,7 @@
|
|
||||||
mostlyclean-am: clean-appdata-xml
|
|
||||||
|
|
||||||
%.appdata.valid: %.appdata.xml
|
|
||||||
- $(AM_V_GEN) if test -f "$<"; then d=; else d="$(srcdir)/"; fi; $(APPDATA_VALIDATE) $${d}$< && touch [$]@
|
|
||||||
+ $(AM_V_GEN) if test -f "$<"; then d=; else d="$(srcdir)/"; fi; $(APPDATA_VALIDATE) --nonet $${d}$< && touch [$]@
|
|
||||||
|
|
||||||
all-am: $(appdata_XML:.appdata.xml=.appdata.valid)
|
|
||||||
uninstall-am: uninstall-appdata-xml
|
|
||||||
diff -urN gnome-logs-3.11.2.old/configure gnome-logs-3.11.2/configure
|
|
||||||
--- gnome-logs-3.11.2.old/configure 2013-11-18 22:40:00.000000000 +0000
|
|
||||||
+++ gnome-logs-3.11.2/configure 2013-12-12 19:21:14.491248666 +0000
|
|
||||||
@@ -4618,7 +4618,7 @@
|
|
||||||
mostlyclean-am: clean-appdata-xml
|
|
||||||
|
|
||||||
%.appdata.valid: %.appdata.xml
|
|
||||||
- $(AM_V_GEN) if test -f "$<"; then d=; else d="$(srcdir)/"; fi; $(APPDATA_VALIDATE) $${d}$< && touch $@
|
|
||||||
+ $(AM_V_GEN) if test -f "$<"; then d=; else d="$(srcdir)/"; fi; $(APPDATA_VALIDATE) --nonet $${d}$< && touch $@
|
|
||||||
|
|
||||||
all-am: $(appdata_XML:.appdata.xml=.appdata.valid)
|
|
||||||
uninstall-am: uninstall-appdata-xml
|
|
@ -1,5 +1,5 @@
|
|||||||
Name: gnome-logs
|
Name: gnome-logs
|
||||||
Version: 3.11.2
|
Version: 3.11.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A log viewer for the systemd journal
|
Summary: A log viewer for the systemd journal
|
||||||
|
|
||||||
@ -7,13 +7,13 @@ Group: Applications/System
|
|||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
URL: https://wiki.gnome.org/Apps/Logs
|
URL: https://wiki.gnome.org/Apps/Logs
|
||||||
Source0: http://download.gnome.org/sources/gnome-logs/3.11/%{name}-%{version}.tar.xz
|
Source0: http://download.gnome.org/sources/gnome-logs/3.11/%{name}-%{version}.tar.xz
|
||||||
# Fixed with appdata-tools > 0.1.6
|
|
||||||
Patch0: gnome-logs-fix-appdata-xml-m4.patch
|
|
||||||
|
|
||||||
BuildRequires: appdata-tools
|
|
||||||
BuildRequires: desktop-file-utils
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: docbook-dtds
|
||||||
|
BuildRequires: docbook-style-xsl
|
||||||
BuildRequires: gtk3-devel
|
BuildRequires: gtk3-devel
|
||||||
BuildRequires: intltool
|
BuildRequires: intltool
|
||||||
|
BuildRequires: libxslt
|
||||||
BuildRequires: systemd-devel
|
BuildRequires: systemd-devel
|
||||||
Requires: gsettings-desktop-schemas
|
Requires: gsettings-desktop-schemas
|
||||||
|
|
||||||
@ -22,11 +22,10 @@ A log viewer for the systemd journal.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-maintainer-mode
|
%configure
|
||||||
make V=1 %{?_smp_mflags}
|
make V=1 %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
@ -39,13 +38,33 @@ make V=1 %{?_smp_mflags}
|
|||||||
desktop-file-validate %{buildroot}/%{_datadir}/applications/gnome-logs.desktop
|
desktop-file-validate %{buildroot}/%{_datadir}/applications/gnome-logs.desktop
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
/bin/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 || :
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
%posttrans
|
||||||
|
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||||
|
|
||||||
|
|
||||||
%files -f gnome-logs.lang
|
%files -f gnome-logs.lang
|
||||||
%doc AUTHORS COPYING README NEWS
|
%doc AUTHORS COPYING README NEWS
|
||||||
%{_bindir}/gnome-logs
|
%{_bindir}/gnome-logs
|
||||||
%{_datadir}/appdata/gnome-logs.appdata.xml
|
%{_datadir}/appdata/gnome-logs.appdata.xml
|
||||||
%{_datadir}/applications/gnome-logs.desktop
|
%{_datadir}/applications/gnome-logs.desktop
|
||||||
|
%{_datadir}/icons/hicolor/*/apps/gnome-logs.png
|
||||||
|
%{_mandir}/man1/gnome-logs.1*
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Dec 17 2013 David King <amigadave@amigadave.com> - 3.11.3-1
|
||||||
|
- Update to 3.11.3
|
||||||
|
|
||||||
* Thu Dec 12 2013 David King <amigadave@amigadave.com> - 3.11.2-1
|
* Thu Dec 12 2013 David King <amigadave@amigadave.com> - 3.11.2-1
|
||||||
- New package.
|
- New package.
|
||||||
|
Loading…
Reference in New Issue
Block a user