+freshmeat
[www.jankratochvil.net.git] / project / smbfs / ListItem.pm
index 7f8134c..0231e30 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::smbfs;
+package project::smbfs::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"=>"SMB Kernel Filesystem Acceleration",
+
+our @ListItem=(
+               "name"=>'smbfs patch',
+               "platform"=>"unixuser",
+               "trivia"=>1,
+               "priority"=>6,
                "download"=>"smbfs-2.1.132-blocksize.diff",
-               "summary"=>"SMB acceleration patch",
+               "summary"=>'Linux kernel smbfs acceleration patch',
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"C patch",
-               "description"=>""
-                               .'<p>Simple patch to increase virtual block size of SMB filesytem in Linux'
-                               .' kernel. For me it improved tranfer rate of <code>cp</code> command almost'
-                               .' by a factor of <strong>2</strong> (approx. 700KB -&gt; 1300KB or something'
-                               .' like about it). Now <code>cp</code> should be as fast as <code>cat</code>'
-                               .' redirected across networked filesystems.</p>'
-                               .' <p>Unfortunately the blocksize causes different (4 times smaller) sizes'
-                               .' reported by <code>du</code> command as it measures it in <i>blocks</i>'
-                               .' and not in <i>kilobytes</i> as some people think.</p>'
-
+               "description"=><<"HERE",
+<p>Simple patch to increase virtual block size of SMB filesytem in Linux
+kernel. For me it improved tranfer rate of <code>cp</code> command almost
+by a factor of <strong>2</strong> (approx. 700KB -&gt; 1300KB or something
+like about it). Now <code>cp</code> should be as fast as <code>cat</code>
+redirected across networked filesystems.</p>
+<p>Unfortunately the blocksize causes different (4 times smaller) sizes
+reported by <code>du</code> command as it measures it in <i>blocks</i>
+and not in <i>kilobytes</i> as some people think.</p>
+HERE
                );
 
 1;