Your message dated Wed, 18 Dec 2013 12:48:47 +0000
with message-id <[email protected]>
and subject line Bug#732490: Removed package(s) from unstable
has caused the Debian Bug report #584331,
regarding libbuilder-ruby1.8: an external plugin for redmine is broken when 
xml.instruct (which calls to_xs in builder)
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 [email protected]
immediately.)


-- 
584331: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=584331
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: libbuilder-ruby1.8
Version: 2.1.2-2
Severity: normal
Tags: patch

 I have installed redminemylyn connector to find out (after much hurdle) that 
it failed due to 
/usr/lib/ruby/1.8/active_support/core_ext/string/xchar.rb 
defining to_xs as fast_xs (no arguments) and /usr/lib/ruby/1.8/builder/xchar.rb 
defining it with n escape argument.
Thus when redminemylyn plugin (server side of the connector) does xml.instruct! 
into the xml template it produces 
"ActionView::TemplateError (wrong number of arguments (1 for 0)) on line #1 of 
vendor/plugins/redmine_mylyn_connector/app/views/mylyn_connector/projects/all.rxml:"
 line 1 behing xml.instruct!
 I believe this could be a widespread issue as builder is used quite a lot as 
is xml.instruct!
 though the component I use "redmine mylyn" is not in debian so ...
I do not knwow what was the best course of action so I added a rescue with 
text.to_xs() ie without arguments in builder xmlbase.rb, ie:
--- /home/prahal/xmlbase.rb.orig  2010-06-03 11:18:38.000000000 +0200
+++ /home/prahal/xmlbase.rb.new 2010-06-03 11:18:53.000000000 +0200
@@ -131,7 +131,11 @@
       end
     else
       def _escape(text)
-        text.to_xs((@encoding != 'utf-8' or $KCODE != 'UTF8'))
+        begin
+   text.to_xs((@encoding != 'utf-8' or $KCODE != 'UTF8'))
+        rescue
+   text.to_xs()
+        end
       end
     end
 

Cheers
Alban


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.33-2-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages libbuilder-ruby1.8 depends on:
ii  libruby1.8                   1.8.7.249-3 Libraries necessary to run Ruby 1.

libbuilder-ruby1.8 recommends no packages.

libbuilder-ruby1.8 suggests no packages.

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/lib/ruby/1.8/builder/xmlbase.rb (from 
libbuilder-ruby1.8 package)
--- /home/prahal/xmlbase.rb.orig        2010-06-03 11:18:38.000000000 +0200
+++ /home/prahal/xmlbase.rb.new 2010-06-03 11:18:53.000000000 +0200
@@ -131,7 +131,11 @@
       end
     else
       def _escape(text)
-        text.to_xs((@encoding != 'utf-8' or $KCODE != 'UTF8'))
+        begin
+         text.to_xs((@encoding != 'utf-8' or $KCODE != 'UTF8'))
+        rescue
+         text.to_xs()
+        end
       end
     end
 

--- End Message ---
--- Begin Message ---
Version: 2.3.14-7+rm

Dear submitter,

as the package ruby-activesupport-2.3 has just been removed from the Debian 
archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see http://bugs.debian.org/732490

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)

--- End Message ---
_______________________________________________
Pkg-ruby-extras-maintainers mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

Reply via email to