notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine

Bot filter coming soon

To deter bots pegging the database CPU to 100%, a bot testing filter to be added to the website. This should not affect newsfeeds etc. Anubis seems light-weight - it is already in use within the FreeBSD Project. This notice is just a heads up in case you see something odd. This notice will be updated after Anubis is installed.

Port details
p5-IO-MultiPipe Check for errors when running a command through multiple pipes
0.0.0 net Deleted on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 0.0.0Version of this port present on the latest quarterly branch.
Maintainer: vvelox@vvelox.net search for ports maintained by this maintainer
Port Added: 2009-01-26 17:44:39
Last Update: 2009-01-26 22:48:20
SVN Revision: UNKNOWN
Also Listed In: perl5
License: not specified in port
WWW:
http://search.cpan.org/~vvelox/IO-MultiPipe/
Description:
Normally if a part of a pipe fails, depending on the location, it won't be detected. This breaks down a command involving pipes and runs each command seperately. It uses open3 to run each chunk of the pipe. use IO::MultiPipe; my $pipes = IO::MultiPipe->new(); #This sets the pipe that will be run. $pipes->set('sed s/-// | sed s/123/abc/ | sed s/ABC/abc/'); if ($pipes->{error}){ print "Error!\n"; } #'123-ABCxyz' through the command set above. my $returned=$pipes->run('123-ABCxyz'); WWW: http://search.cpan.org/~vvelox/IO-MultiPipe/
Homepage    cgit ¦ GitHub ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
There is no configure plist information for this port.
Dependency lines:
  • p5-IO-MultiPipe>0:net/p5-IO-MultiPipe
No installation instructions:
This port has been deleted.
PKGNAME: p5-IO-MultiPipe
Flavors: there is no flavor information for this port.
distinfo:
There is no distinfo for this port.

No package information for this port in our database
Sometimes this happens. Not all ports have packages. Perhaps there is a build error. Check the fallout link: pkg-fallout
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. perl5.8.8 : lang/perl5.8
Runtime dependencies:
  1. perl5.8.8 : lang/perl5.8
There are no ports dependent upon this port

Configuration Options:
No options to configure
Options name:
N/A
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (20 items)
Collapse this list.
  1. ftp://cpan.pop-mg.com.br/pub/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  2. ftp://csociety-ftp.ecn.purdue.edu/pub/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  3. ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/
  4. ftp://ftp.auckland.ac.nz/pub/perl/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  5. ftp://ftp.chg.ru/pub/lang/perl/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  6. ftp://ftp.cpan.org/pub/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  7. ftp://ftp.cs.colorado.edu/pub/perl/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  8. ftp://ftp.dti.ad.jp/pub/lang/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  9. ftp://ftp.funet.fi/pub/languages/perl/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  10. ftp://ftp.isu.net.sa/pub/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  11. ftp://ftp.kddlabs.co.jp/lang/perl/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  12. ftp://ftp.mirrorservice.org/sites/ftp.funet.fi/pub/languages/perl/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  13. ftp://ftp.sunet.se/pub/lang/perl/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  14. ftp://mirror.hiwaay.net/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  15. http://at.cpan.org/modules/by-module/../../authors/id/V/VV/VVELOX/
  16. http://backpan.cpan.org/modules/by-module/../../authors/id/V/VV/VVELOX/
  17. http://ring.nict.go.jp/archives/lang/perl/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  18. http://ring.riken.jp/archives/lang/perl/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  19. http://ring.sakura.ad.jp/archives/lang/perl/CPAN/modules/by-module/../../authors/id/V/VV/VVELOX/
  20. http://www.cpan.dk/modules/by-module/../../authors/id/V/VV/VVELOX/
Collapse this list.

Number of commits found: 2

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
0.0.0
26 Jan 2009 22:48:20
Original commit files touched by this commit
pgollucci search for other commits by this committer
- Fix INDEX
- relocate net/p5-IO-MultiPipe -> devel/p5-IO-MultiPipe

Pointhat:       me :(
0.0.0
26 Jan 2009 17:44:14
Original commit files touched by this commit
pgollucci search for other commits by this committer
Normally if a part of a pipe fails, depending on the location, it won't
be detected. This breaks down a command involving pipes and runs each
command seperately.

It uses open3 to run each chunk of the pipe.

    use IO::MultiPipe;

    my $pipes = IO::MultiPipe->new();

    #This sets the pipe that will be run.
    $pipes->set('sed s/-// | sed s/123/abc/ | sed s/ABC/abc/');
    if ($pipes->{error}){
        print "Error!\n";
    }

    #'123-ABCxyz' through the command set above.
    my $returned=$pipes->run('123-ABCxyz');

WWW: http://search.cpan.org/~vvelox/IO-MultiPipe/

PR:             ports/ports/130563
Submitted by:   Zane C, Bowers <vvelox at vvelox.net>

Number of commits found: 2