public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
To: git-commits@fedoraproject.org
Subject: [rpms/abrt] update-2.17.9-f44: New upstream release 2.15.0
Date: Mon, 03 Aug 2026 11:05:36 GMT	[thread overview]
Message-ID: <178575513652.1.13881269427304078779.rpms-abrt-0302f37126a2@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/abrt
Branch : update-2.17.9-f44
Commit : 0302f37126a25ca5e73a01ea8cce0e249634eaa0
Author : Matěj Grabovský <mgrabovs@redhat.com>
Date   : 2022-01-17T19:27:36+01:00
Stats  : +14/-62 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/abrt/c/0302f37126a25ca5e73a01ea8cce0e249634eaa0?branch=update-2.17.9-f44

Log:
New upstream release 2.15.0

---
diff --git a/.gitignore b/.gitignore
index 75abc74..faaae41 100644
--- a/.gitignore
+++ b/.gitignore
@@ -75,3 +75,4 @@ abrt-1.1.13.tar.gz
 /abrt-2.14.4.tar.gz
 /abrt-2.14.5.tar.gz
 /abrt-2.14.6.tar.gz
+/abrt-2.15.0.tar.gz

diff --git a/0001-Use-lazy-imports-in-abrt_exception_handler3.patch b/0001-Use-lazy-imports-in-abrt_exception_handler3.patch
deleted file mode 100644
index 5c892a8..0000000
--- a/0001-Use-lazy-imports-in-abrt_exception_handler3.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-From 4755f2171aa50a72d8ec03260c8cbc602263a6c0 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
-Date: Fri, 24 Sep 2021 17:48:07 +0200
-Subject: [PATCH] Use lazy imports in abrt_exception_handler3
-
-The abrt_exception_handler3 module is always imported when Python starts,
-but all the modules imported from it (except sys) are only used during crashes.
-
-Especially the systemd.journal import is really expensive.
-
-Fixes https://bugzilla.redhat.com/show_bug.cgi?id=2007664
----
- src/hooks/abrt_exception_handler3.py.in | 9 +++++++--
- 1 file changed, 7 insertions(+), 2 deletions(-)
-
-diff --git a/src/hooks/abrt_exception_handler3.py.in b/src/hooks/abrt_exception_handler3.py.in
-index 89e2474b..0bc548e0 100644
---- a/src/hooks/abrt_exception_handler3.py.in
-+++ b/src/hooks/abrt_exception_handler3.py.in
-@@ -20,13 +20,15 @@
- Module for the ABRT exception handling hook
- """
- 
-+# Avoid importing anything but sys here, use lazy imports.
-+# This file is imported on every Python startup,
-+# all unused imports only increase the startup time and memory usage.
- import sys
--import os
- 
--from systemd import journal
- 
- def syslog(msg):
-     """Log message to system logger (journal)"""
-+    from systemd import journal
- 
-     journal.send(msg)
- 
-@@ -68,6 +70,8 @@ def send(data):
- 
- 
- def write_dump(tb_text, tb):
-+    import os
-+
-     if sys.argv[0][0] == "/":
-         executable = os.path.abspath(sys.argv[0])
-     else:
-@@ -118,6 +122,7 @@ def handle_exception(etype, value, tb):
-         sys.excepthook = sys.__excepthook__  # pylint: disable-msg=E1101
- 
-         import errno
-+        import os
- 
-         # Ignore Ctrl-C
-         # SystemExit rhbz#636913 -> this exception is not an error
--- 
-2.31.1
-

diff --git a/abrt.spec b/abrt.spec
index 51289a2..c340e01 100644
--- a/abrt.spec
+++ b/abrt.spec
@@ -48,8 +48,8 @@
 
 Summary: Automatic bug detection and reporting tool
 Name: abrt
-Version: 2.14.6
-Release: 11%{?dist}
+Version: 2.15.0
+Release: 1%{?dist}
 License: GPLv2+
 URL: https://abrt.readthedocs.org/
 Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
@@ -140,8 +140,6 @@ BuildRequires: python3-libreport
 BuildRequires: python3-devel
 %endif
 
-Patch0: 0001-Use-lazy-imports-in-abrt_exception_handler3.patch
-
 %description
 %{name} is a tool to help users to detect defects in applications and
 to create a bug report with all information needed by maintainer to fix it.
@@ -1009,6 +1007,16 @@ killall abrt-dbus >/dev/null 2>&1 || :
 %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh
 
 %changelog
+* Mon Jan 17 2022 Matěj Grabovský <mgrabovs@redhat.com> - 2.15.0-1
+- Bump abrt library version to 1:0:1
+- cli: Fix path and glob matching for abrt info etc.
+- abrt-dump-oops: Fix vmcore call trace parsing
+- Use lazy imports in abrt_exception_handler3
+- Don't copy coredump to problem dir
+- Detect Python 3.10 and Perl correctly in abrt-action-save-package-data
+- Fix calls to deprecated methods in tests
+- Update translations
+
 * Wed Jan 12 2022 Miro Hrončok <mhroncok@redhat.com> - 2.14.6-11
 - Make abrt-tui and python3-abrt-container-addon noarch as they contain no architecture-specific content
 - Ensure Python bytecode in noarch subpackages is reproducible

diff --git a/sources b/sources
index 601ce96..adf93c6 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (abrt-2.14.6.tar.gz) = eb1ba2f624d51eeccd203bb23060493347f5a9142fad7d0570d46134071d870a9c66b4fbfb8210e7d6f87c0c039f31eb486d18a36b10fba318e2180aa09df9fe
+SHA512 (abrt-2.15.0.tar.gz) = 2d6c1287c1f01990aeb30f956f465c7a6399a6e53dc667602e263c136f94bc4090b58876acba678b29671c0db89ae8e7dd6994cf8d0d2d9fbc375f54ae6cd935

                 reply	other threads:[~2026-08-03 11:05 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=178575513652.1.13881269427304078779.rpms-abrt-0302f37126a2@fedoraproject.org \
    --to=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