X-Git-Url: https://git.jankratochvil.net/?p=www.jankratochvil.net.git;a=blobdiff_plain;f=project%2Fcheckstatic%2FListItem.pm;h=c400142d701672c5595fc3cd47bcbe6d48548f73;hp=91f0d261a9a6e18904f45c137ce0d36cdbc59022;hb=b4ddfba5b53a40e47285f8851e1ff7bb5419909b;hpb=d33b43a5557132098003a232b6c209abd3e4d135 diff --git a/project/checkstatic/ListItem.pm b/project/checkstatic/ListItem.pm index 91f0d26..c400142 100755 --- a/project/checkstatic/ListItem.pm +++ b/project/checkstatic/ListItem.pm @@ -18,29 +18,33 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -package My::Project::checkstatic; +package project::checkstatic::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"=>"C Sources Symbol Attributes Checker", - "priority"=>7, - "download"=>"http://cvs.jankratochvil.net/viewcvs/*checkout*/nethome/home/lace/bin/checkstatic?rev=HEAD", - "summary"=>"Development tool", + +our @ListItem=( + "name"=>"checkstatic", + "platform"=>"unixdevel", + "priority"=>510, + # FIXME: 'http://cvs.jankratochvil.net/viewcvs/' -> $W->{"project_viewcvs"} + "download"=>'http://cvs.jankratochvil.net/viewcvs/'."*checkout*/nethome/home/lace/bin/checkstatic?rev=HEAD", + "summary"=>"C sources symbol attributes checker", "license"=>"PD", - "maintenance"=>"finished", + "maintenance"=>"ready", "language"=>"Perl", - "description"=>"" - .'

Gives additional warnings not provided by GNU C Compiler' - .' such as dead code declared as global in separate file,' - .' missing static keywords etc.

' - .'

It can get very valuable during stripping functionality off of' - .' a big package for embedded resource-limited machines.

' + "description"=><<"HERE", +

Scripts gives additional warnings not provided by GNU C Compiler +such as dead code declared as global in separate file, +missing static keywords etc.

+

It can get very valuable during stripping functionality off of +a big package for embedded resource-limited machines.

+HERE ); 1;