gnupic: Thread: Pista 0.30a released


[<<] [<] Page 1 of 1 [>] [>>]
Subject: Pista 0.30a released
From: "Gabor Kiss [Bitman]" ####@####.####
Date: 1 Mar 2004 09:19:32 -0000
Message-Id: <Pine.LNX.4.44.0403010941300.24099-100000@nelson.cdata.hu>

Dear folks,

The latest version of my PICSTART+ handler, Pista is 0.30a.
The most important change: device handler files are converted
to XML (The GRUPID project! :-)
It supports 18XXX architecture.
It reads/writes 128 kB (64k words) blocks transparently.

Plans to the near future: adding new devices supported by PS+ 4.10.6.

http://gatling.ikk.sztaki.hu/~kissg/pd/pista/pista.html
ftp://gatling.ikk.sztaki.hu/pub/pic/pista/

Gabor

Subject: Re: Pista 0.30a released
From: mount ####@####.####
Date: 2 Mar 2004 16:15:25 -0000
Message-Id: <20040302154248.33463.qmail@web8206.mail.in.yahoo.com>

Grrrreat yaar.Good Name.
atlast 18xxx has gained some good support.
i wud like to know the kernel versions supported ?

regards,
karthik bala guru.


 --- "Gabor Kiss [Bitman]" ####@####.#### wrote: >
Dear folks,
> 
> The latest version of my PICSTART+ handler, Pista is
> 0.30a.
> The most important change: device handler files are
> converted
> to XML (The GRUPID project! :-)
> It supports 18XXX architecture.
> It reads/writes 128 kB (64k words) blocks
> transparently.
> 
> Plans to the near future: adding new devices
> supported by PS+ 4.10.6.
> 
>
http://gatling.ikk.sztaki.hu/~kissg/pd/pista/pista.html
> ftp://gatling.ikk.sztaki.hu/pub/pic/pista/
> 
> Gabor
> 
> 
>
---------------------------------------------------------------------
> To unsubscribe, e-mail:
> ####@####.####
> For additional commands, e-mail:
> ####@####.####
>  

________________________________________________________________________
Yahoo! India Insurance Special: Be informed on the best policies, services, tools and more. 
Go to: http://in.insurance.yahoo.com/licspecial/index.html
Subject: Re: Pista 0.30a released
From: "Gabor Kiss [Bitman]" ####@####.####
Date: 2 Mar 2004 16:18:30 -0000
Message-Id: <Pine.LNX.4.44.0403021645270.23285-100000@nelson.cdata.hu>

> i wud like to know the kernel versions supported ?

It does not depends on kernel but requires PERL 5.6 or higher.

Gabor

Subject: Re: Pista 0.30a released
From: Scott Dattalo ####@####.####
Date: 3 Mar 2004 15:33:31 -0000
Message-Id: <Pine.LNX.4.44.0403030638500.12051-100000@ruckus.brouhaha.com>

On Mon, 1 Mar 2004, Gabor Kiss [Bitman] wrote:

> Dear folks,
> 
> The latest version of my PICSTART+ handler, Pista is 0.30a.
> The most important change: device handler files are converted
> to XML (The GRUPID project! :-)
> It supports 18XXX architecture.
> It reads/writes 128 kB (64k words) blocks transparently.
> 
> Plans to the near future: adding new devices supported by PS+ 4.10.6.
> 
> http://gatling.ikk.sztaki.hu/~kissg/pd/pista/pista.html
> ftp://gatling.ikk.sztaki.hu/pub/pic/pista/

When I try to run pista I get this error:

Can't locate Pista/Object/Buffer.pm in @INC (@INC contains: 
/usr/local/bin/../lib /usr/lib/perl5/5.6.0/i386-linux /usr/lib/perl5/5.6.0 
/usr/lib/perl5/site_perl/5.6.0/i386-linux /usr/lib/perl5/site_perl/5.6.0 
/usr/lib/perl5/site_perl .) at /usr/local/bin/pista line 40.
BEGIN failed--compilation aborted at /usr/local/bin/pista line 40.

Which I then managed to fix with:

$ export PERLLIB="/usr/local/lib/pista"

Then when I run it again I get:

Can't locate object method "AddHistory" via package "Term::ReadLine::Stub" 
at /usr/local/bin/pista line 79.

So I guess I don't have the Perl Readline library installed. How does one 
do this? In a vain attempt, I tried copying this:

 http://search.cpan.org/~hayashi/Term-ReadLine-Gnu-1.14/Gnu.pm

to the pista perl module directory. If that would have worked, I doubt I'd 
be writing this e-mail. How do you install the readline module? 

Scott

Subject: Re: Pista 0.30a released
From: "Gabor Kiss [Bitman]" ####@####.####
Date: 4 Mar 2004 09:09:53 -0000
Message-Id: <Pine.LNX.4.44.0403040908510.28670-100000@nelson.cdata.hu>

Hi, Scott!

> > http://gatling.ikk.sztaki.hu/~kissg/pd/pista/pista.html
> > ftp://gatling.ikk.sztaki.hu/pub/pic/pista/
>
> When I try to run pista I get this error:
>
> Can't locate Pista/Object/Buffer.pm in @INC (@INC contains:
> /usr/local/bin/../lib /usr/lib/perl5/5.6.0/i386-linux /usr/lib/perl5/5.6.0
> /usr/lib/perl5/site_perl/5.6.0/i386-linux /usr/lib/perl5/site_perl/5.6.0
> /usr/lib/perl5/site_perl .) at /usr/local/bin/pista line 40.

Ooops! I forgot to check new instalation system after the N-th
modification.

Please apply this patch:

--- pista.bad   Thu Mar  4 09:10:18 2004
+++ pista       Thu Mar  4 09:11:06 2004
@@ -31,7 +31,7 @@
 no warnings qw(uninitialized);

 use FindBin;
-use lib "$FindBin::Bin/../lib";
+use lib "$FindBin::Bin/../lib/pista";

 use Term::ReadLine;
 use Text::ParseWords;

I fix this problem today and I release 0.31a

Thanks for the bug report.

> Can't locate object method "AddHistory" via package "Term::ReadLine::Stub"
> at /usr/local/bin/pista line 79.
>
> So I guess I don't have the Perl Readline library installed. How does one

Default PERL distribution contains a basic Term::ReadLine package
that can be overridden transparently with Term::ReadLine::Gnu.

> do this? In a vain attempt, I tried copying this:
>
>  http://search.cpan.org/~hayashi/Term-ReadLine-Gnu-1.14/Gnu.pm
>
> to the pista perl module directory. If that would have worked, I doubt I'd
> be writing this e-mail. How do you install the readline module?

You need Term-ReadLine-Gnu-1.14.tar.gz.
Installation instructions are inside.
(It is quite easy:
	perl Makefile.PL
	make
	make test
	make install
)


However next Pista release will care if Term::ReadLine::Gnu is
installed or not.

Thanks again.

Gabor

[<<] [<] Page 1 of 1 [>] [>>]


Powered by ezmlm-browse 0.20.