PerlGameDev Annonces, Aftermath YAPC::NA

2011-07-01 Thread Kartik Thakore
context/display lists better. Can you mention it again chip? I seem to have forgotten it. The hope will be to make a declarative for OpenGL constructs that can be sent straight to the hardware. Adam Kennedy has some work start in this area (OpenGL::List). Regards, -- Kartik Thakore

Re: Handling C++ structs with XSpp

2011-04-26 Thread Kartik Thakore
expected class-name before ‘extern’ error building buildtmp/Box2D.o from 'buildtmp/Box2D.c' at /home/kthakore/.perl5/perls/perl-5.12.2/lib/5.12.2/ExtUtils/CBuilder/Base.pm line 112. Regards, Kartik Thakore On Tue, 2011-04-26 at 11:02 -0400, Kartik Thakore wrote: > Hi, > > I am

Handling C++ structs with XSpp

2011-04-26 Thread Kartik Thakore
n main.xs, line 22 Any help will be appreciated. Regards, -- Kartik Thakore

Re: Permissions Problem (was: Failed: PAUSE indexer report KTHAKORE/SDL-2.524.tar.gz)

2010-12-01 Thread Kartik Thakore
...@perl.org > > Cheers, > > Jonathan > > On Tue, Nov 30, 2010 at 6:36 PM, Kartik Thakore > <...> wrote: > > > > Hello Folks, > > > > My co-maint has gone on a vacation to Scotland, which would be awesome > > but he has perms on one of the

[Fwd: Failed: PAUSE indexer report KTHAKORE/SDL-2.524.tar.gz]

2010-11-30 Thread Kartik Thakore
legitimate maintainer(s) on PAUSE under "View Permissions". Thanks -- Kartik Thakore --- Begin Message --- The following report has been written by the PAUSE namespace indexer. Please contact modu...@perl.org if there are any open questions. Id User: KTHA

Re: advice on submitting new module

2010-08-26 Thread Kartik Thakore
Use modulemaker to help you make a module. http://search.cpan.org/dist/ExtUtils-ModuleMaker/scripts/modulemaker Make a good MANIFEST.skip and run perl Build.PL perl Build manifest perl Build dist This will make a tar file which you should upload. Kartik Thakore On 2010-08-26, at 8:34 AM

Re: Advice wanted re Marpa::XS

2010-08-18 Thread Kartik Thakore
On 2010-08-18, at 4:09 PM, jeffreykegler wrote: I've finished cleaning up the Pure Perl version of Marpa, and am about to embark on Marpa::XS. Marpa's parsing is mainly data-twiddling, so I expect a major speed improvement when its parse engine is converted to C. I've made some tentative dec

Re: Frozen Bubble 2.2.1

2010-08-05 Thread Kartik Thakore
With David's (xdg) help we have come up with a simple solution (which should have been more obvious). http://github.com/kthakore/frozen-bubble/blob/e5fe8243e67ca552c02099db8f5a274c6171e1b1/lib/Games/FrozenBubble.pm Please give that a run. The 'display' version is RELEASE_VERSION. Regards, Kartik

Re: Frozen Bubble 2.2.1

2010-08-05 Thread Kartik Thakore
Kartik Thakore On 2010-08-05, at 5:11 PM, David Nicol wrote: It appears that your use case -- you want to publish the beta version on CPAN without having the non-beta-testers get it too -- is not supported by xdg's essay. I dont know where you are getting this from. Suppose I h

Re: "-TRIAL" dists (was: Frozen Bubble 2.2.1)

