summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2024-08-02 07:09:52 +0000
committerCoprDistGit <infra@openeuler.org>2024-08-02 07:09:52 +0000
commit10ba0644c3cbcbffaa0cc945ca1eb835f32eb1ce (patch)
treea400b8b2baa3b72defe82b5be8570e57edbf75c2
parentb71e9fb728ca346cfe112bb013992336c451d01b (diff)
automatic import of gnome-logsopeneuler24.03_LTSopeneuler23.09
-rw-r--r--.gitignore1
-rw-r--r--0001-gl-application.c-add-four-shortcuts.patch101
-rw-r--r--0001-gl-window-Set-default-width-height.patch55
-rw-r--r--0002-help-overlay.ui-Add-three-shortcuts.patch84
-rw-r--r--gnome-logs.spec385
-rw-r--r--sources1
6 files changed, 627 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..630f29b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/gnome-logs-3.36.0.tar.xz
diff --git a/0001-gl-application.c-add-four-shortcuts.patch b/0001-gl-application.c-add-four-shortcuts.patch
new file mode 100644
index 0000000..3b24d6e
--- /dev/null
+++ b/0001-gl-application.c-add-four-shortcuts.patch
@@ -0,0 +1,101 @@
+From 8b7f222e75d006cc3573c9b545c26d6fac56b5ce Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Sabri=20=C3=9Cnal?= <libreajans@gmail.com>
+Date: Fri, 3 Apr 2020 15:09:26 +0300
+Subject: [PATCH 1/2] gl-application.c: add four shortcuts
+
+F1: Help
+Ctrl+E: Export
+Ctrl+N: New window
+Ctrl+question: Keyboard shortcuts
+---
+ src/gl-application.c | 13 +++++++++++++
+ 1 file changed, 13 insertions(+)
+
+diff --git a/src/gl-application.c b/src/gl-application.c
+index c20052c..b2ef1f7 100644
+--- a/src/gl-application.c
++++ b/src/gl-application.c
+@@ -178,67 +178,80 @@ on_monospace_font_name_changed (GSettings *settings,
+ }
+ }
+
+ static GActionEntry actions[] = {
+ { "new-window", on_new_window },
+ { "help", on_help },
+ { "about", on_about }
+ };
+
+ static void
+ gl_application_startup (GApplication *application)
+ {
+ g_action_map_add_action_entries (G_ACTION_MAP (application), actions,
+ G_N_ELEMENTS (actions), application);
+
+ /* Calls gtk_init() with no arguments. */
+ G_APPLICATION_CLASS (gl_application_parent_class)->startup (application);
+
+ /* gtk_init() calls setlocale(), so gettext must be called after that. */
+ g_set_application_name (_(PACKAGE_NAME));
+ gtk_window_set_default_icon_name (PACKAGE_TARNAME);
+ }
+
+ static void
+ gl_application_activate (GApplication *application)
+ {
+ GtkWidget *window;
+ GlApplicationPrivate *priv;
+ const gchar * const close_accel[] = { "<Primary>w", NULL };
+ const gchar * const search_accel[] = { "<Primary>f", NULL };
++ const gchar * const export_accel[] = { "<Primary>e", NULL };
++ const gchar * const help_accel[] = { "F1", NULL };
++ const gchar * const new_window_accel[] = { "<Primary>n", NULL };
++ const gchar * const help_overlay_accel[] = { "<Primary>question", NULL };
+
+ window = gl_window_new (GTK_APPLICATION (application));
+ gtk_widget_show (window);
+ gtk_application_set_accels_for_action (GTK_APPLICATION (application),
+ "win.close", close_accel);
+ gtk_application_set_accels_for_action (GTK_APPLICATION (application),
+ "win.search", search_accel);
++ gtk_application_set_accels_for_action (GTK_APPLICATION (application),
++ "win.export", export_accel);
++ gtk_application_set_accels_for_action (GTK_APPLICATION (application),
++ "app.help", help_accel);
++ gtk_application_set_accels_for_action (GTK_APPLICATION (application),
++ "app.new-window", new_window_accel);
++ gtk_application_set_accels_for_action (GTK_APPLICATION (application),
++ "win.show-help-overlay",
++ help_overlay_accel);
+
+ priv = gl_application_get_instance_private (GL_APPLICATION (application));
+
+ on_monospace_font_name_changed (priv->desktop, DESKTOP_MONOSPACE_FONT_NAME,
+ priv);
+ }
+
+ static const GOptionEntry options[] =
+ {
+ { "version", 'v', 0, G_OPTION_ARG_NONE, NULL,
+ N_("Print version information and exit"), NULL },
+ { NULL }
+ };
+
+ static gint
+ gl_application_handle_local_options (GApplication *application,
+ GVariantDict *options)
+ {
+ if (g_variant_dict_contains (options, "version"))
+ {
+ g_print ("%s - Version %s\n", g_get_application_name (), PACKAGE_VERSION);
+ return 0;
+ }
+
+ return -1;
+ }
+
+ static void
+ gl_application_finalize (GObject *object)
+ {
+--
+2.35.1
+
diff --git a/0001-gl-window-Set-default-width-height.patch b/0001-gl-window-Set-default-width-height.patch
new file mode 100644
index 0000000..3e42edf
--- /dev/null
+++ b/0001-gl-window-Set-default-width-height.patch
@@ -0,0 +1,55 @@
+From ef4c13a2ec49d94495370bcdb0870252ba43bfd5 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Guido=20G=C3=BCnther?= <agx@sigxcpu.org>
+Date: Tue, 27 Jul 2021 11:35:09 +0200
+Subject: [PATCH] gl-window: Set default-{width,height}
+
+Instead of limiting the minimal size rather make those values the
+default so the window can shring to smaller sizes on e.g. phones.
+---
+ data/gl-window.ui | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/data/gl-window.ui b/data/gl-window.ui
+index e20569d..28e3fc8 100644
+--- a/data/gl-window.ui
++++ b/data/gl-window.ui
+@@ -1,34 +1,34 @@
+ <interface domain="gnome-logs">
+ <template class="GlWindow" parent="GtkApplicationWindow">
+- <property name="height-request">780</property>
+- <property name="width-request">1200</property>
++ <property name="default-width">1200</property>
++ <property name="default-height">600</property>
+ <signal name="key-press-event" handler="on_gl_window_key_press_event"/>
+ <child type="titlebar">
+ <object class="GlEventToolbar" id="event_toolbar">
+ </object>
+ </child>
+ <child>
+ <object class="GtkBox" id="event_box">
+ <property name="orientation">vertical</property>
+ <property name="visible">True</property>
+ <child>
+ <object class="GtkInfoBar" id="info_bar">
+ <property name="message-type">GTK_MESSAGE_ERROR</property>
+ <child>
+ <object class="GtkButtonBox" id="action_area">
+ <property name="visible">True</property>
+ <property name="orientation">horizontal</property>
+ <property name="layout_style">center</property>
+ <child>
+ <object class="GtkButton" id="help_button">
+ <property name="visible">True</property>
+ <property name="halign">center</property>
+ <property name="label" translatable="yes">Help</property>
+ <signal name="clicked" handler="on_help_button_clicked" object="GlWindow"/>
+ </object>
+ </child>
+ <child>
+ <object class="GtkButton" id="ignore_button">
+ <property name="visible">True</property>
+ <property name="halign">center</property>
+ <property name="label" translatable="yes">Ignore</property>
+--
+2.35.1
+
diff --git a/0002-help-overlay.ui-Add-three-shortcuts.patch b/0002-help-overlay.ui-Add-three-shortcuts.patch
new file mode 100644
index 0000000..0c3a2d1
--- /dev/null
+++ b/0002-help-overlay.ui-Add-three-shortcuts.patch
@@ -0,0 +1,84 @@
+From df0c7e7e2475c05acac5bb491788e72eb5b850cb Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Sabri=20=C3=9Cnal?= <libreajans@gmail.com>
+Date: Fri, 3 Apr 2020 15:17:28 +0300
+Subject: [PATCH 2/2] help-overlay.ui: Add three shortcuts
+
+F1: Show help
+Ctrl+question: Keyboard shortcuts
+Ctrl+e: Export logs to a file
+---
+ data/help-overlay.ui | 23 ++++++++++++++++++++++-
+ 1 file changed, 22 insertions(+), 1 deletion(-)
+
+diff --git a/data/help-overlay.ui b/data/help-overlay.ui
+index 881503e..4427e7c 100644
+--- a/data/help-overlay.ui
++++ b/data/help-overlay.ui
+@@ -1,42 +1,63 @@
+ <interface domain="gnome-logs">
+ <object class="GtkShortcutsWindow" id="help_overlay">
+ <child>
+ <object class="GtkShortcutsSection">
+ <property name="visible">True</property>
+ <child>
+ <object class="GtkShortcutsGroup">
+ <property name="title" translatable="yes" context="shortcut window">General</property>
+ <property name="visible">True</property>
+ <child>
+ <object class="GtkShortcutsShortcut">
+ <property name="accelerator">&lt;Primary&gt;n</property>
+ <property name="title" translatable="yes" context="shortcut window">Open a new window</property>
+ <property name="visible">True</property>
+ </object>
+ </child>
+ <child>
+ <object class="GtkShortcutsShortcut">
+ <property name="accelerator">&lt;Primary&gt;w</property>
+ <property name="title" translatable="yes" context="shortcut window">Close a window</property>
+ <property name="visible">True</property>
+ </object>
+ </child>
++ <child>
++ <object class="GtkShortcutsShortcut">
++ <property name="accelerator">F1</property>
++ <property name="title" translatable="yes" context="shortcut window">Show help</property>
++ <property name="visible">True</property>
++ </object>
++ </child>
++ <child>
++ <object class="GtkShortcutsShortcut">
++ <property name="accelerator">&lt;Primary&gt;question</property>
++ <property name="title" translatable="yes" context="shortcut window">Keyboard shorcuts</property>
++ <property name="visible">True</property>
++ </object>
++ </child>
+ </object>
+ </child>
+ <child>
+ <object class="GtkShortcutsGroup">
+- <property name="title" translatable="yes" context="shortcut window">Search</property>
++ <property name="title" translatable="yes" context="shortcut window">Application</property>
+ <property name="visible">True</property>
+ <child>
+ <object class="GtkShortcutsShortcut">
+ <property name="accelerator">&lt;Primary&gt;f</property>
+ <property name="title" translatable="yes" context="shortcut window">Find</property>
+ <property name="visible">True</property>
+ </object>
+ </child>
++ <child>
++ <object class="GtkShortcutsShortcut">
++ <property name="accelerator">&lt;Primary&gt;e</property>
++ <property name="title" translatable="yes" context="shortcut window">Export logs to a file</property>
++ <property name="visible">True</property>
++ </object>
++ </child>
+ </object>
+ </child>
+ </object>
+ </child>
+ </object>
+ </interface>
+--
+2.35.1
+
diff --git a/gnome-logs.spec b/gnome-logs.spec
new file mode 100644
index 0000000..94025e6
--- /dev/null
+++ b/gnome-logs.spec
@@ -0,0 +1,385 @@
+Name: gnome-logs
+Version: 3.36.0
+Release: 8%{?dist}
+Summary: Log viewer for the systemd journal
+
+License: GPLv3+
+URL: https://wiki.gnome.org/Apps/Logs
+Source0: https://download.gnome.org/sources/%{name}/3.36/%{name}-%{version}.tar.xz
+
+BuildRequires: desktop-file-utils
+BuildRequires: docbook-dtds
+BuildRequires: docbook-style-xsl
+BuildRequires: gcc
+BuildRequires: git
+BuildRequires: itstool
+BuildRequires: libxslt
+BuildRequires: meson
+BuildRequires: pkgconfig(gtk+-3.0)
+BuildRequires: pkgconfig(libsystemd)
+BuildRequires: /usr/bin/appstream-util
+Requires: gsettings-desktop-schemas
+
+Patch10001: 0001-gl-application.c-add-four-shortcuts.patch
+Patch10002: 0002-help-overlay.ui-Add-three-shortcuts.patch
+
+Patch20001: 0001-gl-window-Set-default-width-height.patch
+
+%description
+A log viewer for the systemd journal.
+
+%prep
+%autosetup -S git
+
+
+%build
+%meson -Dman=true
+%meson_build
+
+
+%install
+%meson_install
+%find_lang %{name} --with-gnome
+
+
+%check
+%meson_test
+
+
+%files -f %{name}.lang
+%doc AUTHORS README NEWS
+%license COPYING
+%{_bindir}/%{name}
+%{_datadir}/%{name}
+%{_datadir}/applications/org.gnome.Logs.desktop
+%{_datadir}/dbus-1/services/org.gnome.Logs.service
+%{_datadir}/glib-2.0/schemas/org.gnome.Logs.*.xml
+%{_datadir}/icons/hicolor/scalable/apps/org.gnome.Logs.svg
+%{_datadir}/icons/hicolor/symbolic/apps/org.gnome.Logs-symbolic.svg
+%{_datadir}/metainfo/org.gnome.Logs.appdata.xml
+%{_mandir}/man1/gnome-logs.1*
+
+
+%changelog
+* Wed Jan 25 2023 Ray Strode <rstrode@redhat.com> - 3.36.0-8
+- Fix window resizing
+ Resolves: #2035832
+
+* Wed Dec 14 2022 Ray Strode <rstrode@redhat.com> - 3.36.0-7
+- Fix shortcuts
+ Resolves: #2062860
+
+* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 3.36.0-6
+- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
+ Related: rhbz#1991688
+
+* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 3.36.0-5
+- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
+
+* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.36.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.36.0-3
+- Second attempt - Rebuilt for
+ https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.36.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Tue May 12 2020 David King <amigadave@amigadave.com> - 3.36.0-1
+- Update to 3.36.0 (#1834692)
+
+* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.34.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
+
+* Tue Sep 10 2019 David King <amigadave@amigadave.com> - 3.34.0-1
+- Update to 3.34.0
+
+* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.33.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
+
+* Mon May 20 2019 David King <amigadave@amigadave.com> - 3.33.2-1
+- Update to 3.33.2
+
+* Tue Apr 23 2019 David King <amigadave@amigadave.com> - 3.33.1-1
+- Update to 3.33.1 (#1702129)
+
+* Mon Apr 08 2019 Kalev Lember <klember@redhat.com> - 3.32.1-1
+- Update to 3.32.1
+
+* Mon Mar 11 2019 Kalev Lember <klember@redhat.com> - 3.32.0-1
+- Update to 3.32.0
+
+* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.31.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+
+* Mon Jan 07 2019 David King <amigadave@amigadave.com> - 3.31.4-1
+- Update to 3.31.4
+
+* Mon Dec 10 2018 David King <amigadave@amigadave.com> - 3.31.3-1
+- Update to 3.31.3
+
+* Mon Nov 12 2018 David King <amigadave@amigadave.com> - 3.31.2-1
+- Update to 3.31.2
+
+* Mon Sep 03 2018 David King <amigadave@amigadave.com> - 3.30.0-1
+- Update to 3.30.0
+
+* Tue Jul 17 2018 David King <amigadave@amigadave.com> - 3.29.4-1
+- Update to 3.29.4 (#1601640)
+
+* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.29.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
+* Tue Apr 17 2018 David King <amigadave@amigadave.com> - 3.29.1-1
+- Update to 3.29.1 (#1568395)
+
+* Mon Mar 12 2018 Kalev Lember <klember@redhat.com> - 3.28.0-1
+- Update to 3.28.0
+
+* Tue Mar 06 2018 David King <amigadave@amigadave.com> - 3.27.92-1
+- Update to 3.27.92
+
+* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.27.90-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
+
+* Mon Feb 05 2018 David King <amigadave@amigadave.com> - 3.27.90-1
+- Update to 3.27.90
+
+* Mon Jan 08 2018 David King <amigadave@amigadave.com> - 3.27.4-1
+- Update to 3.27.4
+
+* Fri Jan 05 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.27.3-2
+- Remove obsolete scriptlets
+
+* Mon Dec 11 2017 David King <amigadave@amigadave.com> - 3.27.3-1
+- Update to 3.27.3
+
+* Mon Nov 13 2017 David King <amigadave@amigadave.com> - 3.27.2-1
+- Update to 3.27.2 (#1512514)
+
+* Fri Oct 20 2017 David King <amigadave@amigadave.com> - 3.27.1-1
+- Update to 3.27.1 (#1504344)
+
+* Mon Sep 11 2017 David King <amigadave@amigadave.com> - 3.26.0-1
+- Update to 3.26.0
+
+* Mon Sep 04 2017 David King <amigadave@amigadave.com> - 3.25.92-1
+- Update to 3.25.92
+
+* Mon Aug 21 2017 David King <amigadave@amigadave.com> - 3.25.91-1
+- Update to 3.25.91
+
+* Tue Aug 08 2017 David King <amigadave@amigadave.com> - 3.25.90-1
+- Update to 3.25.90
+
+* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.25.4-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
+
+* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.25.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
+* Thu Jul 20 2017 David King <amigadave@amigadave.com> - 3.25.4-1
+- Update to 3.25.4
+
+* Tue Apr 25 2017 David King <amigadave@amigadave.com> - 3.25.1-1
+- Update to 3.25.1
+
+* Mon Apr 10 2017 David King <amigadave@amigadave.com> - 3.24.1-1
+- Update to 3.24.1
+
+* Tue Mar 21 2017 David King <amigadave@amigadave.com> - 3.24.0-1
+- Update to 3.24.0
+
+* Tue Feb 28 2017 David King <amigadave@amigadave.com> - 3.23.91-1
+- Update to 3.23.91 (#1427344)
+
+* Tue Feb 14 2017 David King <amigadave@amigadave.com> - 3.23.90-1
+- Update to 3.23.90 (#1421886)
+
+* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.23.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
+* Tue Jan 17 2017 David King <amigadave@amigadave.com> - 3.23.4-1
+- Update to 3.23.4
+
+* Mon Dec 12 2016 David King <amigadave@amigadave.com> - 3.23.3-1
+- Update to 3.23.3
+
+* Tue Nov 22 2016 David King <amigadave@amigadave.com> - 3.23.2-1
+- Update to 3.23.2
+
+* Tue Oct 25 2016 David King <amigadave@amigadave.com> - 3.23.1-1
+- Update to 3.23.1
+
+* Wed Oct 12 2016 Kalev Lember <klember@redhat.com> - 3.22.1-2
+- Don't set group tags
+- Use make_install macro
+
+* Mon Oct 10 2016 David King <amigadave@amigadave.com> - 3.22.1-1
+- Update to 3.22.1
+
+* Tue Sep 20 2016 David King <amigadave@amigadave.com> - 3.22.0-1
+- Update to 3.22.0
+
+* Tue Sep 13 2016 David King <amigadave@amigadave.com> - 3.21.92-1
+- Update to 3.21.92
+
+* Tue Aug 16 2016 David King <amigadave@amigadave.com> - 3.21.90-1
+- Update to 3.21.90
+
+* Tue Jun 21 2016 David King <amigadave@amigadave.com> - 3.21.3-1
+- Update to 3.21.3
+
+* Mon Apr 11 2016 David King <amigadave@amigadave.com> - 3.20.1-1
+- Update to 3.20.1
+
+* Tue Mar 22 2016 David King <amigadave@amigadave.com> - 3.20.0-1
+- Update to 3.20.0
+
+* Tue Mar 15 2016 David King <amigadave@amigadave.com> - 3.19.92-1
+- Update to 3.19.92
+
+* Mon Feb 29 2016 David King <amigadave@amigadave.com> - 3.19.91-1
+- Update to 3.19.91
+
+* Tue Feb 16 2016 David King <amigadave@amigadave.com> - 3.19.90-1
+- Update to 3.19.90
+
+* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.19.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
+
+* Mon Jan 18 2016 David King <amigadave@amigadave.com> - 3.19.4-1
+- Update to 3.19.4
+
+* Mon Dec 14 2015 David King <amigadave@amigadave.com> - 3.19.3-1
+- Update to 3.19.3
+
+* Tue Nov 24 2015 David King <amigadave@amigadave.com> - 3.19.2-1
+- Update to 3.19.2
+
+* Mon Oct 26 2015 David King <amigadave@amigadave.com> - 3.19.1-1
+- Update to 3.19.1
+
+* Tue Oct 13 2015 David King <amigadave@amigadave.com> - 3.18.1-1
+- Update to 3.18.1
+
+* Tue Sep 22 2015 David King <amigadave@amigadave.com> - 3.18.0-1
+- Update to 3.18.0
+
+* Tue Sep 01 2015 David King <amigadave@amigadave.com> - 3.17.91-1
+- Update to 3.17.91
+
+* Mon Aug 17 2015 David King <amigadave@amigadave.com> - 3.17.90-1
+- Update to 3.17.90
+
+* Tue Jul 21 2015 David King <amigadave@amigadave.com> - 3.17.4-1
+- Update to 3.17.4
+
+* Mon Jun 22 2015 David King <amigadave@amigadave.com> - 3.17.3-1
+- Update to 3.17.3
+
+* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.17.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
+* Mon May 25 2015 David King <amigadave@amigadave.com> - 3.17.2-1
+- Update to 3.17.2
+
+* Mon Apr 27 2015 David King <amigadave@amigadave.com> - 3.17.1-1
+- Update to 3.17.1
+
+* Mon Apr 13 2015 David King <amigadave@amigadave.com> - 3.16.1-1
+- Update to 3.16.1
+
+* Mon Mar 23 2015 David King <amigadave@amigadave.com> - 3.16.0-1
+- Update to 3.16.0
+
+* Mon Mar 16 2015 David King <amigadave@amigadave.com> - 3.15.92-1
+- Update to 3.15.92
+
+* Mon Mar 02 2015 David King <amigadave@amigadave.com> - 3.15.91-1
+- Update to 3.15.91
+
+* Wed Feb 18 2015 David King <amigadave@amigadave.com> - 3.15.90-1
+- Update to 3.15.90
+- Use license macro for COPYING
+
+* Mon Jan 19 2015 David King <amigadave@amigadave.com> - 3.15.4-1
+- Update to 3.15.4
+
+* Mon Dec 15 2014 David King <amigadave@amigadave.com> - 3.15.3-1
+- Update to 3.15.3
+
+* Mon Nov 24 2014 David King <amigadave@amigadave.com> - 3.15.2-1
+- Update to 3.15.2
+
+* Tue Oct 28 2014 David King <amigadave@amigadave.com> - 3.15.1-1
+- Update to 3.15.1
+
+* Wed Oct 15 2014 David King <amigadave@amigadave.com> - 3.14.1-2
+- Add HighContrast application icon (#1152796)
+
+* Mon Oct 13 2014 David King <amigadave@amigadave.com> - 3.14.1-1
+- Update to 3.14.1
+
+* Tue Sep 23 2014 David King <amigadave@amigadave.com> - 3.14.0-1
+- Update to 3.14.0
+- Do not own the appdata directory
+
+* Mon Sep 15 2014 David King <amigadave@amigadave.com> - 3.13.92-1
+- Update to 3.13.92
+
+* Mon Sep 01 2014 David King <amigadave@amigadave.com> - 3.13.91-1
+- Update to 3.13.91
+
+* Mon Aug 18 2014 David King <amigadave@amigadave.com> - 3.13.90-1
+- Update to 3.13.90
+
+* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
+
+* Mon Jul 21 2014 David King <amigadave@amigadave.com> - 3.13.4-1
+- Update to 3.13.4
+
+* Mon Jun 30 2014 David King <amigadave@amigadave.com> - 3.13.3-2
+- Fix AppData reference to desktop file
+
+* Mon Jun 23 2014 David King <amigadave@amigadave.com> - 3.13.3-1
+- Update to 3.13.3
+
+* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
+* Mon May 26 2014 David King <amigadave@amigadave.com> - 3.13.2-1
+- Update to 3.13.2
+
+* Tue Apr 29 2014 David King <amigadave@amigadave.com> - 3.13.1-1
+- Update to 3.13.1
+
+* Mon Apr 14 2014 David King <amigadave@amigadave.com> - 3.12.1-1
+- Update to 3.12.1
+
+* Mon Mar 17 2014 David King <amigadave@amigadave.com> - 3.12.0-1
+- Update to 3.12.0
+
+* Mon Mar 17 2014 David King <amigadave@amigadave.com> - 3.11.92-1
+- Update to 3.11.92
+
+* Sat Mar 08 2014 David King <amigadave@amigadave.com> - 3.11.91-2
+- Use pkgconfig with BuildRequires
+
+* Mon Mar 03 2014 David King <amigadave@amigadave.com> - 3.11.91-1
+- Update to 3.11.91
+
+* Tue Feb 18 2014 David King <amigadave@amigadave.com> - 3.11.90-1
+- Update to 3.11.90
+- Validate the desktop file and AppData using "make check"
+
+* Tue Feb 04 2014 David King <amigadave@amigadave.com> - 3.11.5-1
+- Update to 3.11.5
+
+* 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
+- New package.
diff --git a/sources b/sources
new file mode 100644
index 0000000..ce93229
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+fc25928b4ffad25e27b3755751b4b323 gnome-logs-3.36.0.tar.xz