comp.lang.perl.modules
  Home FAQ Contact Sign in
comp.lang.perl.modules only
 
Advanced search
September 2008
motuwethfrsasuw
1234567 36
891011121314 37
15161718192021 38
22232425262728 39
2930      40
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
comp.lang.perl.modules Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Re: Math::Pari in turmoil         


Author: sisyphus
Date: Sep 22, 2008 05:07

On Sep 22, 1:42 pm, Ilya Zakharevich ilyaz.org> wrote:
> Math::Pari depends on (auto-)download of pari-2.1.7.tgz.

I have to ask (mainly out of curiosity) - do you have any plans to
change that ? Or will Math::Pari, from here to eternity, always depend
on pari-2.1.7 ?

I gather the "update" to 2.3.4 support must be not-all-that-trivial,
or you would have done it already.

I have tried (and failed) to build Math-Pari-2.010800 against 2.3.4.
The 'make' process runs fine - but there are numerous 'make test'
failures (on perl-5.10.0, btw), most of which don't obviously relate
to the fact that I've attempted to build against 2.3.4. Afaict, most
of the failures appear to be purely perl issues. Building against
2.1.7 works flawlessly, however.

Cheers,
Rob
9 Comments
  Expect - "sleep" executed at the wrong time (before an expect(... send...) instead of after)         


Author: Andry
Date: Sep 18, 2008 01:58

Hi all,
I have a timing issue with the usage of "sleep" within my perl-expect
script.
This is an example script to describe my problem:
**********************************************************************************************************
#!/usr/bin/perl -w
use Expect;

$timeout = 5;

$exp = new Expect();
$exp->raw_pty(1);
$exp->spawn("ssh -l username 10.17.39.29");

