Aren't you the one complaining about the spaces on the left margin in heredocs? I'm not trying to be critical, I'm just trying to understand the issue. They are bad, right?

James

On Feb 22, 2004, at 7:49 PM, Daniel Macks wrote:

Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/libs/perlmods
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7824

Added Files:
        proc-processtable-pm581.info
Log Message:
New package.


--- NEW FILE: proc-processtable-pm581.info ---
Package: proc-processtable-pm581
Version: 0.39-cvs20040222-sf77543
Revision: 1
#Source: mirror:cpan:authors/id/D/DU/DURIST/Proc-ProcessTable-%v.tar.gz
Source: http://www.netspace.org/~dmacks/fink/proc-processtable-pm/proc-ptable -0.39-cvs20040222.tar.gz
Source-MD5: 7bef3d31b95817bab67c2d7088f0d3b7
SourceDirectory: proc-ptable
Source2: http://www.netspace.org/~dmacks/fink/proc-processtable-pm/Proc- ProcessTable-Darwin-0.4-sf77543.tar.gz
Source2-MD5: 35c92cb175f2c4017a6ffab9f969c600
Type: perl 5.8.1
UpdatePOD: true
PatchScript: <<
perl -pi.BAK -e "s/VERSION = '0.39'/VERSION = '%v'/" ProcessTable.pm
cp -f ../Proc-ProcessTable-Darwin-04/os/* os
<<
DocFiles: Changes README README.darwin
Description: Perl Module for writting IRC script in Perl
DescDetail: <<
This module is a first crack at providing a consistent interface to
Unix (and maybe other multitasking OS's) process table information.
The impetus for this came about with my frustration at having to parse
the output of various systems' ps commands to check whether specific
processes were running on different boxes at a larged mixed Unix site.
The output format of ps was different on each OS, and sometimes
changed with each new release of an OS. Also, running a ps subprocess
from within a perl or shell script and parsing the output was not a
very efficient or aesthetic way to do things.
<<
DescUsage: <<
With this module, you can do things like this:


        # kill memory pigs
        use Proc::ProcessTable;

        $t = new Proc::ProcessTable;
        foreach $p ( @{$t->table} ){
          if( $p->pctmem > 95 ){
            $p->kill(9);
          }
        }

There is another short example in the file "example.pl" in the
distribution. For a more elaborate example (in German), see
<http://www.linux-magazin.de/ausgabe.1999.02/Proc/proc.html>.
<shameless plug> If you can't read German, try my other module,
WWW::Babelfish!</shameless plug>

There are also two contributed modules: a module called Proc::Killall
contributed by Aaron Sherman to kill all processes whose command-lines
match a given pattern, and a module called Proc::Killfam by Stephen
Lidie to kill a list of processes and their children. These modules
are installed along with Proc::ProcessTable. Pod documentation is
included in both of them.
<<
DescPackaging: <<
CPAN 0.39 tarball accidentally dropped darwin files, so using CVS
snapshot (that also includes some other useful patches).

OS X 10.3 changed ps but Proc::ProcessTable CVS hasn't added the
needed changes. The updated files are attached to a SF tracker item:
http://sourceforge.net/tracker/index.php? func=detail&aid=902245&group_id=81217&atid=562307
so we'll just download (a mirror of) that file and overlay the files.
<<
License: Artistic
Maintainer: Daniel Macks <[EMAIL PROTECTED]>
Homepage: http://sourceforge.net/projects/proc-ptable/




-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits



------------------------------------------------------- SF.Net is sponsored by: Speed Start Your Linux Apps Now. Build and deploy apps & Web services for Linux with a free DVD software kit from IBM. Click Now! http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click _______________________________________________ Fink-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-devel

Reply via email to