public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
To: git-commits@fedoraproject.org
Subject: [rpms/abrt] update-2.17.8: new version
Date: Mon, 03 Aug 2026 10:21:46 GMT [thread overview]
Message-ID: <178575250624.1.9816728688919256138.rpms-abrt-91cd8a752bce@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/abrt
Branch : update-2.17.8
Commit : 91cd8a752bce5b9572887f94a959394f385ff689
Author : Jiří Moskovčák <jmoskovc@fedoraproject.org>
Date : 2010-01-22T14:53:31+00:00
Stats : +62/-8 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/abrt/c/91cd8a752bce5b9572887f94a959394f385ff689?branch=update-2.17.8
Log:
new version
---
diff --git a/.cvsignore b/.cvsignore
index 1bb3c17..2cba6c4 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-abrt-1.0.2.tar.gz
+abrt-1.0.4.tar.gz
diff --git a/abrt.spec b/abrt.spec
index 4c0a900..90b5968 100644
--- a/abrt.spec
+++ b/abrt.spec
@@ -3,7 +3,7 @@
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Summary: Automatic bug detection and reporting tool
Name: abrt
-Version: 1.0.2
+Version: 1.0.4
Release: 1%{?dist}
License: GPLv2+
Group: Applications/System
@@ -16,13 +16,12 @@ BuildRequires: curl-devel
BuildRequires: rpm-devel >= 4.6
BuildRequires: sqlite-devel > 3.0
BuildRequires: desktop-file-utils
-BuildRequires: nss-devel
+#BuildRequires: nss-devel
BuildRequires: libnotify-devel
BuildRequires: xmlrpc-c-devel
BuildRequires: file-devel
BuildRequires: python-devel
BuildRequires: gettext
-BuildRequires: nss-devel
BuildRequires: polkit-devel
BuildRequires: libzip-devel, libtar-devel, bzip2-devel, zlib-devel
BuildRequires: intltool
@@ -71,7 +70,6 @@ GTK+ wizard for convenient bug reporting.
%package addon-ccpp
Summary: %{name}'s C/C++ addon
Group: System Environment/Libraries
-Requires: gdb >= 7.0-3
Requires: elfutils
Requires: yum-utils
Requires: %{name} = %{version}-%{release}
@@ -201,6 +199,8 @@ Group: User Interface/Desktops
Requires: %{name} = %{version}-%{release}
Requires: %{name}-addon-kerneloops
Requires: %{name}-addon-ccpp, %{name}-addon-python
+# Default config of addon-ccpp requires gdb
+Requires: gdb >= 7.0-3
Requires: %{name}-gui
Requires: %{name}-plugin-bugzilla, %{name}-plugin-logger, %{name}-plugin-runapp
#Requires: %{name}-plugin-firefox
@@ -249,6 +249,7 @@ rm -rf $RPM_BUILD_ROOT
%pre
getent group abrt >/dev/null || groupadd -f --system abrt
+getent passwd abrt >/dev/null || useradd --system -g abrt -d /etc/abrt -s /sbin/nologin abrt
exit 0
%post
@@ -278,11 +279,12 @@ fi
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
%config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-%{name}.conf
%{_initrddir}/%{name}d
-%dir %attr(0775, root, abrt) %{_localstatedir}/cache/%{name}
+%dir %attr(0755, abrt, abrt) %{_localstatedir}/cache/%{name}
%dir /var/run/%{name}
%dir %{_sysconfdir}/%{name}
%dir %{_sysconfdir}/%{name}/plugins
%dir %{_libdir}/%{name}
+%{_mandir}/man1/%{name}-backtrace.1.gz
%{_mandir}/man8/abrtd.8.gz
%{_mandir}/man5/%{name}.conf.5.gz
#%{_mandir}/man5/pyhook.conf.5.gz
@@ -384,10 +386,12 @@ fi
%files addon-python
%defattr(-,root,root,-)
-%attr(2755, root, abrt) %{_libexecdir}/abrt-hook-python
+%config(noreplace) %{_sysconfdir}/%{name}/plugins/Python.conf
+%attr(4755, abrt, abrt) %{_libexecdir}/abrt-hook-python
%{_libdir}/%{name}/libPython.so*
%{python_site}/*.py*
+
%files cli
%defattr(-,root,root,-)
%{_bindir}/abrt-cli
@@ -398,6 +402,56 @@ fi
%defattr(-,root,root,-)
%changelog
+* Wed Jan 20 2010 Jiri Moskovcak <jmoskovc@redhat.com> 1.0.4-1
+- GUI: redesign of reporter dialog (jmoskovc@redhat.com)
+- Set the prgname to "Automatic Bug Reporting Tool" fixes rhbz#550357 (jmoskovc@redhat.com)
+- CCpp analyzer: display __abort_msg in backtrace. closes rhbz#549735 (vda.linux@googlemail.com)
+- s/os.exit/sys.exit - closes rhbz#556313 (vda.linux@googlemail.com)
+- use repr() to print variable values in python hook rhbz#545070 (jmoskovc@redhat.com)
+- gui: add logging infrastructure (vda.linux@googlemail.com)
+- Added "Enabled = yes" to all plugin's config files (jmoskovc@redhat.com)
+- *: disable plugin loading/unloading through GUI. Document keyring a bit (vda.linux@googlemail.com)
+- fix memory leaks in catcut plugin (npajkovs@redhat.com)
+- fix memory leaks in bugzilla (npajkovs@redhat.com)
+- abrt-hook-python: sanitize input more; log to syslog (vda.linux@googlemail.com)
+- Fixed /var/cache/abrt/ permissions (kklic@redhat.com)
+- Kerneloops: we require commandline for every crash, save dummy one for oopses (vda.linux@googlemail.com)
+- *: remove nss dependencies (vda.linux@googlemail.com)
+- CCpp: use our own sha1 implementation (less pain with nss libs) (vda.linux@googlemail.com)
+- DebugDump: more consistent logic in setting mode and uid:gid on dump dir (vda.linux@googlemail.com)
+- fixes based on security review (vda.linux@googlemail.com)
+- SOSreport/TicketUploader: use more restrictive file modes (vda.linux@googlemail.com)
+- abrt-hook-python: add input sanitization and directory size guard (vda.linux@googlemail.com)
+- RunApp: safer chdir. Overhauled "sparn a child and get its output" in general (vda.linux@googlemail.com)
+- DebugDump: use more restrictive modes (vda.linux@googlemail.com)
+- SQLite3: check for SQL injection (vda.linux@googlemail.com)
+- replace plugin enabling via EnabledPlugins by par-plugin Enabled = yes/no (vda.linux@googlemail.com)
+- abrt.spec: move "requires: gdb" to abrt-desktop (vda.linux@googlemail.com)
+- ccpp: add a possibility to disable backtrace generation (vda.linux@googlemail.com)
+- abrtd: limit the number of frames in backtrace to 3000 (vda.linux@googlemail.com)
+
+* Tue Jan 5 2010 Jiri Moskovcak <jmoskovc@redhat.com> 1.0.3-1
+- speed optimalization of abrt-debuginfo-install (jmoskovc@redhat.com)
+- updated credits (jmoskovc@redhat.com)
+- GUI: fixed crash when abrt-gui is run without X server rhbz#552039 (jmoskovc@redhat.com)
+- abrt-backtrace manpage installed (kklic@redhat.com)
+- cmdline and daemon checking is done by abrt-python-hook (kklic@redhat.com)
+- moved get_cmdline() and daemon_is_ok() to abrtlib (kklic@redhat.com)
+- large file support for whole abrt (kklic@redhat.com)
+- made s_signal_caught volatile (vda.linux@googlemail.com)
+- abrt-debuginfo-install: fixes for runs w/o cachedir (vda.linux@googlemail.com)
+- remove unsafe log() from signal handler (vda.linux@googlemail.com)
+- src/Hooks/CCpp.cpp: use and honour 'c' (core limit size). (vda.linux@googlemail.com)
+- lib/Plugins/CCpp.cpp: save gdb error messages too (vda.linux@googlemail.com)
+- prevent destructors from throwing exceptions; check curl_easy_init errors (vda.linux@googlemail.com)
+- don't blame python for every crash in /usr/bin/python rhbz#533521 trac#109 (jmoskovc@redhat.com)
+- GUI: autoscroll log window (jmoskovc@redhat.com)
+- Kerneloops.conf: better comments (vda.linux@googlemail.com)
+- applet: reduce blinking time to 30 seconds (vda.linux@googlemail.com)
+- add paranoia checks on setuid/setgid (vda.linux@googlemail.com)
+- more "obviously correct" code for secure opening of /dev/null (vda.linux@googlemail.com)
+- get rid of ugly sleep call inside while() (vda.linux@googlemail.com)
+
* Mon Dec 14 2009 Jiri Moskovcak <jmoskovc@redhat.com> 1.0.2-1
- disabled GPG check again (jmoskovc@redhat.com)
- abrt-pyhook-helper rename (vda.linux@googlemail.com)
diff --git a/sources b/sources
index eac3698..513c6e4 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-755f119d24511b613b02270b51d09312 abrt-1.0.2.tar.gz
+103e02558d7d11282a2d45f114b943ba abrt-1.0.4.tar.gz
next reply other threads:[~2026-08-03 10:21 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-03 10:21 [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-08-03 10:21 [rpms/abrt] update-2.17.8: new version
2026-08-03 10:21
2026-08-03 10:21
2026-08-03 10:21
2026-08-03 10:21 [rpms/abrt] update-2.17.8: New version
2026-08-03 10:21 [rpms/abrt] update-2.17.8: new version
2026-08-03 10:21 [rpms/abrt] update-2.17.8: New version
2026-08-03 10:21
2026-08-03 10:21
2026-08-03 10:21 [rpms/abrt] update-2.17.8: new version
2026-08-03 10:21
2026-08-03 10:21 [rpms/abrt] update-2.17.8: New version
2026-08-03 10:21 [rpms/abrt] update-2.17.8: new version
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=178575250624.1.9816728688919256138.rpms-abrt-91cd8a752bce@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