diff options
| author | Denys Vlasenko <dvlasenk@redhat.com> | 2010-11-12 19:07:35 +0100 |
|---|---|---|
| committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-11-12 19:07:35 +0100 |
| commit | ebca5d14587febec8f584ea2cfcc4592d0c17c34 (patch) | |
| tree | fde2a4f7cfc687d9e5dac4b5b6a4be13ab724f6b /src/plugins | |
| parent | 93549e6dd2e64eeaa825997668d9342ad89547f2 (diff) | |
| download | abrt-ebca5d14587febec8f584ea2cfcc4592d0c17c34.tar.gz abrt-ebca5d14587febec8f584ea2cfcc4592d0c17c34.tar.xz abrt-ebca5d14587febec8f584ea2cfcc4592d0c17c34.zip | |
Removed "old" Kerneloops and Python analyzers. They were empty
Run-tested that python crashes are still caught
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/Kerneloops.cpp | 31 | ||||
| -rw-r--r-- | src/plugins/Kerneloops.h | 38 | ||||
| -rw-r--r-- | src/plugins/Makefile.am | 17 | ||||
| -rw-r--r-- | src/plugins/Python.cpp | 30 | ||||
| -rw-r--r-- | src/plugins/Python.h | 30 |
5 files changed, 2 insertions, 144 deletions
diff --git a/src/plugins/Kerneloops.cpp b/src/plugins/Kerneloops.cpp deleted file mode 100644 index 37cab992..00000000 --- a/src/plugins/Kerneloops.cpp +++ /dev/null @@ -1,31 +0,0 @@ -/* - Copyright (C) 2010 ABRT team - Copyright (C) 2010 RedHat Inc - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - Authors: - Anton Arapov <anton@redhat.com> - Arjan van de Ven <arjan@linux.intel.com> - */ - -#include "abrtlib.h" -#include "Kerneloops.h" -#include "abrt_exception.h" - -PLUGIN_INFO(ANALYZER, - CAnalyzerKerneloops, - "Kerneloops", - "0.0.2", - _("Analyzes kernel oopses"), - "anton@redhat.com", - "https://people.redhat.com/aarapov", - ""); diff --git a/src/plugins/Kerneloops.h b/src/plugins/Kerneloops.h deleted file mode 100644 index 914f1fc8..00000000 --- a/src/plugins/Kerneloops.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright 2007, Intel Corporation - * Copyright 2009, Red Hat Inc. - * - * This file is part of Abrt. - * - * This program file is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation; version 2 of the License. - * - * This program is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - * for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program in a file named COPYING; if not, write to the - * Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301 USA - * - * Authors: - * Anton Arapov <anton@redhat.com> - * Arjan van de Ven <arjan@linux.intel.com> - */ - -#ifndef __INCLUDE_GUARD_KERNELOOPS_H_ -#define __INCLUDE_GUARD_KERNELOOPS_H_ - -#include "plugin.h" -#include "analyzer.h" -#include <string> - -class CAnalyzerKerneloops : public CAnalyzer -{ -}; - -#endif diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am index c131e3ea..f213804e 100644 --- a/src/plugins/Makefile.am +++ b/src/plugins/Makefile.am @@ -7,9 +7,7 @@ libexec_SCRIPTS = \ pluginslib_LTLIBRARIES = \ libCCpp.la \ - libPython.la \ libKerneloopsScanner.la \ - libKerneloops.la \ libSQLite3.la dist_pluginslib_DATA = \ @@ -38,9 +36,9 @@ man_MANS = \ abrt-KerneloopsReporter.7 \ abrt-Logger.7 \ abrt-Mailx.7 \ - abrt-plugins.7 \ abrt-Upload.7 \ - abrt-SQLite3.7 + abrt-SQLite3.7 \ + abrt-plugins.7 EXTRA_DIST = $(man_MANS) abrt-action-install-debuginfo @@ -62,11 +60,6 @@ libCCpp_la_CPPFLAGS = -Wall -Werror \ -DLOCALSTATEDIR='"$(localstatedir)"' # -DHOSTILE_KERNEL -# Kerneloops -libKerneloops_la_SOURCES = Kerneloops.cpp Kerneloops.h -libKerneloops_la_LDFLAGS = -avoid-version -libKerneloops_la_CPPFLAGS = -I$(INC_PATH) -I$(UTILS_PATH) - # KerneloopsScanner libKerneloopsScanner_la_SOURCES = KerneloopsScanner.cpp KerneloopsScanner.h KerneloopsSysLog.cpp KerneloopsSysLog.h libKerneloopsScanner_la_LDFLAGS = -avoid-version $(GLIB_LIBS) @@ -78,12 +71,6 @@ libSQLite3_la_LDFLAGS = -avoid-version libSQLite3_la_LIBADD = $(SQLITE3_LIBS) $(GLIB_LIBS) libSQLite3_la_CPPFLAGS = -I$(INC_PATH) -I$(UTILS_PATH) $(SQLITE3_CFLAGS) -DLOCALSTATEDIR='"$(localstatedir)"' $(GLIB_CFLAGS) -# Python -libPython_la_SOURCES = Python.h Python.cpp -#libPython_la_LIBADD = $(NSS_LIBS) -libPython_la_LDFLAGS = -avoid-version -libPython_la_CPPFLAGS = -I$(INC_PATH) -I$(UTILS_PATH) - libexec_PROGRAMS = \ abrt-action-analyze-c \ abrt-action-analyze-python \ diff --git a/src/plugins/Python.cpp b/src/plugins/Python.cpp deleted file mode 100644 index e955b5fb..00000000 --- a/src/plugins/Python.cpp +++ /dev/null @@ -1,30 +0,0 @@ -/* - Copyright (C) 2010 ABRT team - Copyright (C) 2010 RedHat Inc - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -*/ -#include "abrtlib.h" -#include "Python.h" -#include "abrt_exception.h" - -PLUGIN_INFO(ANALYZER, - CAnalyzerPython, - "Python", - "0.0.1", - _("Analyzes crashes in Python programs"), - "zprikryl@redhat.com, jmoskovc@redhat.com", - "https://fedorahosted.org/abrt/wiki", - ""); diff --git a/src/plugins/Python.h b/src/plugins/Python.h deleted file mode 100644 index 3f01d2c6..00000000 --- a/src/plugins/Python.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - Copyright (C) 2010 ABRT team - Copyright (C) 2010 RedHat Inc - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -*/ -#ifndef PYTHON_H_ -#define PYTHON_H_ - -#include <string> -#include "plugin.h" -#include "analyzer.h" - -class CAnalyzerPython : public CAnalyzer -{ -}; - -#endif /* PYTHON_H_ */ |
