From bugzilla at redhat.com Wed Nov 18 00:53:22 2015 Content-Type: multipart/mixed; boundary="===============8767816167818704140==" MIME-Version: 1.0 From: Red Hat Bugzilla To: perl-devel at lists.fedoraproject.org Subject: [Bug 1092015] New: mojomojo-1.10-2.fc21 FTBFS Date: Mon, 28 Apr 2014 13:59:50 +0000 Message-ID: --===============8767816167818704140== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.redhat.com/show_bug.cgi?id=3D1092015 Bug ID: 1092015 Summary: mojomojo-1.10-2.fc21 FTBFS Product: Fedora Version: rawhide Component: mojomojo Assignee: iarnell(a)gmail.com Reporter: ppisar(a)redhat.com QA Contact: extras-qa(a)fedoraproject.org CC: iarnell(a)gmail.com, perl-devel(a)lists.fedoraproject.o= rg mojomojo-1.10-2.fc21 fails to build because 'Unicode wikilinks' t/unicode.t test fails with current Encode: $ CATALYST_CONFIG=3Dt/var/mojomojo.yml prove -l -v t/unicode.t [...] ok 6 - POST /.jsrpc/render ok 7 - basic Unicode: page content [error] Caught exception in MojoMojo::Controller::Jsrpc->render "Cannot dec= ode string with wide characters at /usr/lib64/perl5/vendor_perl/Encode.pm line 215." not ok 8 - Unicode wikilinks # Failed test 'Unicode wikilinks' # at t/unicode.t line 52. # got: " To: perl-devel at lists.fedoraproject.org Subject: [Bug 1092015] mojomojo-1.10-2.fc21 FTBFS Date: Mon, 28 Apr 2014 14:00:33 +0000 Message-ID: In-Reply-To: bug-1092015-178320@bugzilla.redhat.com --===============0326577941863187970== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.redhat.com/show_bug.cgi?id=3D1092015 Petr Pisar changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |1000256 Referenced Bugs: https://bugzilla.redhat.com/show_bug.cgi?id=3D1000256 [Bug 1000256] mojomojo contains bundled Flash files -- = 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=3DGXQq4df= 8Ml&a=3Dcc_unsubscribe --===============0326577941863187970==-- From bugzilla at redhat.com Wed Nov 18 00:53:23 2015 Content-Type: multipart/mixed; boundary="===============2814830188009359709==" MIME-Version: 1.0 From: Red Hat Bugzilla To: perl-devel at lists.fedoraproject.org Subject: [Bug 1092015] mojomojo-1.10-2.fc21 FTBFS Date: Mon, 28 Apr 2014 14:19:41 +0000 Message-ID: In-Reply-To: bug-1092015-178320@bugzilla.redhat.com --===============2814830188009359709== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.redhat.com/show_bug.cgi?id=3D1092015 --- Comment #1 from Petr Pisar --- The test is: $test =3D 'Unicode wikilinks'; my $unicode_string =3D '=E1=83=92=E1=83=90=E1=83=9C=E1=83=94=E1=83=99=E1=83= =A3=E1=83=97=E1=83=95=E1=83=9C=E1=83=94=E1=83=91=E1=83=90'; $content =3D "[[$unicode_string]]"; $mech->post('/.jsrpc/render', { content =3D> $content }); $mech->content_is(<<"HTML", $test);

$unicode_string?

HTML The Encode::decode_utf8() complains on: "\x{10d2}\x{10d0}\x{10dc}\x{10d4}\x{10d9}\x{10e3}\x{10d7}\x{10d5}\x{10dc}\x= {10d4}\x{10d1}\x{10d0}" $ perl -MEncode -e 'decode_utf8(qq{\x{10d2}\x{10d0}\x{10dc}\x{10d4}\x{10d9}\x{10e3}\x{10d7}\x{= 10d5}\x{10dc}\x{10d4}\x{10d1}\x{10d0}}, 1)' Cannot decode string with wide characters at /usr/lib64/perl5/vendor_perl/Encode.pm line 215. The \x{} notation corresponds to the '=E1=83=92=E1=83=90=E1=83=9C=E1=83=94= =E1=83=99=E1=83=A3=E1=83=97=E1=83=95=E1=83=9C=E1=83=94=E1=83=91=E1=83=90' s= tring. It looks like the unicode string is double-decoded, second decoding is performed on string with UTF-8 flag up instead of on bit-stream. -- = 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=3DliHASe4= 9Id&a=3Dcc_unsubscribe --===============2814830188009359709==-- From bugzilla at redhat.com Wed Nov 18 00:53:23 2015 Content-Type: multipart/mixed; boundary="===============3257460365464636898==" MIME-Version: 1.0 From: Red Hat Bugzilla To: perl-devel at lists.fedoraproject.org Subject: [Bug 1092015] mojomojo-1.10-2.fc21 FTBFS Date: Tue, 29 Apr 2014 07:17:49 +0000 Message-ID: In-Reply-To: bug-1092015-178320@bugzilla.redhat.com --===============3257460365464636898== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.redhat.com/show_bug.cgi?id=3D1092015 --- Comment #2 from Petr Pisar --- This bug is triggered by upgrading Encode from 2.52 to 2.53, more precisely= by commit: commit ff65c71aa64c0efd285e6905ac68ba4e2cb25541 Author: Tatsuhiko Miyagawa Date: Sun Aug 25 19:02:16 2013 -0700 Do not short-circuit decode_utf8 with utf8 flags diff --git a/Encode.pm b/Encode.pm index aea404a..5cee760 100644 --- a/Encode.pm +++ b/Encode.pm @@ -209,7 +209,6 @@ my $utf8enc; sub decode_utf8($;$) { my ( $octets, $check ) =3D @_; - return $octets if is_utf8($octets); return undef unless defined $octets; $octets .=3D '' if ref $octets; $check ||=3D 0; The former behavior was to return success on UTF-8-flagged string immediate= ly. Now, it checks the argument is correct UTF-8 byte-string. -- = 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=3DKgBeU36= zS1&a=3Dcc_unsubscribe --===============3257460365464636898==-- From bugzilla at redhat.com Wed Nov 18 00:53:23 2015 Content-Type: multipart/mixed; boundary="===============5058961732060677362==" MIME-Version: 1.0 From: Red Hat Bugzilla To: perl-devel at lists.fedoraproject.org Subject: [Bug 1092015] mojomojo-1.10-2.fc21 FTBFS Date: Tue, 29 Apr 2014 07:28:31 +0000 Message-ID: In-Reply-To: bug-1092015-178320@bugzilla.redhat.com --===============5058961732060677362== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.redhat.com/show_bug.cgi?id=3D1092015 Petr Pisar changed: What |Removed |Added ---------------------------------------------------------------------------- External Bug ID| |CPAN 87267 -- = 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=3D2VVh4En= BvV&a=3Dcc_unsubscribe --===============5058961732060677362==-- From bugzilla at redhat.com Wed Nov 18 00:53:24 2015 Content-Type: multipart/mixed; boundary="===============6645504142715729035==" MIME-Version: 1.0 From: Red Hat Bugzilla To: perl-devel at lists.fedoraproject.org Subject: [Bug 1092015] mojomojo-1.10-2.fc21 FTBFS Date: Tue, 29 Apr 2014 08:18:17 +0000 Message-ID: In-Reply-To: bug-1092015-178320@bugzilla.redhat.com --===============6645504142715729035== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.redhat.com/show_bug.cgi?id=3D1092015 Petr Pisar changed: What |Removed |Added ---------------------------------------------------------------------------- URL|https://koji.fedoraproject. |https://github.com/mojomojo |org/koji/buildinfo?buildID=3D |/mojomojo/issues/121 |466009 | --- Comment #3 from Petr Pisar --- Reported to mojomojo upstream as . -- = 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=3DyMCg0Fz= Jtj&a=3Dcc_unsubscribe --===============6645504142715729035==-- From bugzilla at redhat.com Wed Nov 18 00:53:24 2015 Content-Type: multipart/mixed; boundary="===============2869238919245526641==" MIME-Version: 1.0 From: Red Hat Bugzilla To: perl-devel at lists.fedoraproject.org Subject: [Bug 1092015] mojomojo-1.10-2.fc21 FTBFS Date: Tue, 29 Apr 2014 08:21:40 +0000 Message-ID: In-Reply-To: bug-1092015-178320@bugzilla.redhat.com --===============2869238919245526641== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.redhat.com/show_bug.cgi?id=3D1092015 Petr Pisar changed: What |Removed |Added ---------------------------------------------------------------------------- Version|rawhide |20 --- Comment #4 from Petr Pisar --- Fedora 20 is affected too. -- = 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=3D46Dofqw= GmP&a=3Dcc_unsubscribe --===============2869238919245526641==-- From bugzilla at redhat.com Wed Nov 18 00:53:24 2015 Content-Type: multipart/mixed; boundary="===============4475491366200698377==" MIME-Version: 1.0 From: Red Hat Bugzilla To: perl-devel at lists.fedoraproject.org Subject: [Bug 1092015] mojomojo-1.10-2.fc21 FTBFS Date: Tue, 29 Apr 2014 10:50:48 +0000 Message-ID: In-Reply-To: bug-1092015-178320@bugzilla.redhat.com --===============4475491366200698377== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.redhat.com/show_bug.cgi?id=3D1092015 --- Comment #5 from Petr Pisar --- Created attachment 890741 --> https://bugzilla.redhat.com/attachment.cgi?id=3D890741&action=3Dedit Prpoposed fix -- = 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=3DVAIhWLC= AxK&a=3Dcc_unsubscribe --===============4475491366200698377==-- From bugzilla at redhat.com Wed Nov 18 00:53:24 2015 Content-Type: multipart/mixed; boundary="===============1245557714155472639==" MIME-Version: 1.0 From: Red Hat Bugzilla To: perl-devel at lists.fedoraproject.org Subject: [Bug 1092015] mojomojo-1.10-2.fc21 FTBFS Date: Tue, 29 Apr 2014 10:53:03 +0000 Message-ID: In-Reply-To: bug-1092015-178320@bugzilla.redhat.com --===============1245557714155472639== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.redhat.com/show_bug.cgi?id=3D1092015 Petr Pisar changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|iarnell(a)gmail.com |ppisar(a)redhat.com -- = 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=3D2Th8Qnx= 5zx&a=3Dcc_unsubscribe --===============1245557714155472639==-- From bugzilla at redhat.com Wed Nov 18 00:53:24 2015 Content-Type: multipart/mixed; boundary="===============6903413413045198425==" MIME-Version: 1.0 From: Red Hat Bugzilla To: perl-devel at lists.fedoraproject.org Subject: [Bug 1092015] mojomojo-1.10-2.fc21 FTBFS Date: Tue, 29 Apr 2014 11:18:14 +0000 Message-ID: In-Reply-To: bug-1092015-178320@bugzilla.redhat.com --===============6903413413045198425== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.redhat.com/show_bug.cgi?id=3D1092015 Petr Pisar changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |MODIFIED Fixed In Version| |mojomojo-1.10-3.fc21 -- = 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=3Dcejc6Vb= yNY&a=3Dcc_unsubscribe --===============6903413413045198425==-- From bugzilla at redhat.com Wed Nov 18 00:53:24 2015 Content-Type: multipart/mixed; boundary="===============0822777543252083289==" MIME-Version: 1.0 From: Red Hat Bugzilla To: perl-devel at lists.fedoraproject.org Subject: [Bug 1092015] mojomojo-1.10-2.fc21 FTBFS Date: Tue, 29 Apr 2014 11:24:58 +0000 Message-ID: In-Reply-To: bug-1092015-178320@bugzilla.redhat.com --===============0822777543252083289== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.redhat.com/show_bug.cgi?id=3D1092015 --- Comment #6 from Fedora Update System --- mojomojo-1.10-3.fc20 has been submitted as an update for Fedora 20. https://admin.fedoraproject.org/updates/mojomojo-1.10-3.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=3DHmB2LCr= PA8&a=3Dcc_unsubscribe --===============0822777543252083289==-- From bugzilla at redhat.com Wed Nov 18 00:53:42 2015 Content-Type: multipart/mixed; boundary="===============4965635891927354489==" MIME-Version: 1.0 From: Red Hat Bugzilla To: perl-devel at lists.fedoraproject.org Subject: [Bug 1092015] mojomojo-1.10-2.fc21 FTBFS Date: Thu, 08 May 2014 10:00:46 +0000 Message-ID: In-Reply-To: bug-1092015-178320@bugzilla.redhat.com --===============4965635891927354489== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.redhat.com/show_bug.cgi?id=3D1092015 --- Comment #7 from Fedora Update System --- mojomojo-1.10-3.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=3DDbJ5qZq= mji&a=3Dcc_unsubscribe --===============4965635891927354489==-- From bugzilla at redhat.com Wed Nov 18 00:54:42 2015 Content-Type: multipart/mixed; boundary="===============5625465382666543717==" MIME-Version: 1.0 From: Red Hat Bugzilla To: perl-devel at lists.fedoraproject.org Subject: [Bug 1092015] mojomojo-1.10-2.fc21 FTBFS Date: Wed, 02 Jul 2014 13:17:22 +0000 Message-ID: In-Reply-To: bug-1092015-178320@bugzilla.redhat.com --===============5625465382666543717== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.redhat.com/show_bug.cgi?id=3D1092015 Petr Pisar changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |CLOSED Resolution|--- |ERRATA Last Closed| |2014-07-02 09:17:22 -- = 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=3Dt6emKvt= tON&a=3Dcc_unsubscribe --===============5625465382666543717==--