Re: [Sugar-devel] [IAEP] [Marketing] [SoaS] Request for Artwork: Boot Screen (Alphinux)

2009-06-04 Thread Jigish Gohil
Hello Community

Here is what our artist came up with:

http://wiki.sugarlabs.org/go/Marketing_Team/Boot_Logo#openSUSE-Edu_Sugar_Boot_Theme

The idea is to make it vibrant so kids get attracted to whats going on
when Sugar boots up. Some artistic liberty is taken with Sugar logo,
as the logo cannot be animated all the colors of Sugar are used in one
logo. Extra touch of web 2.0 for gloss is added.

The design is done by Samyak Bhuta.

Ciao

Jigish
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


[Sugar-devel] [solved] Compiler warnings building olpcsound

2009-04-28 Thread Jigish Gohil
On Mon, Apr 27, 2009 at 5:05 PM, Jigish Gohil cyber...@opensuse.org wrote:
 On Mon, Apr 27, 2009 at 4:58 PM, Aleksey Lim alsr...@member.fsf.org wrote:


 I: Statement might be overflowing a buffer in strncat. Common mistake:
 BAD: strncat(buffer,charptr,sizeof(buffer)) is wrong, it takes the
 left over size as 3rd argument
 GOOD: strncat(buffer,charptr,sizeof(buffer)-strlen(buffer)-1)
 E: olpcsound bufferoverflowstrncat OOps/dumpf.c:178, 181, 187, 190

 I: Program causes undefined operation
 (likely same variable used twiceand post/pre incremented in the same
 expression).
 e.g. x = x++; Split it in two operations.
 E: olpcsound sequence-point Opcodes/gab/sliderTable.c:396, 420, 444, 467

 could you post scons cmdline

 Full build log:

 http://pastebin.com/f2b133522

 Changing the scons commandline shouldn't matter, oBS will not publish
 till the errors are fixed.

Hi

Just following up on the issue, Alsroot applied the attached patch to
get it going.

Cheers

-J

--- Csound5.10.1/OOps/dumpf.c.orig  2008-12-04 14:55:04.0 +
+++ Csound5.10.1/OOps/dumpf.c   2009-04-27 17:19:55.0 +
@@ -175,19 +175,19 @@
   outbuf[0] = '\0';
   while (--nk) {
 sprintf(buf1, %ld\t, (long) *kp++);
-strncat(outbuf, buf1, 256);
+strncat(outbuf, buf1, sizeof(buf1)-strlen(buf1)-1);
   }
   sprintf(buf1, %ld\n, (long) *kp);
-  strncat(outbuf, buf1, 256);
+  strncat(outbuf, buf1, sizeof(buf1)-strlen(buf1)-1);
   len = strlen(outbuf);
   break;
 case 8: *outbuf = '\0';
   while (--nk) {
 sprintf(buf1, %6.4f\t, *kp++);
-strncat(outbuf, buf1, 256);
+strncat(outbuf, buf1, sizeof(buf1)-strlen(buf1)-1);
   }
   sprintf(buf1, %6.4f\n, *kp);
-  strncat(outbuf, buf1, 256);
+  strncat(outbuf, buf1, sizeof(buf1)-strlen(buf1)-1);
   len = strlen(outbuf);
   break;
 default: csound-Die(csound, Str(unknown kdump format));
--- Csound5.10.1/Opcodes/gab/sliderTable.c.orig 2008-01-03
13:05:53.0 +
+++ Csound5.10.1/Opcodes/gab/sliderTable.c  2009-04-27 17:27:44.0 
+
@@ -364,7 +364,7 @@
 break;
  \
 }
  \
 *outTable++ =
  \
-*yt1++ = *c1++ * value + *c2++ * *yt1; /* filters the
output */ \
+*yt1 = *c1++ * value + *c2++ * *yt1; /* filters the
output */   \

  \
 min++; max++; j++; ftp++;
  \
 }
  \
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


[Sugar-devel] Compiler warnings building olpcsound

2009-04-27 Thread Jigish Gohil
Hi

I am getting the following message building olpcsound on openSUSE
Build Service. Without fix for this issue the packages built will not
get published. Could someone who knows what it means and what needs
fixing provide patch?

We are using Csound5.10.1

Thanks

Jigish

I: Statement might be overflowing a buffer in strncat. Common mistake:
BAD: strncat(buffer,charptr,sizeof(buffer)) is wrong, it takes the
left over size as 3rd argument
GOOD: strncat(buffer,charptr,sizeof(buffer)-strlen(buffer)-1)
E: olpcsound bufferoverflowstrncat OOps/dumpf.c:178, 181, 187, 190

I: Program causes undefined operation
(likely same variable used twiceand post/pre incremented in the same
expression).
e.g. x = x++; Split it in two operations.
E: olpcsound sequence-point Opcodes/gab/sliderTable.c:396, 420, 444, 467
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] Compiler warnings building olpcsound

2009-04-27 Thread Jigish Gohil
On Mon, Apr 27, 2009 at 4:58 PM, Aleksey Lim alsr...@member.fsf.org wrote:


 I: Statement might be overflowing a buffer in strncat. Common mistake:
 BAD: strncat(buffer,charptr,sizeof(buffer)) is wrong, it takes the
 left over size as 3rd argument
 GOOD: strncat(buffer,charptr,sizeof(buffer)-strlen(buffer)-1)
 E: olpcsound bufferoverflowstrncat OOps/dumpf.c:178, 181, 187, 190

 I: Program causes undefined operation
 (likely same variable used twiceand post/pre incremented in the same
 expression).
 e.g. x = x++; Split it in two operations.
 E: olpcsound sequence-point Opcodes/gab/sliderTable.c:396, 420, 444, 467

 could you post scons cmdline

Full build log:

