[Bug 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2014-02-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943



--- Comment #11 from do...@uhusystems.com ---
Tried my program and the test cases with the upgraded perl-Glib, and everything
works fine.

Thanks.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=fIcXnPwadsa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2014-02-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943

Petr Pisar ppi...@redhat.com changed:

   What|Removed |Added

 Status|MODIFIED|CLOSED
 Resolution|--- |ERRATA
Last Closed||2014-02-06 06:57:20



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=J3IMzWtGqPa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2014-01-17 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943



--- Comment #10 from Fedora Update System upda...@fedoraproject.org ---
perl-Glib-1.304-1.fc20 has been pushed to the Fedora 20 stable repository.  If
problems still persist, please make note of it in this bug report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=FRhc2RVt0Ca=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2014-01-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943



--- Comment #8 from Petr Pisar ppi...@redhat.com ---
This bug report will be used for tracking the Glib incompatibility.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=G5xzgsl0zha=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2014-01-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943



--- Comment #9 from Fedora Update System upda...@fedoraproject.org ---
perl-Glib-1.304-1.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/perl-Glib-1.304-1.fc20

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=MAEtJBKcGga=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2014-01-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943



--- Comment #4 from Petr Pisar ppi...@redhat.com ---
Regarding the LC_NUMERIC, I added some debugging into the Exporter/Heavy.pm:

# perl -e 'use Gtk2 -init; use DBD::Pg'
DBI 1,52
isvstring no
looks_like_number no
$VAR1 = '1,52';
 at /usr/lib64/perl5/vendor_perl/DBD/Pg.pm line 71.
require DBD/Pg.pm called at -e line 1
main::BEGIN() called at /usr/lib64/perl5/vendor_perl/DBD/Pg.pm line 0
eval {...} called at /usr/lib64/perl5/vendor_perl/DBD/Pg.pm line 0
Invalid version format (non-numeric data) at
/usr/share/perl5/vendor_perl/Exporter/Heavy.pm line 253.
Compilation failed in require at -e line 1.
BEGIN failed--compilation aborted at -e line 1.

Seems like Gtk2 sets locale and then DBD::Pg passes stringified 1.52 value,
hence '1,52', to DBI-VERSION() which is of course wrong.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=AotgmPIiuta=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2014-01-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943



--- Comment #5 from Petr Pisar ppi...@redhat.com ---
Created attachment 847185
  -- https://bugzilla.redhat.com/attachment.cgi?id=847185action=edit
Test case

This is smaller test case.

One has to have a locale variables exported before executing the ./test.

It does not happen when using modules from perl bundle. Something is fishy in
dual-lived modules (version, Exporter) probably.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=TDhbGD0uaJa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2014-01-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943

Petr Pisar ppi...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|jples...@redhat.com |ppi...@redhat.com



--- Comment #6 from Petr Pisar ppi...@redhat.com ---
(In reply to Petr Pisar from comment #5) 
 It does not happen when using modules from perl bundle. Something is fishy
 in dual-lived modules (version, Exporter) probably.

It's caused by `version' module. version 0.9902 code as presents in Fedora 19
does not suffer from this problem.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=eYsp3KCDFOa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2014-01-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943



--- Comment #7 from Petr Pisar ppi...@redhat.com ---
(In reply to Petr Pisar from comment #6)
 (In reply to Petr Pisar from comment #5) 
  It does not happen when using modules from perl bundle. Something is fishy
  in dual-lived modules (version, Exporter) probably.
 
 It's caused by `version' module. version 0.9902 code as presents in Fedora
 19 does not suffer from this problem.

Tracked by bug #1050042.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=bcDpqJfS2ga=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943

Petr Pisar ppi...@redhat.com changed:

   What|Removed |Added

 CC||ppi...@redhat.com



--- Comment #3 from Petr Pisar ppi...@redhat.com ---
I did not looked what's the problem, just as a remark, LC_NUMERIC has always
been a problem in perl and especially in recent releases. Now, there is a huge
patch set coming into upstream development tree aiming to solve it
https://www.mail-archive.com/perl5-changes@perl.org/msg37800.html.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=tSORGrTeiOa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2013-12-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943



--- Comment #1 from do...@uhusystems.com ---
Installing Glib 1.303 from CPAN seems to solve the issue completely.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=NfF1My6Xila=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2013-12-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943

do...@uhusystems.com changed:

   What|Removed |Added

 CC||tcall...@redhat.com
  Component|perl-DBD-Pg |perl-Glib



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=8M2HYlJ4cia=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2013-12-19 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943



--- Comment #2 from do...@uhusystems.com ---
Getting closer:

The two case seems to be two different issue.

case 2 (package 'm' is not registered) could be solved by upgrading perl-glib.

case 1 (invalid version format) is probably caused by LC_NUMERIC as below:

LC_NUMERIC=hu_HU.utf8 perl -e 'use Gtk2 -init; use DBD::Pg;'
Invalid version format (non-numeric data) at
/usr/share/perl5/vendor_perl/Exporter/Heavy.pm line 237.
Compilation failed in require at -e line 1.
BEGIN failed--compilation aborted at -e line 1.

LC_NUMERIC=C perl -e 'use Gtk2 -init; use DBD::Pg;' - runs without error even
with 1.280 Glib packaged in F20.


In hungarian locale decimal comma is used instead of decimal point. I think
this could be the root cause of the problem somehow...

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=K2wAfpL3Tca=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel