New upstream release 2.14.3
Signed-off-by: Michal Fabik <mfabik@redhat.com>
This commit is contained in:
parent
92ab2eb5b3
commit
5e37f50192
1
.gitignore
vendored
1
.gitignore
vendored
@ -71,3 +71,4 @@ abrt-1.1.13.tar.gz
|
||||
/abrt-2.14.0.tar.gz
|
||||
/abrt-2.14.1.tar.gz
|
||||
/abrt-2.14.2.tar.gz
|
||||
/abrt-2.14.3.tar.gz
|
||||
|
53
abrt.spec
53
abrt.spec
@ -48,16 +48,12 @@
|
||||
|
||||
Summary: Automatic bug detection and reporting tool
|
||||
Name: abrt
|
||||
Version: 2.14.2
|
||||
Release: 6%{?dist}
|
||||
Version: 2.14.3
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+
|
||||
URL: https://abrt.readthedocs.org/
|
||||
Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
|
||||
Patch0: 0001-applet-Pass-instance-pointer-to-signal-handler.patch
|
||||
Patch1: 0002-applet-Chain-up-in-dispose.patch
|
||||
Patch2: 0003-applet-application-Fix-crash-when-processing-deferre.patch
|
||||
|
||||
BuildRequires: git-core
|
||||
BuildRequires: %{dbus_devel}
|
||||
BuildRequires: hostname
|
||||
@ -106,9 +102,6 @@ Requires: python3-dbus
|
||||
Requires: dmidecode
|
||||
%endif
|
||||
Requires: libreport-plugin-ureport
|
||||
%if 0%{?rhel}
|
||||
Requires: libreport-plugin-rhtsupport
|
||||
%endif
|
||||
%if 0%{?fedora}
|
||||
Requires: libreport-plugin-systemd-journal
|
||||
%endif
|
||||
@ -360,10 +353,7 @@ Requires: abrt-addon-ccpp
|
||||
Requires: python3-abrt-addon
|
||||
%endif
|
||||
Requires: abrt-addon-xorg
|
||||
%if 0%{?rhel}
|
||||
Requires: libreport-rhel >= %{libreport_ver}
|
||||
Requires: libreport-plugin-rhtsupport >= %{libreport_ver}
|
||||
%else
|
||||
%if ! 0%{?rhel}
|
||||
%if %{with retrace}
|
||||
Requires: abrt-retrace-client
|
||||
%endif
|
||||
@ -403,10 +393,7 @@ Requires: abrt-addon-xorg
|
||||
Requires: gdb-headless
|
||||
Requires: abrt-gui
|
||||
Requires: gnome-abrt
|
||||
%if 0%{?rhel}
|
||||
Requires: libreport-rhel >= %{libreport_ver}
|
||||
Requires: libreport-plugin-rhtsupport >= %{libreport_ver}
|
||||
%else
|
||||
%if ! 0%{?rhel}
|
||||
%if %{with retrace}
|
||||
Requires: abrt-retrace-client
|
||||
%endif
|
||||
@ -506,9 +493,6 @@ CFLAGS="%{optflags} -Werror" %configure \
|
||||
%if %{without retrace}
|
||||
--without-retrace \
|
||||
%endif
|
||||
%if 0%{?rhel}
|
||||
--enable-authenticated-autoreporting \
|
||||
%endif
|
||||
%ifnarch %{arm}
|
||||
--enable-native-unwinder \
|
||||
%endif
|
||||
@ -576,10 +560,12 @@ exit 0
|
||||
%systemd_post abrtd.service
|
||||
|
||||
%post addon-ccpp
|
||||
# this is required for transition from 1.1.x to 2.x
|
||||
# because /cache/abrt-di/* was created under root with root:root
|
||||
# so 2.x fails when it tries to extract debuginfo there..
|
||||
chown -R abrt:abrt %{_localstatedir}/cache/abrt-di
|
||||
# migration from 2.14.1.18
|
||||
if [ ! -e "%{_localstatedir}/cache/abrt-di/.migration-group-add" ]; then
|
||||
chmod -R g+w %{_localstatedir}/cache/abrt-di
|
||||
touch "%{_localstatedir}/cache/abrt-di/.migration-group-add"
|
||||
fi
|
||||
|
||||
%systemd_post abrt-journal-core.service
|
||||
%journal_catalog_update
|
||||
|
||||
@ -822,8 +808,8 @@ killall abrt-dbus >/dev/null 2>&1 || :
|
||||
|
||||
%dir %{_localstatedir}/lib/abrt
|
||||
|
||||
# attr(6755) ~= SETUID|SETGID
|
||||
%attr(6755, abrt, abrt) %{_libexecdir}/abrt-action-install-debuginfo-to-abrt-cache
|
||||
# attr(6755) ~= SETGID
|
||||
%attr(2755, abrt, abrt) %{_libexecdir}/abrt-action-install-debuginfo-to-abrt-cache
|
||||
|
||||
%{_bindir}/abrt-action-analyze-c
|
||||
%{_bindir}/abrt-action-trim-files
|
||||
@ -1019,6 +1005,21 @@ killall abrt-dbus >/dev/null 2>&1 || :
|
||||
%config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh
|
||||
|
||||
%changelog
|
||||
* Thu Aug 13 2020 Michal Fabik <mfabik@redhat.com> - 2.14.3-1
|
||||
- plugins: abrt-dump-journal-core: Handle zstd compression
|
||||
- applet: application: Use GLib for logging
|
||||
- Replace various utility functions with stock GLib ones
|
||||
- Various coding style improvements
|
||||
- Update documentation
|
||||
- applet: application: Fix crash when processing deferred problems
|
||||
- dbus: Remove session objects when owner disconnects
|
||||
- python-problem: Use org.freedesktop.Problems2 API
|
||||
- abrt-console-notification: Work around noclobber
|
||||
- daemon: rpm: Use NEVRA instead of ENVRA
|
||||
- abrtd: Don't delete new problem dirs
|
||||
- Make sure that former caches are group writable
|
||||
- Various memory management fixes
|
||||
|
||||
* Thu Aug 13 2020 Adam Williamson <awilliam@redhat.com> - 2.14.2-6
|
||||
- Rebuild for libreport soname bump
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (abrt-2.14.2.tar.gz) = 020bd0550c41b2358a718a4f0f0c3a839d86fd46fc0c4f4cfc4b7d7f851baf2d5179e008ac1912b350f9f0fbfbfee94e422de3aadce5eb0f7f84a04f233349ff
|
||||
SHA512 (abrt-2.14.3.tar.gz) = 34aeffa9fac4d97adee9511dee525a0208112fdeb2f75180f02795d40ff094c1a60a50dabcb15fc4729c549c407ef97ae23f18ad5ea1df2fd5114c41185a3606
|
||||
|
Loading…
x
Reference in New Issue
Block a user