http://pastebin.com/f2b133522

Changing the scons commandline shouldn't matter, oBS will not publish
till the errors are fixed.

Cheers

-J
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] Sugar on LTSP

2009-04-25 Thread Jigish Gohil
On Sat, Apr 25, 2009 at 10:06 PM, Sameer Verma sve...@sfsu.edu wrote:
 Hello,

 I had a conversation with our tech folks on campus yesterday, and
 Sugar via LTSP (http://www.ltsp.org/) came up. The original discussion
 was about LTSP and thin and fat clients, but this group is in the
 College of Education, so the conversation drifted towards Sugar. We've
  talked about this before, but I'll poke the embers again. Is Sugar
 usable via LTSP? Espcially the collaborative part via ejabberd?


I am not sure about ejabberd part, I am sure David would have more to
say on that.

Here is the live DVD with fully pre-configured LTSP server and Sugar as well:

http://en.opensuse.org/Education/Live

Kind regards

Jigish
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] Wanted: Servers for build farm

2009-04-06 Thread Jigish Gohil
On Mon, Apr 6, 2009 at 7:17 PM, Sascha Silbe
sascha-ml-ui-sugar-de...@silbe.org wrote:
 On Mon, Apr 06, 2009 at 06:48:42PM +0530, Jigish Gohil wrote:

 Have you looked at https://build.opensuse.org, it supports building of
 packages for RHEL, Fedora, Ubuntu, Debian, Mandriva all most recent
 versions. It also has a great mirror network.

 That seems to be only for building packages for distribution. Our build
 network currently doesn't produce any installable output (except for SoaS,
 but that's a different issue), but rather runs (build/unit/regression) tests
 on the latest development sources (that shouldn't get packaged anyway).
 While it might be an interesting service for distro packagers (so thanks for
 the hint!), it's entirely orthogonal to our current needs.


Ah yes, it is useful only for packaging for various distros.

Ciao

-J
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] [ANNOUNCE] Sucrose 0.84.0 Final Release

2009-03-07 Thread Jigish Gohil
On Wed, Mar 4, 2009 at 3:15 PM, Simon Schampijer si...@schampijer.de wrote:
 Dear Sugar Community,

 this is the Final Release in our 0.84 development cycle [1]! Thanks to
 our testers the developers were able to bring in bug fixes to stabilize
 the platform. And the translators were busy to get all the strings
 translated. All the details what have changed from a user point of view
 will be handled in the detailed 0.84 release notes.

 Thanks everyone for your great contributions!


Thanks for the great work, packages for openSUSE are now available,
more information here:

http://en.opensuse.org/Sugar

Blog post about the announcement:
http://dev.compiz-fusion.org/~cyberorg/2009/03/07/sugar-0840-on-opensuse/

Kind regards

Jigish
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] Problem running Sugar on openSUSE 11.1, MOSTLY fixed

2009-01-28 Thread Jigish Gohil
On Wed, Jan 28, 2009 at 9:08 PM, James Simmons
jim.simm...@walgreens.com wrote:
 Jigish,

 I did a new installation of openSUSE 11.1 on my PC.  I deleted all the
 existing partitions and started over, so absolutely nothing remains from the
 previous upgrade.  I ran your commands and it gave the same complaint about
 sugar-activities,  that it couldn't install etoys.  I took option 1 to deal
 that complaint and wound up with a working installation of Sugar with just a
 Journal and no Activities.  I tried installing just sugar-activities, got
 the same complaint, and this time chose option 2, which ignores some missing
 dependencies.  This seemed to install some things, including abiword, but
 when I tried to run sugar-emulation I still got Sugar with a Journal but no
 Activities are visible.


Hit the top left corner of the screen, and select Home to make all
the activities visible.

 I haven't tried installing my own Activities yet.  If that works then what I
 have working should be of some use to me.  I'd really like those other
 Activities to be there, though.

 In your email you said *some* Activities don't work, and I assumed you meant
 you were missing etoys.  You're doing better than I am, so I have to wonder
 what you're doing that I am not?


Only issue was with Browse, it could not find one lib, it is probably
a matter of adding the library path in /etc/ld.so.conf, will sort that
out soon.

 Finally, I'd like to thank you and the others who tried to help me with
 this!


Glad to be of help, ping me on IRC #sugar if you need any other assistance :)

Cheers

-J
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] Problem running Sugar on openSUSE 11.0

2009-01-28 Thread Jigish Gohil
On Tue, Jan 27, 2009 at 8:49 PM, James Simmons
jim.simm...@walgreens.com wrote:
 Jigish,

 I am convinced that my installation of openSUSE 11.1 is messed up and my
 best option is to do a fresh install rather than an upgrade.  David Fanning
 had asked me to do a ./sugar-jhbuild depscheck and the only way I could run
 that was to do a git-clone of sugar-jhbuild first.  When I tried to do that
 I got a message saying that git-clone was not found, yet YAST and rpm -V
 both said that git-core (which YAST showed as containing that command) was
 installed.  The file was definitely missing though.  I'm guessing that

No, new git uses git clone instead of git-clone

 something similar is happening with python-telepathy.  I also find that
 neither of the DVD burning apps that come with the distro can recognize my
 DVD burner, but I have no trouble mounting DVDs on it.  11.0 also had some
 odd problems that I thought upgrading to 11.1 had fixed, but apparently some
 problems remain.


For DVD burning the issue is known, add your user to disk group.

 Tonight I'll do the clean install and run your zypper commands again and
 I'll let you know how it went.  Thanks,


OK, as I said, running the commands listed on the wiki got sugar
running here. Use sugar-emulator command instead of Xephyr commands I
posted before.

You can always drop in IRC Freenode #sugar if you need help, that
would probably be faster.

Good luck

-J
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel