[GNOME-ABRT PATCH 1/4] Rename attribute in errors.InvalidProblem

2013-03-26 Thread Jakub Filak
Signed-off-by: Jakub Filak jfi...@redhat.com --- src/gnome_abrt/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gnome_abrt/errors.py b/src/gnome_abrt/errors.py index 2367aac..fffaf5e 100644 --- a/src/gnome_abrt/errors.py +++ b/src/gnome_abrt/errors.py @@ -25,7

[GNOME-ABRT PATCH 3/4] Add 'Report problem with ABRT' dialog

2013-03-26 Thread Jakub Filak
- related to #18 Signed-off-by: Jakub Filak jfi...@redhat.com --- po/POTFILES.in | 1 + src/gnome_abrt/Makefile.am | 1 + src/gnome_abrt/dialogs.py | 127 + 3 files changed, 129 insertions(+) create mode 100644

Re: [ABRT PATCH] dbus: check correct errno after dump_dir_is_accessible_by_uid()

2013-03-26 Thread Miroslav Lichvar
Pushed. Thanks. On Tue, Mar 26, 2013 at 09:30:21AM +0100, Jakub Filak wrote: Signed-off-by: Jakub Filak jfi...@redhat.com --- src/dbus/abrt-dbus.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c index e3be4ce..9d7f1ff

[LIBREPORT PATCH] dump_dir_accessible_by_uid(): clear errno if error didn't occure

2013-03-26 Thread Jakub Filak
Signed-off-by: Jakub Filak jfi...@redhat.com --- src/lib/dump_dir.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/dump_dir.c b/src/lib/dump_dir.c index 6289302..ac3b0e1 100644 --- a/src/lib/dump_dir.c +++ b/src/lib/dump_dir.c @@ -1252,6 +1252,8 @@ int

Re: [LIBREPORT PATCH] dump_dir_accessible_by_uid(): clear errno if error didn't occure

2013-03-26 Thread Denys Vlasenko
On 03/26/2013 04:09 PM, Jakub Filak wrote: Signed-off-by: Jakub Filak jfi...@redhat.com --- src/lib/dump_dir.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/dump_dir.c b/src/lib/dump_dir.c index 6289302..ac3b0e1 100644 --- a/src/lib/dump_dir.c +++ b/src/lib/dump_dir.c @@

Re: [ABRT PATCH] Integration with satyr

2013-03-26 Thread Martin Milata
On Mon, Mar 25, 2013 at 17:58:57 +0100, Jakub Filak wrote: Thank you. The patch looks good to me. Please, split it to tow separate patches. The first for the spec file and the second for the rest. Then I will test it and push it. On Thursday, March 07, 2013 04:47:06 PM Martin Milata wrote:

[PATCH 1/2] Integration with satyr

2013-03-26 Thread Martin Milata
ABRT can now be built against satyr instead of btparser using --with-satyr parameter to the configure script. RPMs are built against btparser. For the most part, the code is changed to use satyr and satyr-compat.h is provided to wrap btparser in interface mimicking that of satyr. When the

[PATCH 2/2] spec: integration with satyr

2013-03-26 Thread Martin Milata
Signed-off-by: Martin Milata mmil...@redhat.com --- abrt.spec.in | 4 1 file changed, 4 insertions(+) diff --git a/abrt.spec.in b/abrt.spec.in index 799d0fd..29a829b 100644 --- a/abrt.spec.in +++ b/abrt.spec.in @@ -47,6 +47,8 @@ BuildRequires: doxygen BuildRequires: xmlto BuildRequires:

[PATCH 1/2] Integration with satyr

2013-03-26 Thread Martin Milata
libreport can now be built against satyr instead of btparser using --with-satyr parameter to the configure script. RPMs are built against btparser. Signed-off-by: Martin Milata mmil...@redhat.com --- configure.ac| 18 - libreport-web.pc.in | 2 +-

[PATCH 2/2] spec: integration with satyr

2013-03-26 Thread Martin Milata
Signed-off-by: Martin Milata mmil...@redhat.com --- libreport.spec.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libreport.spec.in b/libreport.spec.in index aedb059..c2cd6a9 100644 --- a/libreport.spec.in +++ b/libreport.spec.in @@ -27,7 +27,8 @@ BuildRequires: asciidoc

[ABRT PATCH] dbus: Ensure we're linked to GObject

2013-03-26 Thread Jakub Filak
- see https://bugzilla.gnome.org/show_bug.cgi?id=691077 - closes rhbz#927919 Signed-off-by: Jakub Filak jfi...@redhat.com --- src/dbus/abrt-dbus.c | 8 1 file changed, 8 insertions(+) diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c index 9d7f1ff..5389753 100644 ---

Re: [PATCH 1/2] Integration with satyr

2013-03-26 Thread Jakub Filak
$ git log -1 --oneline 35ef88f Integration with satyr $ make clean distclean; git clean -df; ./autogen.sh ./configure --with-satyr make ... config.status: executing po/stamp-it commands make all-recursive make[1]: Entering directory `/home/repos/git/abrt' Making all in src make[2]: Entering

[ABRT PATCHv3 2/2] spec: integration with satyr

2013-03-26 Thread Martin Milata
Signed-off-by: Martin Milata mmil...@redhat.com --- abrt.spec.in | 4 1 file changed, 4 insertions(+) diff --git a/abrt.spec.in b/abrt.spec.in index 799d0fd..29a829b 100644 --- a/abrt.spec.in +++ b/abrt.spec.in @@ -47,6 +47,8 @@ BuildRequires: doxygen BuildRequires: xmlto BuildRequires:

[ABRT PATCHv3 1/2] Integration with satyr

2013-03-26 Thread Martin Milata
ABRT can now be built against satyr instead of btparser using --with-satyr parameter to the configure script. RPMs are built against btparser. For the most part, the code is changed to use satyr and satyr-compat.h is provided to wrap btparser in interface mimicking that of satyr. When the

Re: [ABRT PATCHv3 2/2] spec: integration with satyr

2013-03-26 Thread Jakub Filak
NP. Pushed both. Thanks On Tuesday, March 26, 2013 05:43:18 PM Martin Milata wrote: Signed-off-by: Martin Milata mmil...@redhat.com --- abrt.spec.in | 4 1 file changed, 4 insertions(+) diff --git a/abrt.spec.in b/abrt.spec.in index 799d0fd..29a829b 100644 --- a/abrt.spec.in +++

Re: [LIBREPORT PATCH] change the exited with message with something less technical closes #143

2013-03-26 Thread Jakub Filak
Pushed. Thanks On Tuesday, March 26, 2013 05:08:21 PM Jiri Moskovcak wrote: Signed-off-by: Jiri Moskovcak jmosk...@redhat.com --- src/gui-wizard-gtk/wizard.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/gui-wizard-gtk/wizard.c