mhabrnal pushed to gnome-abrt (master). "New upstream release 1.1.2 (..more)"

notifications at fedoraproject.org notifications at fedoraproject.org
Tue May 5 11:00:38 UTC 2015


>From b9b2a8cf5aabdb6cbf4a54422874ecde57be7934 Mon Sep 17 00:00:00 2001
From: Matej Habrnal <mhabrnal at redhat.com>
Date: Tue, 5 May 2015 12:56:50 +0200
Subject: New upstream release 1.1.2

Signed-off-by: Matej Habrnal <mhabrnal at redhat.com>

diff --git a/.gitignore b/.gitignore
index dd5af21..07cd4b5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,3 +21,4 @@
 /gnome-abrt-1.0.0.tar.gz
 /gnome-abrt-1.1.0.tar.gz
 /gnome-abrt-1.1.1.tar.gz
+/gnome-abrt-1.1.2.tar.gz
diff --git a/0001-Remove-deprecated-pylint-s-disabling-of-warning.patch b/0001-Remove-deprecated-pylint-s-disabling-of-warning.patch
new file mode 100644
index 0000000..a108ca8
--- /dev/null
+++ b/0001-Remove-deprecated-pylint-s-disabling-of-warning.patch
@@ -0,0 +1,78 @@
+From 6a0f640d07fdddab610204f8ae18410182f150ce Mon Sep 17 00:00:00 2001
+From: Matej Habrnal <mhabrnal at redhat.com>
+Date: Tue, 5 May 2015 12:18:31 +0200
+Subject: [PATCH] Remove deprecated pylint's disabling of warning
+
+Signed-off-by: Matej Habrnal <mhabrnal at redhat.com>
+---
+ src/gnome_abrt/dbus_problems.py | 7 -------
+ src/gnome_abrt/problems.py      | 1 -
+ 2 files changed, 8 deletions(-)
+
+diff --git a/src/gnome_abrt/dbus_problems.py b/src/gnome_abrt/dbus_problems.py
+index 454c469..c964ff8 100644
+--- a/src/gnome_abrt/dbus_problems.py
++++ b/src/gnome_abrt/dbus_problems.py
+@@ -145,7 +145,6 @@ class DBusProblemSource(problems.CachedSource):
+     def chown_problem(self, problem_id):
+         try:
+             self._send_dbus_message(
+-                    #pylint: disable=W0142
+                     lambda iface, *params: iface.ChownProblemDir(*params),
+                     problem_id)
+             return True
+@@ -161,7 +160,6 @@ class DBusProblemSource(problems.CachedSource):
+         if len(args) != 0:
+             try:
+                 info = self._send_dbus_message(
+-                        #pylint: disable=W0142
+                         lambda iface, *params: iface.GetInfo(*params),
+                         problem_id, args)
+             except dbus.exceptions.DBusException as ex:
+@@ -186,7 +184,6 @@ class DBusProblemSource(problems.CachedSource):
+     def _delete_problem(self, problem_id):
+         try:
+             self._send_dbus_message(
+-                #pylint: disable=W0142
+                 lambda iface, *args: iface.DeleteProblem(*args), [problem_id])
+             return True
+         except dbus.exceptions.DBusException as ex:
+@@ -215,15 +212,12 @@ class StandardProblems(DBusProblemSource.Driver):
+         conf = config.get_configuration()
+         conf.set_watch("all_problems", ConfigObserver(self._source))
+ 
+-    #pylint: disable=W0142
+     @property
+     def get_problems_method(self):
+         conf = config.get_configuration()
+         if conf['all_problems']:
+-            #pylint: disable=W0142
+             return lambda iface, *args: iface.GetAllProblems(*args)
+         else:
+-            #pylint: disable=W0142
+             return lambda iface, *args: iface.GetProblems(*args)
+ 
+     def on_new_problem(self, *args):
+@@ -272,7 +266,6 @@ class ForeignProblems(DBusProblemSource.Driver):
+ 
+     @property
+     def get_problems_method(self):
+-         #pylint: disable=W0142
+         return lambda iface, *args: iface.GetForeignProblems(*args)
+ 
+     def on_new_problem(self, *args):
+diff --git a/src/gnome_abrt/problems.py b/src/gnome_abrt/problems.py
+index eacc624..8a1664f 100644
+--- a/src/gnome_abrt/problems.py
++++ b/src/gnome_abrt/problems.py
+@@ -411,7 +411,6 @@ class MultipleSources(ProblemSource):
+ 
+         self.notify()
+ 
+-#pylint: disable=R0921
+ class CachedSource(ProblemSource):
+ 
+     def __init__(self):
+-- 
+2.3.6
+
diff --git a/gnome-abrt.spec b/gnome-abrt.spec
index eba2ca9..800cbc6 100644
--- a/gnome-abrt.spec
+++ b/gnome-abrt.spec
@@ -5,7 +5,7 @@
 #         ! no binaries in $PATH ... caused by gnome-abrt python script in /usr/bin
 
 Name:       gnome-abrt
-Version:    1.1.1
+Version:    1.1.2
 Release:    1%{?dist}
 Summary:    A utility for viewing problems that have occurred with the system
 
@@ -16,6 +16,7 @@ Source0:    https://fedorahosted.org/released/abrt/%{name}-%{version}.tar.gz
 
 # git format-patch %%{Version} --topo-order -N -M;
 # i=1; for p in `ls 0*.patch`; do printf "Patch%04d: %s\n" $i $p; ((i++)); done
+Patch0001: 0001-Remove-deprecated-pylint-s-disabling-of-warning.patch
 
 # git is need for '%%autosetup -S git' which automatically applies all the
 # patches above. Please, be aware that the patches must be generated
@@ -119,6 +120,13 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
 
 
 %changelog
+* Tue May 05 2015 Matej Habrnal <mhabrnal at redhat.com> - 1.1.2-1
+- Add symbolic icon
+- Use own window header also in GNOME Classic
+- Let the theme handle the colour in the problems list
+- Remove border's custom style in the problems list
+- Resolves: #1193656
+
 * Thu Apr 09 2015 Jakub Filak <jfilak at redhat.com> - 1.1.1-1
 - Several bug fixes
 
diff --git a/sources b/sources
index 88a4ea8..c55c50a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3a8d8862e8c6f941d3b2f63acc24be31  gnome-abrt-1.1.1.tar.gz
+2b3a3214fead0562b7fbc829b2b51a16  gnome-abrt-1.1.2.tar.gz
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/gnome-abrt.git/commit/?h=master&id=b9b2a8cf5aabdb6cbf4a54422874ecde57be7934


More information about the scm-commits mailing list