Re: freebsd ports index (perl) searcher browser

2003-01-15 Thread parv
last time i sent URLs for a perl program to search/browse ports
index.  a quite annoying bug was present in version 0.01; when
-find=build-dep option was given, program would have produced use
of uninitialized value error messages.  it is fixed in version
0.02.

i would like it much if people having difficulty using the program
(besides the absence of standard perl modules which can be installed
from ports collection) tell me so.  please send your comments  such
directly to me, saving the list from much off topic messages.

(it seems that, since nobody has complained, people are using at
least perl 5.6.  otherwise complaints related 3-argument open in
perl 5.005 would be coming in my mailbox. i can/will easily change
the open() statement to work in perl 5.005 IFF i get complaints
about it.)


URLs are the same...

  main program...

http://www103.pair.com/parv/comp/src/perl/parse-index.perl


  module required (needs to be more thoroughly documented)...

http://www103.pair.com/parv/comp/src/perl/modules/Util.pm


  a version w/o my own Util.pm (which will be abandoned as soon as
  i figure out how to automagically edit @INC)...

http://www103.pair.com/parv/comp/src/perl/parse-index-u.perl


thank you for your interest.


  - parv

-- 


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: freebsd ports index (perl) searcher browser

2003-01-13 Thread parv
in message [EMAIL PROTECTED], wrote parv
thusly...

 ...a perl program which allows one to search  browse the ports index
 (w/o using make  going into the /usr/ports)
...
   main program...
 
 http://www103.pair.com/parv/comp/src/perl/parse-index.perl
 
   module required (needs to be more thoroughly documented)...
...

ok, below is the version which does not my own Util.pm module only
standard Perl (copied all the needed functions from Util inside the
program)...

  http://www103.pair.com/parv/comp/src/perl/parse-index-u.perl


  - parv

-- 


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



freebsd ports index (perl) searcher browser

2003-01-12 Thread parv
if anybody is interested in a perl program which allows one to
search  browse the ports index (w/o using make  going into the
/usr/ports), the required parts are...

  description...

http://www103.pair.com/parv/comp/src/perl/parse-index.perl.pod


  main program...

http://www103.pair.com/parv/comp/src/perl/parse-index.perl


  module required (needs to be more thoroughly documented)...

http://www103.pair.com/parv/comp/src/perl/modules/Util.pm


...you may need to edit the push line in BEGIN in parse-index.perl...

  BEGIN
  { #  location where non-default modules live
#  
#  change 'modules' to wherever you have stored above Util.pm
#  
push @INC, 'modules';
  }

  use Util qw( check_hash max_length );


...to reflect the location of above 'Util.pm'.


(i know i need to automagic-ate this editing thing; as it is, it's
lousy.  working on it; please bear with me.)


  - parv

-- 


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message