Dear All (and also CCing python-edbus the only bug)

1. building and installing

From
http://pkg-fso.alioth.debian.org/debian/dists/unstable/main/binary-amd64/Packages
python-edbus and zhone-illume-glue are missing (probably related to #494612 but
it is present for i386 thus I am CCing) thus can't install zhone from the
repo

although I am running now testing/sid/experimental tandem it might be that it
is the mix mix dependent: python-edbus seems to be missing build-depends
on python-ecore (or smth else or stricter versions?) since dpkg-buildpakckage
of python-edbus build fails with

cd . && python2.4 setup.py build --build-base="/tmp/python-edbus-0.2.1/./build"
Package ecore was not found in the pkg-config search path.
Perhaps you should add the directory containing `ecore.pc'
to the PKG_CONFIG_PATH environment variable
Package 'ecore', required by 'edbus', not found

ecore.pc is built as part of ecore package build process, and is shipped within
libecore-dev, which is again missing from Build-Depends.

I don't know internals but shouldn't zhone-illume-glue be Recommends:
instead of Depends?


2. running
$> zhone
Traceback (most recent call last):
  File "/usr/bin/zhone", line 1959, in <module>
    gui = GUI( options, args )
  File "/usr/bin/zhone", line 1504, in __init__
    self.groups[page] = ctor( self )
  File "/usr/bin/zhone", line 1065, in __init__
    self.set_button_text(0)
  File "/usr/bin/zhone", line 1102, in set_button_text
    self.part_text_set("label_%d_%d" % (i,j) , self.button_labels[num][j][i])
UnicodeEncodeError: 'ascii' codec can't encode character u'\u21e9' in position 
0: ordinal not in range(128)

I just wonder why this could be?

since I am impatient I just wrapped few problematic lines with try: except: ;)
and it started but then I get similar issues at other places (like reading
mails), so I just overrode that damn method for now and caught any exception
and now it runs fine... smth might not been drawn but I don't even know what to
expect ;-))

here is my evil override:

    def part_text_set(self, *args, **kwargs):
        try:
                super (edje_group, self).part_text_set(*args, **kwargs)
        except:
                pass


-- 
Yaroslav Halchenko
Research Assistant, Psychology Department, Rutgers-Newark
Student  Ph.D. @ CS Dept. NJIT
Office: (973) 353-5440x263 | FWD: 82823 | Fax: (973) 353-1171
        101 Warren Str, Smith Hall, Rm 4-105, Newark NJ 07102
WWW:     http://www.linkedin.com/in/yarik        



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to