public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Michal Fabik <mfabik@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/abrt] update-2.17.8: New upstream release 2.14.3
Date: Mon, 03 Aug 2026 10:24:07 GMT	[thread overview]
Message-ID: <178575264731.1.1578090564372333185.rpms-abrt-5e37f501924d@fedoraproject.org> (raw)

            A new commit has been pushed.

            Repo   : rpms/abrt
            Branch : update-2.17.8
            Commit : 5e37f501924d9d1589b02a4ac36cff66c590f511
            Author : Michal Fabik <mfabik@redhat.com>
            Date   : 2020-08-21T11:47:15+02:00
            Stats  : +29/-27 in 3 file(s)
            URL    : https://src.fedoraproject.org/rpms/abrt/c/5e37f501924d9d1589b02a4ac36cff66c590f511?branch=update-2.17.8

            Log:
            New upstream release 2.14.3

Signed-off-by: Michal Fabik <mfabik@redhat.com>

---
diff --git a/.gitignore b/.gitignore
index 16cc618..7d8f72d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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

diff --git a/abrt.spec b/abrt.spec
index 5eb632b..396a9f7 100644
--- a/abrt.spec
+++ b/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
 

diff --git a/sources b/sources
index ad6df13..51e3cda 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (abrt-2.14.2.tar.gz) = 020bd0550c41b2358a718a4f0f0c3a839d86fd46fc0c4f4cfc4b7d7f851baf2d5179e008ac1912b350f9f0fbfbfee94e422de3aadce5eb0f7f84a04f233349ff
+SHA512 (abrt-2.14.3.tar.gz) = 34aeffa9fac4d97adee9511dee525a0208112fdeb2f75180f02795d40ff094c1a60a50dabcb15fc4729c549c407ef97ae23f18ad5ea1df2fd5114c41185a3606

                 reply	other threads:[~2026-08-03 10:24 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178575264731.1.1578090564372333185.rpms-abrt-5e37f501924d@fedoraproject.org \
    --to=mfabik@redhat.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox