Your message dated Sat, 14 Sep 2013 18:03:03 +0000
with message-id <e1vkubt-0001i4...@franck.debian.org>
and subject line Bug#722917: fixed in movabletype-opensource 5.2.7+dfsg-1
has caused the Debian Bug report #722917,
regarding movabletype-opensource: Movabletype broken by Perl 5.18
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
722917: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=722917
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: movabletype-opensource
Version: 5.1.4+dfsg-5
Severity: grave
Tags: upstream patch
Justification: renders package unusable

Dear Maintainer,

Upgrading to Perl 5.18.1-3 in Testing broke MovableType's Dashboard view.

Four of the Perl files in /usr/share/perl5/MT/Template/Tags contain a syntax 
error that
earlier versions of Perl evidently liked just fine.  This issue cases an error 
message 
to be displayed instead of many of the administrative pages, including the 
"Create New Entry" 
page.

The attached patch fixes the problem for me.  I am no Perl expert, so I don't 
claim this fix
is optimal, and I've done only minimal testing so I can't state that there are 
no other problems.


-- System Information:
Debian Release: jessie/sid
  APT prefers oldstable-updates
  APT policy: (500, 'oldstable-updates'), (500, 'testing'), (500, 'stable'), 
(450, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 3.10-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages movabletype-opensource depends on:
ii  dbconfig-common                  1.8.47+nmu1
ii  debconf [debconf-2.0]            1.5.51
ii  libalgorithm-diff-perl           1.19.02-3
ii  libclass-accessor-perl           0.34-1
ii  libclass-data-inheritable-perl   0.08-2
ii  libclass-trigger-perl            0.14-1
ii  libcrypt-ssleay-perl             0.58-1+b1
ii  libdata-objectdriver-perl        0.09-1
ii  libdbd-mysql-perl                4.023-1+b1
ii  libdbd-pg-perl                   2.19.3-1+b1
ii  libdbd-sqlite3-perl              1.40-1+b1
ii  libdbi-perl                      1.628-1+b1
ii  libgd-gd2-perl                   1:2.46-3.1+b1
ii  libhtml-parser-perl              3.71-1+b1
ii  libimage-size-perl               3.232-1
ii  libipc-run-perl                  0.92-1
ii  libjs-jquery                     1.7.2+dfsg-3
ii  libjson-perl                     2.59-1
ii  liblucene-queryparser-perl       1.04-2
ii  libmime-encwords-perl            1.014-1
ii  libnet-openid-consumer-perl      1.13-1
ii  libtheschwartz-perl              1.07-1
ii  liburi-fetch-perl                0.09-1
ii  liburi-perl                      1.60-1
ii  libwww-perl                      6.05-1
ii  libxml-atom-perl                 0.41-1
ii  libxml-sax-perl                  0.99+dfsg-2
ii  libxml-xpath-perl                1.13-7
ii  libyaml-tiny-perl                1.51-2
ii  mysql-client                     5.5.31+dfsg-1
ii  mysql-client-5.5 [mysql-client]  5.5.31+dfsg-1
ii  perl-modules [libversion-perl]   5.18.1-4
ii  perlmagick                       8:6.7.7.10-6
ii  postfix [mail-transport-agent]   2.10.1-2
ii  sqlite                           2.8.17-8
ii  ucf                              3.0027+nmu1

Versions of packages movabletype-opensource recommends:
ii  libarchive-zip-perl                 1.30-7
ii  libsoap-lite-perl                   0.716-1
ii  perl-modules [libarchive-tar-perl]  5.18.1-4

movabletype-opensource suggests no packages.

-- debconf information excluded
--- Asset.pm~	2013-06-01 05:56:38.000000000 -0400
+++ Asset.pm	2013-09-13 22:15:10.697975204 -0400
@@ -263,8 +263,8 @@
         my $namespace = $args->{namespace};
 
         my $need_join = 0;
-        for my $f
-            qw( min_score max_score min_rate max_rate min_count max_count scored_by )
+        my @fs = qw( min_score max_score min_rate max_rate min_count max_count scored_by );
+        for my $f (@fs)
         {
             if ( $args->{$f} ) {
                 $need_join = 1;
--- Author.pm~	2013-06-01 05:56:38.000000000 -0400
+++ Author.pm	2013-09-13 22:17:01.649218537 -0400
@@ -340,8 +340,8 @@
                 $need_join = 1;
             }
             else {
-                for my $f
-                    qw( min_score max_score min_rate max_rate min_count max_count scored_by )
+                my @fs = qw( min_score max_score min_rate max_rate min_count max_count scored_by );
+                for my $f (@fs)
                 {
                     if ( $args->{$f} ) {
                         $need_join = 1;
--- Entry.pm~	2013-06-01 05:56:38.000000000 -0400
+++ Entry.pm	2013-09-13 22:11:57.431293068 -0400
@@ -654,9 +654,9 @@
         my $namespace = $args->{namespace};
 
         my $need_join = 0;
-        for my $f
-            qw( min_score max_score min_rate max_rate min_count max_count scored_by )
-        {
+
+	my @fs = qw (min_score max_score min_rate max_rate min_count max_count scored_by);
+        for my $f (@fs) { 
             if ( $args->{$f} ) {
                 $need_join = 1;
                 last;
--- Comment.pm~	2013-06-01 05:56:38.000000000 -0400
+++ Comment.pm	2013-09-13 22:13:21.566719393 -0400
@@ -200,8 +200,8 @@
             $need_join = 1;
         }
         else {
-            for my $f
-                qw( min_score max_score min_rate max_rate min_count max_count scored_by )
+	    my @fs = qw( min_score max_score min_rate max_rate min_count max_count scored_by );
+            for my $f (@fs) 
             {
                 if ( $args->{$f} ) {
                     $need_join = 1;

--- End Message ---
--- Begin Message ---
Source: movabletype-opensource
Source-Version: 5.2.7+dfsg-1

We believe that the bug you reported is fixed in the latest version of
movabletype-opensource, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 722...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Dominic Hargreaves <d...@earth.li> (supplier of updated movabletype-opensource 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sat, 14 Sep 2013 18:48:35 +0100
Source: movabletype-opensource
Binary: movabletype-opensource movabletype-plugin-core
Architecture: source all
Version: 5.2.7+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Movable Type and OpenMelody team 
<pkg-mt-om-de...@lists.alioth.debian.org>
Changed-By: Dominic Hargreaves <d...@earth.li>
Description: 
 movabletype-opensource - Well-known blogging engine
 movabletype-plugin-core - Core Movable Type plugins
Closes: 718043 722917
Changes: 
 movabletype-opensource (5.2.7+dfsg-1) unstable; urgency=low
 .
   * Include updated watch file from Bart Martens
   * Add Italian debconf translation (Closes: #718043)
   * New upstream release (Closes: #722917)
   * Drop movabletype-plugin-zemanta package, no longer provided by
     upstream
Checksums-Sha1: 
 bd19e1c22dd497d373228ec5360290e9d66a1e8b 1595 
movabletype-opensource_5.2.7+dfsg-1.dsc
 8ad1dcad0c1c11178c724379b2bcf5699cbe7935 7972994 
movabletype-opensource_5.2.7+dfsg.orig.tar.gz
 9113308bd88fa495342167d4ef996e1735b94b9e 38097 
movabletype-opensource_5.2.7+dfsg-1.debian.tar.gz
 0b51ae1b2b59ab5f71850dcced2cc64c1b5ba0d7 2995968 
movabletype-opensource_5.2.7+dfsg-1_all.deb
 9c61bd26c626127ff56be84a7868547c146ced22 631330 
movabletype-plugin-core_5.2.7+dfsg-1_all.deb
Checksums-Sha256: 
 720b2a177c9d4cdeb67ebae866c8d5e74048476cf91f5fd64065981701e76cd7 1595 
movabletype-opensource_5.2.7+dfsg-1.dsc
 0cba26d18e7b564ff0e007f950f8bae7ba51637d6a8846183056f1a42ef89d3f 7972994 
movabletype-opensource_5.2.7+dfsg.orig.tar.gz
 5aed31adfc18ee1a6be17c01a74551a6ad6e8435c0306dd8d93f8c973ab8e3cb 38097 
movabletype-opensource_5.2.7+dfsg-1.debian.tar.gz
 67dbed31945c6f19c0e3fb3a5c6d705a8be4869b33ac3ad6c163d5ec8b6e745f 2995968 
movabletype-opensource_5.2.7+dfsg-1_all.deb
 315b2f8a1f4bb763e705daa0ceb3be088abde5eefa656a7d1f269744d181dde4 631330 
movabletype-plugin-core_5.2.7+dfsg-1_all.deb
Files: 
 826f3a675ee3dbd2f9908175ad78153b 1595 web optional 
movabletype-opensource_5.2.7+dfsg-1.dsc
 4a622b244a53103768b1416a32e817ae 7972994 web optional 
movabletype-opensource_5.2.7+dfsg.orig.tar.gz
 6a620cc301a9051bff89e75e6514e46b 38097 web optional 
movabletype-opensource_5.2.7+dfsg-1.debian.tar.gz
 246b929ffa378df845b956b3b86795f9 2995968 web optional 
movabletype-opensource_5.2.7+dfsg-1_all.deb
 a9dca078bd20ca4fec947e75dae81e05 631330 web optional 
movabletype-plugin-core_5.2.7+dfsg-1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.14 (GNU/Linux)

iD8DBQFSNKIIYzuFKFF44qURAmDwAJ9d8pFuGKpRr9KO2+b26CUvWqevzgCgkrN9
T7Wmwoth0xpKob/a3+j16bQ=
=/P06
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to