$exp->expect($timeout, [ "[Pp]assword" => sub { $_[0]->send("password
\n"); } ]);

$exp->expect($timeout, [ "prompt-string" => sub { $_[0]->send("ls -l
\n"); } ]);

sleep 2;

$exp->expect($timeout, [ "prompt-string" => sub { $_[0]->send("ls
\n"); } ]);

sleep 5;
Show full article (1.62Kb)
4 Comments
  How to avoid multiple Inclusions of perl modules.. or how to detect mutliple inclusions.         


Author: PhaniRanjan
Date: Sep 16, 2008 10:38

i have many modules which inturn use among themselvs.. some times i
get the following error..
Can't locate <>.pm in @INC though it is present in that location.. i
doubt this occurs because of multiple or cyclic inclusions of
modules..
can any one suggest the way to find the error or avoidin them ?
thanks in advance
12 Comments
  Use of uninitialized value in numeric lt (<) at /Date/Manip.pm         


Author: John Nagle
Date: Sep 16, 2008 09:58

This has me puzzled. This code worked on another server, but it's
failing on perl v5.8.8, with Date::Manip loaded from CPAN today.

Warning:
Use of uninitialized value in numeric lt (<) at /home/downside/lib/Date/Manip.pm
line 3327.

at dailyupdate.pl line 13
main::__ANON__('Use of uninitialized value in numeric lt (<) at
/home/downsid...') called at

/home/downside/lib/Date/Manip.pm line 3327
Date::Manip::Date_SecsSince1970GMT(09, 16, 2008, 00, 21, 22) called at
/home/downside/lib/Date/Manip.pm line 1905
Date::Manip::UnixDate('today', '%%Y-%%m-%%d') called at
TICKER/SYMBOLS/updatesymbols.pm line 122
TICKER::SYMBOLS::updatesymbols::getdate() called at
TICKER/SYMBOLS/updatesymbols.pm line 439
TICKER::SYMBOLS::updatesymbols::updatesymbol('DBI::db=HASH(0x87fcc34)',

'TICKER::SYMBOLS::symbol=HASH(0x8a43540)') called at
TICKER/SYMBOLS/updatesymbols.pm line 565
Show full article (2.46Kb)
1 Comment
  Software Articles Collection         


Author: jnmitts
Date: Sep 16, 2008 05:21

Hi Everyone. Here's the latest collection of software articles from
AllPCNews. Enjoy! :)

PHP - Web Application Development
http://www.allpcnews.com/2008/09/15/php-web-application-development/

Mozilla CEO: Chrome was Inevitable
http://www.allpcnews.com/2008/09/02/mozilla-ceo-chrome-was-inevitable/

Why Not Become a Game Programmer?
http://www.allpcnews.com/2008/09/15/why-not-become-a-game-programmer/

IQ Test Or IA Test?
http://www.allpcnews.com/2008/09/15/iq-test-or-ia-test/

The OSD Development Process
http://www.allpcnews.com/2008/09/15/the-osd-development-process/

Why Everyone Is Talking About Spyware Tools
http://www.allpcnews.com/2008/09/04/why-everyone-is-talking-about-spyware-tools/

Cheers,
Jan Mitts
no comments
  Re: Net::SSLeay make failure - openssl error.         


Author: Lee Stone
Date: Sep 15, 2008 09:06

>"sisyphus" gmail.com> wrote in message
>news:ee0975da-33f1-429f-b4e2-4d2e26639b96@z11g2000prl.googlegroups.com...
>On Sep 14, 9:47 am, "Lee Stone" privacy.net> wrote:
.
.
>> I have OpenSSL 0.9.6a.
.
.
>>Running make on Net::SSLeay 1.35 fails as follows:
>>
>>"
>> SSLeay.xs:103: openssl/engine.h: No such file or directory
.
.
>>I think all these failures relate to the lack of engine.h in my openssl
>>libraries?
Show full article (2.25Kb)
2 Comments
  HTML::template         


Author: BJ
Date: Sep 12, 2008 07:52

Trying to split html codes from perl program into individual files. In order
to pars html cod during execution (to replace dynamic variables) I am trying
to use HTML::Template methods. I am getting a Budzilla missing error:
"Can't locate Bugzilla/Constants.pm in
@INC (@INC contains: C:/Perl/site/lib C:/Perl/lib .) at
C:/Perl/lib/HTML/template.pm

Tried to download Buzilla
http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-3.0.5.tar.gz
but having trouble installing it. winzip fails.

Any help and ideas or other solution are appreciated.
no comments
  Proxy method does not work using LWP::UserAgent for HTTPS request         


Author: shallyee
Date: Sep 9, 2008 03:53

I have following sample getting file via HTTPS protocal using
LWP::UserAgent module.

#!/usr/bin/perl

use LWP::UserAgent;
use LWP::Debug qw(+);

$uri = $ARGV[0];
$ua = LWP::UserAgent->new;
$ua->timeout(10);
#$ENV{HTTPS_PROXY} = 'myproxy.mydomain:8080'; # (A) this works
$ua->proxy('https', 'myproxy.mydomain:8080'); # (B) this
don't works at all

$response = $ua->get($uri);
if ($response->is_success) {
print $response->decoded_content;
}
else {
die $response->status_line;
}
Show full article (1.08Kb)
1 Comment
  "tailing" utmp(x)?         


Author: Dean Karres
Date: Sep 8, 2008 08:52

Hi,

I know how to read and "tail" the Utmp files on the systems I have
access to. We now have OSX machines that are using the Utmpx system
and the records are not as straight forward to read.

I am looking at the User::Utmp modure since it will handle either type
of file. However it appears that it will read in the WHOLE Utmp(x)
file at one time and then hand the caller an array of hashes that
represents the file.

There is nothing wrong with that except I need to constantly be made
aware of new Utmp(x) entries as they appear. Closing and reopening
the Utmp(x) file and re-reading to to pull in a possible new couple of
lines seems very wasteful.

Do you have ideas?
1 Comment
  ANNOUNCE: Text-CSV_XS 0.54         


Author: H.Merijn
Date: Sep 4, 2008 00:50

file: $CPAN/authors/id/H/HM/HMBRAND/Text-CSV_XS-0.54.tgz
size: 90923 bytes
md5: d490c1d8f37386b980abfdd53a96705b

2008-09-04 0.54 - H.Merijn Brand

* IO failure in print () was not propagated (ilmari, RT#38960)

2008-09-01 0.53 - H.Merijn Brand

* SvUPGRADE is a safer choice than sv_upgrade (Lubomir Rintel,
RT#38890)
* bring docs in sync with reality for msg 2023
* Default eol for print is $\
* examples/csv-check should default to CSV , not to ;
* Tests for SetDiag (0)
* Tests for error 2030
* Code cleanup (Devel::Cover++)
no comments
1 2 3 4 5 6 7 8 9