update
[www.jankratochvil.net.git] / project / vblib / ListItem.pm
index 0e2c134..ecd9c61 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::vblib;
+package project::vblib::ListItem;
 require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
-use vars qw($VERSION $CVS_ID);
-$VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
-$CVS_ID=q$Id$;
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
 use strict;
 use warnings;
 
+use My::Web;
 
-our %ListItem=(
-               "name"=>"Variable Buffers Library",
+
+our @ListItem=(
+               "name"=>"vblib",
+               "platform"=>"unixdevel",
                "priority"=>4,
                "download"=>"vblib-1.0.0.tar.gz",
-               "summary"=>"Streams library",
+               "summary"=>"High performance memory streams library",
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"C",
-               "sponsorship"=>"<a href=\"http://www.princip.cz/\">Princip, a.s.</a>",
-               "description"=>""
-                               .'<p>Enables application to easily do input/output functions (like'
-                               .' read/write, printf etc.) with memory streams while using performance effective'
-                               .' functions. Simple buffer copying/moving would be possible but it would case a'
-                               .' major performance hit if not using algorithms implemented in this library.</p>'
+               "sponsorship"=>"<a href=\"http://www.geoinvest.cz/\">Geoinvest</a>",
+               "description"=><<"HERE",
+<p>Enables application to easily do input/output functions (like
+read/write, printf etc.) with memory streams while using performance effective
+functions. Simple buffer copying/moving would be possible but it would case a
+major performance hit if not using algorithms implemented in this library.</p>
+HERE
                );
 
 1;