New upstream release 2.1.11

This commit is contained in:
Jakub Filak 2014-01-08 08:19:06 +01:00
commit 4ed66caa9b
4 changed files with 32 additions and 39 deletions

1
.gitignore vendored
View file

@ -32,3 +32,4 @@ abrt-1.1.13.tar.gz
/abrt-2.1.8.tar.gz
/abrt-2.1.9.tar.gz
/abrt-2.1.10.tar.gz
/abrt-2.1.11.tar.gz

View file

@ -1,31 +0,0 @@
From 8004afb7100e94efbca60ad4a08e599d7c2112f4 Mon Sep 17 00:00:00 2001
From: Jakub Filak <jfilak@redhat.com>
Date: Wed, 11 Dec 2013 17:04:52 +0100
Subject: [ABRT PATCH] configui: do not use deprecated gtk3 API
Signed-off-by: Jakub Filak <jfilak@redhat.com>
---
src/configuration-gui/system-config-abrt.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/configuration-gui/system-config-abrt.c b/src/configuration-gui/system-config-abrt.c
index d5afb43..4638dd6 100644
--- a/src/configuration-gui/system-config-abrt.c
+++ b/src/configuration-gui/system-config-abrt.c
@@ -45,8 +45,13 @@ GtkWidget *system_config_abrt_widget_new(void)
GtkWidget *buttons = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, /*spacing*/0);
gtk_box_pack_start(GTK_BOX(box), buttons, /*expand*/TRUE, /*fill*/FALSE, /*padding*/0);
+#if ((GTK_MAJOR_VERSION == 3 && GTK_MINOR_VERSION < 11) || (GTK_MAJOR_VERSION == 3 && GTK_MINOR_VERSION == 11 && GTK_MICRO_VERSION < 2))
gtk_widget_set_margin_left(buttons, 10);
gtk_widget_set_margin_right(buttons, 10);
+#else
+ gtk_widget_set_margin_start(buttons, 10);
+ gtk_widget_set_margin_end(buttons, 10);
+#endif
gtk_widget_set_margin_top(buttons, 10);
gtk_widget_set_margin_bottom(buttons, 10);
--
1.8.3.1

View file

@ -34,11 +34,12 @@
%define docdirversion -%{version}
%endif
%define libreport_ver 2.1.10
%define libreport_ver 2.1.11
%define satyr_ver 0.13
Summary: Automatic bug detection and reporting tool
Name: abrt
Version: 2.1.10
Version: 2.1.11
Release: 1%{?dist}
License: GPLv2+
Group: Applications/System
@ -50,8 +51,6 @@ Patch2: abrt-2.1.6.rhel-remove_all_ureport_lines_from_config.patch
Patch3: abrt-2.1.6.rhel-dont_enable_shortened_reporting_in_gnome.patch
Patch4: abrt-2.1.1-disable_autoreporting_dialog.patch
# remove with abrt > 2.1.10
Patch5: abrt-2.1.10-gtk3_deprecated_API.patch
BuildRequires: dbus-devel
BuildRequires: gtk3-devel
@ -69,12 +68,12 @@ BuildRequires: asciidoc
BuildRequires: doxygen
BuildRequires: xmlto
BuildRequires: libreport-devel >= %{libreport_ver}
BuildRequires: satyr-devel >= 0.12
BuildRequires: satyr-devel >= %{satyr_ver}
BuildRequires: systemd-python
BuildRequires: augeas
Requires: libreport >= %{libreport_ver}
Requires: satyr >= 0.12
Requires: satyr >= %{satyr_ver}
%if %{with systemd}
Requires: systemd-units
@ -209,6 +208,7 @@ Requires: abrt-addon-kerneloops
Requires: crash
Requires: kexec-tools
Requires: abrt-python
Requires: python-augeas
%description addon-vmcore
This package contains plugin for collecting kernel crash information from
@ -379,7 +379,6 @@ to the shell
%endif
#Fedora
%patch1 -p1 -b .gpgcheck
%patch5 -p1 -b .gtk3
%build
autoconf
@ -562,6 +561,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%endif
%{_sbindir}/abrtd
%{_sbindir}/abrt-server
%{_sbindir}/abrt-auto-reporting
%{_libexecdir}/abrt-handle-event
%{_libexecdir}/abrt-action-ureport
%{_bindir}/abrt-handle-upload
@ -601,6 +601,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%{_mandir}/man1/abrt-action-save-package-data.1.gz
%{_mandir}/man1/abrt-watch-log.1.gz
%{_mandir}/man1/abrt-action-analyze-xorg.1.gz
%{_mandir}/man1/abrt-auto-reporting.1.gz
%{_mandir}/man8/abrtd.8.gz
%{_mandir}/man5/abrt.conf.5.gz
%{_mandir}/man5/abrt-action-save-package-data.conf.5.gz
@ -810,10 +811,19 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%files dbus
%defattr(-,root,root,-)
%{_sbindir}/abrt-dbus
%{_sbindir}/abrt-configuration
%{_mandir}/man8/abrt-dbus.8.gz
%{_mandir}/man8/abrt-configuration.8.gz
%config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-abrt.conf
%{_datadir}/dbus-1/interfaces/org.freedesktop.Problems.xml
%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.xml
%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.abrt.xml
%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.ccpp.xml
%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.python.xml
%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.vmcore.xml
%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.xorg.xml
%{_datadir}/dbus-1/system-services/org.freedesktop.problems.service
%{_datadir}/dbus-1/system-services/com.redhat.problems.configuration.service
%{_datadir}/polkit-1/actions/abrt_polkit.policy
%dir %{_defaultdocdir}/%{name}-dbus%{docdirversion}/
%dir %{_defaultdocdir}/%{name}-dbus%{docdirversion}/html/
@ -831,6 +841,19 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh
%changelog
* Wed Jan 08 2014 Jakub Filak <jfilak@redhat.com> 2.1.11-1
- Update translations
- harvest_vmcore: replace regexp config parsing with augeas
- introduce D-Bus Configuration Service
- mark koopses with unsupporeted HW as not-reportable
- bodhi: use the right exit codes
- abrt-handle-event: don't use already freed memory
- introduce abrt-auto-reporting utility
- abrt-action-notify: fix couple of flaws
- Use satyr to compute koops duphash
- koops: tweak koops parser for s390 Call Traces
- configui: do not use deprecated gtk3 API
* Wed Dec 11 2013 Jakub Filak <jfilak@redhat.com> 2.1.10-1
- abrt-cli: display URL to reports in the details
- abrt-cli list: list all problems by default

View file

@ -1 +1 @@
eb3a8430cd0fdacddc5ac3dd74e92142 abrt-2.1.10.tar.gz
fdd0c50b6f54fa664b2600e453a7f54b abrt-2.1.11.tar.gz