Are you building the _fill.so file? In my system (Fedora) if I execute make have an error. It can be resolved changing the following lines in Makefile:
[gonz...@nautilus fill]$ diff -u Makefile.ori Makefile --- Makefile.ori 2010-08-10 07:53:29.000000000 -0300 +++ Makefile 2010-08-10 07:55:41.000000000 -0300 @@ -34,11 +34,11 @@ #Rafael Barbolo Lopes ([email protected]) #Alexandre A. Gonçalves Martinazzo ([email protected]) -CFLAGS = $(shell pkg-config --cflags gtk+-2.0 pygtk-2.0) \ +CFLAGS = $(shell pkg-config --cflags gtk+-2.0 pygtk-2.0 | sed 's/-pthread//') \ $(shell python-config --cflags) \ -fPIC -LDFLAGS = $(shell pkg-config --libs gtk+-2.0 pygtk-2.0) \ +LDFLAGS = $(shell pkg-config --libs gtk+-2.0 pygtk-2.0 | sed 's/-pthread//') \ $(shell python-config --libs) ARCH = $(shell arch | grep 64 >/dev/null && echo linux64 || echo linux32) I dont know if this is the problem in Ubuntu. I am not a packager and don't have a Ubuntu or Debian system. Gonzalo On Thu, Aug 5, 2010 at 5:20 PM, Ankur Khurana <[email protected]> wrote: > Hi, > > I am sending the mail as per our last conversation :). Can you help me out > to get the activity running? you mentioned about the makefile in fill > directory , can you tell , what should i look for ? > > I will be thankful for your precious time and help :) . > > On Mon, Aug 2, 2010 at 10:57 PM, Ankur Khurana <[email protected]> wrote: > >> >> Hi, >> I am Ankur and i was working on packaging Paint activity for Debian.But i >> have encountered some Problem while packaging it. I am pasting the log file >> here as well as i am attaching it in form of txt file. >> >> Traceback (most recent call last): >>> >>> >>> File "/usr/bin/sugar-activity", line 21, in <module> >>> main.main() >>> File "/usr/lib/python2.6/dist-packages/sugar/activity/main.py", line 117, >>> in main >>> module = __import__(module_name) >>> >>> >>> File "/usr/share/sugar/activities/Paint.activity/OficinaActivity.py", >>> line 74, in <module> >>> from Area import Area >>> File "/usr/share/sugar/activities/Paint.activity/Area.py", line 70, in >>> <module> >>> >>> >>> from fill import * >>> File "/usr/share/sugar/activities/Paint.activity/fill/__init__.py", line >>> 21, in <module> >>> raise('cannot find proper binary blobs') >>> TypeError: exceptions must be old-style classes or derived from >>> BaseException, not str >>> >>> >>> Exited with status 1, pid 1974 data (None, <open file '<fdopen>', mode 'w' >>> at 0xa221c28>, '765b0abf380014b9bc3cbe6fe0503c45de1b7ae0') >>> >>> >> I am attaching the deb file with this email. The link to git repo is : >> http://git.debian.org/?p=collab-maint/sugar-paint-activity.git;a=summary >> >> > > Regards, > Ankur > > >
-- Ubuntu-sugarteam mailing list [email protected] Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-sugarteam