2010-08-05 Thread Kartik Thakore
So how can we force the VERSION for the non CPAN release? Kartik Thakore On 2010-08-05, at 3:24 PM, David Golden wrote: On Thu, Aug 5, 2010 at 2:46 PM, Eric Wilhelm wrote: Does search.cpan.org understand "-TRIAL" now? Last I looked, it was properly handled (i.e. not indexed

Re: Frozen Bubble 2.2.1

2010-08-05 Thread Kartik Thakore
Kartik Thakore On 2010-08-05, at 7:07 AM, David Golden wrote: On Thu, Aug 5, 2010 at 3:20 AM, Guillaume Cottenceau > wrote: Kartik and friends rewrote SDL_perl (a Perl module with SDL bindings) using a different API. Then they ported my Perl-based game to using that new Perl module, and

Re: Frozen Bubble 2.2.1

2010-08-04 Thread Kartik Thakore
How do we make this work? I get a error doing this. Kartik Thakore On 2010-08-04, at 4:21 PM, David Golden wrote: On Wed, Aug 4, 2010 at 4:12 PM, Guillaume Cottenceau > wrote: Hum. This is for an application (a game), not a module, and I want it to be clearly labelled as a beta release.

Re: Frozen Bubble 2.2.1

2010-08-04 Thread Kartik Thakore
Hello, Is it possible to have 2.2.1beta1 VERSION, for a perl module? Kartik Thakore On 2010-08-04, at 2:21 PM, Guillaume Cottenceau wrote: On Wed, Aug 4, 2010 at 7:08 PM, Kartik Thakore > wrote: I dont think you can have that version. What if you did '2.2.1_2' that means

Re: Why are you releasing modules to CPAN?

2010-05-30 Thread Kartik Thakore
Kartik Thakore On 2010-05-30, at 6:35 AM, Jonathan Rockway wrote: * On Thu, May 27 2010, Gabor Szabo wrote: This whole thing makes me wonder, why do *you* really contribute to CPAN? So that people other-than-me can fix my apps before I even know they're broken. The real questi

Re: Excluding Module::Build from PAR

2010-05-13 Thread Kartik Thakore
, May 13, 2010 at 10:08 PM, Kartik Thakore wrote: > Hello fellow authors, > > In an attempt to make SDL games distributable I have been looking at how to > package with PAR. In the first run using: > > pp -B -p -o shooter.par shooter.pl > > PAR was picking up all of CPAN::* a

Re: Excluding Module::Build from PAR

2010-05-13 Thread Kartik Thakore
Kartik Thakore On 2010-05-13, at 10:08 PM, Kartik Thakore wrote: Hello fellow authors, In an attempt to make SDL games distributable I have been looking at how to package with PAR. In the first run using: pp -B -p -o shooter.par shooter.pl PAR was picking up all of CPAN::* and the

Excluding Module::Build from PAR

2010-05-13 Thread Kartik Thakore
. And sure enough lib/Module/Builder.pm is gone but tge rest of lib/Module/Builder.pm and the multiple deps still presisted. How can I do the equivalent of -X Module::Build* ? Here is the shooter.pl script. http://gist.github.com/301949 Kartik Thakore

Adding a Co-maintainer to SDL_perl modules

2010-03-13 Thread Kartik Thakore
x27;t have the time), as I only have co-maint access. If you don't have the time to do this I will have to as PAUSE admins for help. I will just get acccess a primary maintainer to give FROGGS access and then pass the primary maintainer status back to you if you want it. Regards, Kartik Thakore

Re: PAUSE ID request (FROGGS; Tobias Leich)

2010-03-04 Thread Kartik Thakore
Hi David, Under the making a co-maintainer I don't see SDL::* modules. Just Alien::SDL and the ones I made. Also when I try to add FROGGS for Alien::SDL it says FROGGS is not a valid userid. Thanks Kartik Thakore On 2010-03-04, at 7:52 AM, David Golden wrote: Kartik, you can do

Re: PAUSE ID request (FROGGS; Tobias Leich)

2010-03-04 Thread Kartik Thakore
Hi David, Can FROGGS get co-maint access on SDL modules? Thank you On Thu, Mar 4, 2010 at 7:15 AM, Tobias Leich wrote: > > Hi, I requested a PAUSE ID yesterday and I didnt got an answer till yet. > Maybe the spamfilter got it. > > Can you help me? > > Thanks, Tobias Leich. > > -Ursprünglich

Re: Automating installation of a C library

2010-03-02 Thread Kartik Thakore
Hi Craig, How do I use the WPAD query to get the .pac file? It would be awsome to add this for Alien::SDL build. Kartik Thakore On 2010-03-02, at 3:13 PM, cr...@animalhead.com wrote: Thank you, JE and your patch are the answer to my problem! Someone ought to do something about the fact

Re: Automating installation of a C library

2010-03-02 Thread Kartik Thakore
I made a bug report for it. Bug the author to accept it :) regards, Kartik Thakore On 2010-03-02, at 3:13 PM, cr...@animalhead.com wrote: Thank you, JE and your patch are the answer to my problem! Someone ought to do something about the fact that JE doesn't come up on a search.cpa

Re: Automating installation of a C library

2010-03-02 Thread Kartik Thakore
Kartik Thakore On 2010-03-01, at 10:47 PM, cr...@animalhead.com wrote: Hi module authors, I'm working on a module that has an accompanying script that can be scheduled (cron'ed on Unix/Linux) to update its database from the internet. The biggest problem with this, that is not

weird errors for Perl packager for SDL apps

2010-02-21 Thread Kartik Thakore
Hi, I am trying to package SDL_perl games. here is how I package them: pp -l /usr/local/lib/libSDL.so -l /usr/local/lib/libSDL_gfx.so -l /usr/lib/libc.so -o shooter shooter.pl you can get these things by install Alien::SDL, http://github.com/kthakore/SDL_perl/tarball/redesign and http://gist.

Fwd: Betonmarkets CTO position

2010-02-11 Thread Kartik Thakore
yup spam. Kartik Thakore Begin forwarded message: Dear Kartik, Betonmarkets.com, the leading financial betting company, is looking to recruit a CTO. As a Perl expert, I was wondering whether you may be interested in the position? The Betonmarkets website and underlying systems are

Re: flame bait: execution speed Perl vs. C (Date::Calc::PP vs. Date::Calc::XS)

2009-11-23 Thread Kartik Thakore
Working on it a little :) and I would like Blair's 3 am pepper extract (50 USD). Kartik Thakore On 23-Nov-09, at 1:47 AM, Jonathan Leto wrote: Howdy, I seem to recall that we have a pressing need for another perl5 VM to deliver on the promise of being able to run your perl5 code in

Re: Alien::SDL not available in cpan?

2009-11-19 Thread Kartik Thakore
AKORE/Alien-SDL-v0.7.3.tar.gz Regards and Apologies @module-authors ... how long before the new version comes on line? Kartik Thakore On Thu, Nov 19, 2009 at 7:02 PM, Ben wrote: > Hi Kartik, > > I'm wondering if Alien::SDL should be available from the cpan client after > a clean

Re: flame bait: execution speed Perl vs. C (Date::Calc::PP vs. Date::Calc::XS)

2009-11-18 Thread Kartik Thakore
Maybe he thought there were a debate on XS v.s PP performance. If only we could be this flame retardent in the uneeded perl5 v.s perl6 debate. Kartik Thakore On 18-Nov-09, at 7:29 AM, Aristotle Pagaltzis wrote: * O. STeffen BEYer [2009-11-18 13:10]: One can see from these results that

Re: Help with Mac Bundling

2009-11-11 Thread Kartik Thakore
Yes this is exactly what we need! Kartik Thakore On 11-Nov-09, at 6:15 AM, "Mattia Barbon \\>" wrote: Hi, I am the maintainer for SDL Perl. We are having trouble bundling for MacOSX. We are using perl Build bundle. We have some success with it but we can't even run &

Help with Mac Bundling

2009-11-10 Thread Kartik Thakore
.PL. Is there a good example of MacOSX bundling (that works) with Module::Build. How do I accomplish this magical feat? Thank you, Kartik Thakore

Re: Failed: PAUSE indexer report KTHAKORE/SDL_Perl-v2.2.1.tar.gz

2009-08-21 Thread Kartik Thakore
Sorry. My apologies for trolling. Hopefully I can be forgiven. Kartik Thakore On 21-Aug-09, at 11:03 PM, Jonathan Yu wrote: Hi Kartik: Keep in mind that all modules are tracked separately. So, while you might have rights to teh SDL.pm namespace, the original author needs to give you the co

Re: Failed: PAUSE indexer report KTHAKORE/SDL_Perl-v2.2.1.tar.gz

2009-08-21 Thread Kartik Thakore
y open questions. > Id > > User: KTHAKORE (Kartik Thakore) > Distribution file: SDL_Perl-v2.2.1.tar.gz >Number of files: 136 > *.pm files: 39 > README: SDL_Perl-v2.2.1/README > META.yml: SDL_Perl-v2.2.1/META.yml >YAML-Par

Fwd: Access to bug queue

2009-08-18 Thread Kartik Thakore
Hi people how do I get access to bug queue if I cannot find the contact of the person who set it up. This is the rt on the cpan module. Kartik Thakore Begin forwarded message: From: David Goehrig Date: August 18, 2009 3:50:53 PM GMT-04:00 To: Kartik Thakore Subject: Re: Access to bug

Re: New module: Alien::SDL

2009-08-08 Thread Kartik Thakore
Oooh Than you. On Fri, Aug 7, 2009 at 9:02 AM, Thomas Klausner wrote: > Hi! > > On Fri, Aug 07, 2009 at 08:21:18AM -0400, Kartik Thakore wrote: > > > I have started work on Alien module similiar to the wxwidgets except for > > SDL and related libs. It purpose will be t

New module: Alien::SDL

2009-08-07 Thread Kartik Thakore
, how do I upload the module? I already have a cpan account. Kartik Thakore

Binary building of XS components

2009-08-06 Thread Kartik Thakore
After having a discussion with cromatic about SDL perl bindings, we came to the conclusion that providing binary packages of xs libraries would solve our build issues. Where do I get contributers to compile sdl bindings for several different platforms? Kartik Thakore

Re: Test Windows Build on Module

2009-08-03 Thread Kartik Thakore
Hello ppl, Calling for all help on making Build for windows (Cygwin/Mingw/Native). I have added the following patch to http://github.com/kthakore/SDL_perl branch patch I am having a lot of trouble doing this as I don't have a windows box. Any help is much appreciated. Kartik Thakore O

Re: Test Windows Build on Module

2009-08-03 Thread Kartik Thakore
yup this is a problem. Let me see what I can do. Maybe an auto-downloader is needed. Also I forgot a step below. in setenv.bat you need to manually set MY_DEV_ROOT=d:\sdlpl . On Mon, Aug 3, 2009 at 3:13 PM, Andreas Lund wrote: > Mon, 3 Aug 2009 13:04:57 -0400, Kartik Thakore > wrote: >

Test Windows Build on Module

2009-08-03 Thread Kartik Thakore
://github.com/kthakore/SDL_perl/issues Thank you. Kartik Thakore

Testers needed New SDL_perl module.

2009-08-03 Thread Kartik Thakore
Hi, I am currently working on getting SDL_perl off the ground. This is what I have done so far http://github.com/kthakore/SDL_perl/tree/master. I need people to test the module's building and give me some feed back. Thank You Kartik Thakore thakor

Sdl_Perl forked: testers needed

2009-08-02 Thread Kartik Thakore
this on cpan when I get access. It's already in the works. Thank you, Kartik Thakore