summaryrefslogtreecommitdiffstats
path: root/abrt.spec
Commit message (Collapse)AuthorAgeFilesLines
* btparser initial integrationKarel Klic2010-10-141-2/+0
|
* move uuid generation for CCpp to a separate program (abrt-action-analyze-c)Denys Vlasenko2010-10-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | This patch splits off uuid generation for CCpp to a separate program: Usage: abrt-action-analyze-c [-v] -d DIR Calculates and saves UUID -v, --verbose be verbose -d DIR Crash dump directory Run tested. Thus, now entire cycle of coredump processing/reporting consists of external programs: abrt-action-analyze-c abrt-action-save-package-data abrt-action-install-debuginfo abrt-action-generate-backtrace abrt-action-bugzilla Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* move bugzilla reporting to a separate program (abrt-action-bugzilla)Denys Vlasenko2010-10-111-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch splits off Bugzilla plugin's bugzilla submission generation into a separate tool: abrt-action-bugzilla: invalid option -- 'z' Usage: abrt-action-bugzilla -c CONFFILE -d DIR [-vs] Report a crash to Bugzilla Options: -c FILE Configuration file (may be given many times) -d DIR Crash dump directory -v Verbose -s Log to syslog This change is bigger than previous similar patches: I needed to find a way to pass settings to the child and get back reporting result - all without breaking current interface. I decided to pass configuration via -c CONFFILE: (1) it is trivial to pass /etc/abrt/bugzilla.conf to it, and (2) I can use "-c -" to parse config from stdin. abrtd simply write per-reporting settings to child's stdin. The log and reporting result (success/failure) is taken from child's stdout. After a few more such patches, we can remove XMLRPC and HTTP code and library dependencies from abrtd. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* rename abrt-debuginfo-install to abrt-action-install-debuginfoDenys Vlasenko2010-09-231-1/+1
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* This patch splits off abrtd's package/component/descriptionDenys Vlasenko2010-09-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | generation into a separate tool: abrt-action-save-package-data: invalid option -- 'z' Usage: abrt-action-save-package-data -d DIR [-vs] Query package database and save package name, component, and description Options: -d DIR Crash dump directory -v Verbose -s Log to syslog This also allows for debugging and regression testing of abrt-action-save-package-data - it can be simply run from command-line. Also it provides a better fault isolation - crash in abrt-action-save-package-data does not take down abrtd. Same goes for isolation of memory leaks - old code actually had leaks on a rarely used error path. New code doesn't, but if it would have, it wouldn't matter, since the process is short-lived. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* fixed spec file so $ make test-rpm works againJiri Moskovcak2010-09-221-4/+4
|
* This patch splits off CCpp's backtrace generation into a separate tool:Denys Vlasenko2010-09-201-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | $ abrt-action-generate-backtrace -z abrt-action-generate-backtrace: invalid option -- 'z' Usage: abrt-action-generate-backtrace -d DIR [-i DIR1:DIR2] [-t SECONDS] [-vs] Generate backtrace, its quality rating, hash, and crashed function Options: -d DIR Crash dump directory -i DIR1:DIR2 Additional debuginfo directories -t SECONDS Kill gdb if it runs for more than SECONDS -v Verbose -s Log to syslog This also allows for debugging and regression testing of abrt-action-generate-backtrace separately - it can be simply run from command-line. Also it provides a better fault isolation - crash in abrt-action-generate-backtrace does not take down abrtd. The code is based on CCpp.cpp. CCpp analyzer is made to spawn a child to do the backtrace generation. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* This patch makes abrtd spawn a new process, abrt-server,Denys Vlasenko2010-09-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | for every socket client. This allows for simpler timeout handling using SIGALRM, and makes timers for tracking client timeouts unnecessary. This also allows for debugging and regression testing of abrt-server separately - it can be simply run from command-line and fed commands on stdin. Also it provides a better fault isolation - crash in abrt-server does not take down abrtd. The code is based on dumpsocket.{cpp,h}. Most of dumpsocket.cpp goes to abrt-server.c, a small part goes to Daemon.cpp (i.e. to abrtd). This change will not compile - it does not have dumpsocket.cpp renamed to abrt-server.c, which makes the change easier to read. The next change, which I'll commit after this one, contains only the renaming. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt.spec: make /abrtd more "greppable"Denys Vlasenko2010-09-141-1/+1
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt.spec: fix customizing buildNikola Pajkovsky2010-09-031-5/+6
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* increased version to 1.1.14Jiri Moskovcak2010-08-111-1/+1
|
* lower case direcotry(no code changed)Nikola Pajkovsky2010-08-101-1/+1
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* added native systemd file rhbz#617316Jiri Moskovcak2010-08-091-7/+50
|
* remove libzip codeNikola Pajkovsky2010-08-051-1/+1
| | | | | | Do we really need zip compression? Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* increased version to 1.1.13Jiri Moskovcak2010-08-041-1/+1
|
* add libxml-2.0 into configureNikola Pajkovsky2010-08-041-0/+1
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* tutorial how-to build your own reporter pluginNikola Pajkovsky2010-07-291-0/+1
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* version 1.1.121.1.12Jiri Moskovcak2010-07-281-1/+1
|
* rename *.GTKBuilder to *.gladeJiri Moskovcak2010-07-281-6/+6
| | | | | | - it seems that intltool ignores the GTKBuilder suffix, so the strings from our plugin settings dialog were not translatable, renaming to .glade seems to fix this
* increased version to 1.1.11Jiri Moskovcak2010-07-221-1/+1
| | | | - 1.1.10 is out already, so now we're working on 1.1.11
* Version 1.1.101.1.10Karel Klic2010-07-141-1/+1
|
* Version 1.1.91.1.9Karel Klic2010-07-131-1/+1
|
* SPEC: rhtsupport obsoletes the old rh pluginsKarel Klic2010-07-121-0/+3
| | | | Author: Jiri Moskovcak <jmoskovc@redhat.com>
* mv devel header files to inc/ and install themJiri Moskovcak2010-07-091-0/+2
| | | | | | - header files are required to write the custom plugins plugins without downloading the whole git tree, user just need to install abrt-devel package
* updated spec file to reflect the plugin renamingJiri Moskovcak2010-06-301-4/+5
|
* renamed TicketUploader to ReportUploaderJiri Moskovcak2010-06-301-4/+4
|
* remove obsolete Catcut and rhfastcheck reportersDenys Vlasenko2010-06-291-30/+0
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* bump version to 1.1.8Denys Vlasenko2010-06-251-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* really create the abrt-upload directoryJiri Moskovcak2010-06-231-0/+1
|
* Create /var/spool/abrt-upload when installing abrtKarel Klic2010-06-231-0/+1
|
* added WatchCrashdumpArchiveDir directive to abrt.conf and related codeDenys Vlasenko2010-06-221-0/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* incresed version - 1.1.7Jiri Moskovcak2010-06-171-1/+1
|
* RHTSupport: actually use settings; report curl errors betterDenys Vlasenko2010-06-151-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Add a GUI config dialog for RHTSupport pluginDenys Vlasenko2010-06-151-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* increased versionJiri Moskovcak2010-06-151-1/+1
|
* plugin rename: rhticket -> RHTSupportDenys Vlasenko2010-06-141-8/+8
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Remove abrt-hook-python deprecated by abrtd socketkarel2010-06-091-1/+0
|
* increased version - 1.1.51.1.5Jiri Moskovcak2010-06-091-1/+19
|
* SPEC: added CFLAGS="-fno-strict-aliasing" to fix the rpmdiff warningsJiri Moskovcak2010-06-041-0/+1
|
* properly obsolete gnome-python2-bugbuddy rhbz#579748Jiri Moskovcak2010-05-281-0/+1
|
* rename a few remaining /var/cache/abrt -> /var/spool/abrtDenys Vlasenko2010-05-261-0/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* updated spec fileJiri Moskovcak2010-05-261-1/+7
|
* More fixes for /var/cache/abrt -> /var/spool/abrt conversion1.1.3Denys Vlasenko2010-05-211-1/+11
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* increased version to 1.1.21.1.2Jiri Moskovcak2010-05-191-22/+77
|
* obsolete gnome-python2-bugbuddy rhbz#579748Jiri Moskovcak2010-05-181-0/+1
|
* Revert "Remove abrt-hook-python, deprecated by abrtd socket"Nikola Pajkovsky2010-05-141-0/+1
| | | | This reverts commit d0dde2aaf81f5ff24b57ce4647a89628ae411bbc.
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtNikola Pajkovsky2010-05-121-1/+1
|\
| * increased version to 1.1.11.1.1Jiri Moskovcak2010-05-121-1/+1
| |
* | Remove abrt-hook-python, deprecated by abrtd socketKarel Klic2010-05-121-1/+0
|/
* updated icons rhbz#587698Jiri Moskovcak2010-05-031-2/+3
| | | | - thanks to Lapo Calamandrei for the icons