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 photos
All times are UTC
Ukraine
Port details
p5-Consumer-NonBlock Send data between processes without blocking
0.003 develnew! 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 Package not present on quarterly.This port was created during this quarter. It will be in the next quarterly branch but not the current one.
Maintainer: sunpoet@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2026-04-18 22:03:26
Last Update: 2026-04-18 21:18:15
Commit Hash: 9153d3b
Also Listed In: perl5
License: ART10 GPLv1+
WWW:
https://metacpan.org/dist/Consumer-NonBlock
Description:
It is very easy to end up in a situation where a producer process produces data faster than a consumer process can read/process it resulting in the producer blocking on a full pipe buffer. This module allows 2 processes to share data similar to a pipe, but without the producer blocking due to full pipe buffers. A pipe is better in most situations, this is only useful if the producer needs to do many things and you cannot afford to block on a consumer. This is used by App::Yath to send data to a comparatively slow database upload process without blocking.
Homepage    cgit ¦ Codeberg ¦ 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
Expand this list (9 items)
Collapse this list.
  1. /usr/local/share/licenses/p5-Consumer-NonBlock-0.003/catalog.mk
  2. /usr/local/share/licenses/p5-Consumer-NonBlock-0.003/LICENSE
  3. /usr/local/share/licenses/p5-Consumer-NonBlock-0.003/ART10
  4. /usr/local/share/licenses/p5-Consumer-NonBlock-0.003/GPLv1+
  5. lib/perl5/site_perl/Consumer/NonBlock.pm
  6. lib/perl5/site_perl/man/man3/Consumer::NonBlock.3.gz
  7. @owner
  8. @group
  9. @mode
Collapse this list.
USE_RC_SUBR (Service Scripts)
  • no SUBR information found for this port
Dependency lines:
  • p5-Consumer-NonBlock>0:devel/p5-Consumer-NonBlock
To install the port:
cd /usr/ports/devel/p5-Consumer-NonBlock/ && make install clean
To add the package, run one of these commands:
  • pkg install devel/p5-Consumer-NonBlock
  • pkg install p5-Consumer-NonBlock
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: p5-Consumer-NonBlock
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1775587092 SHA256 (Consumer-NonBlock-0.003.tar.gz) = 117906209393159511954db4d51115444ea9e6a5ea5a2c3c8cdbdcf0c229162d SIZE (Consumer-NonBlock-0.003.tar.gz) = 16932

Packages (timestamps in pop-ups are UTC):
p5-Consumer-NonBlock
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest----0.003n/an/an/a
FreeBSD:13:quarterly-----n/an/an/a
FreeBSD:14:latest0.0030.003--0.003---
FreeBSD:14:quarterly--------
FreeBSD:15:latest0.0030.003n/a-n/an/a--
FreeBSD:15:quarterly--n/a-n/an/a--
FreeBSD:16:latest0.0030.003n/a-n/an/a--
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. p5-Object-HashBase>=0 : devel/p5-Object-HashBase
  2. perl5>=5.42.r<5.43 : lang/perl5.42
  3. perl5>=5.42.r<5.43 : lang/perl5.42
Runtime dependencies:
  1. p5-Object-HashBase>=0 : devel/p5-Object-HashBase
  2. perl5>=5.42.r<5.43 : lang/perl5.42
There are no ports dependent upon this port

Configuration Options:
No options to configure
Options name:
devel_p5-Consumer-NonBlock
USES:
perl5
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (12 items)
Collapse this list.
  1. ftp://ftp.auckland.ac.nz/pub/perl/CPAN/authors/id/E/EX/EXODIST/
  2. ftp://ftp.cpan.org/pub/CPAN/authors/id/E/EX/EXODIST/
  3. ftp://ftp.cpan.org/pub/CPAN/modules/by-module/Consumer/
  4. ftp://ftp.funet.fi/pub/languages/perl/CPAN/authors/id/E/EX/EXODIST/
  5. ftp://ftp.mirrorservice.org/sites/cpan.perl.org/CPAN/authors/id/E/EX/EXODIST/
  6. http://backpan.perl.org/authors/id/E/EX/EXODIST/
  7. http://ftp.jaist.ac.jp/pub/CPAN/authors/id/E/EX/EXODIST/
  8. http://ftp.twaren.net/Unix/Lang/CPAN/authors/id/E/EX/EXODIST/
  9. https://cpan.metacpan.org/authors/id/E/EX/EXODIST/
  10. https://cpan.metacpan.org/modules/by-module/Consumer/
  11. https://www.cpan.org/authors/id/E/EX/EXODIST/
Collapse this list.

Number of commits found: 1

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
0.003
18 Apr 2026 21:18:15
commit hash: 9153d3be99647da4362c22c9a9ab4e5075e78380commit hash: 9153d3be99647da4362c22c9a9ab4e5075e78380commit hash: 9153d3be99647da4362c22c9a9ab4e5075e78380commit hash: 9153d3be99647da4362c22c9a9ab4e5075e78380 files touched by this commit
Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/p5-Consumer-NonBlock: Add p5-Consumer-NonBlock 0.003

It is very easy to end up in a situation where a producer process produces data
faster than a consumer process can read/process it resulting in the producer
blocking on a full pipe buffer. This module allows 2 processes to share data
similar to a pipe, but without the producer blocking due to full pipe buffers.

A pipe is better in most situations, this is only useful if the producer needs
to do many things and you cannot afford to block on a consumer. This is used by
App::Yath to send data to a comparatively slow database upload process without
blocking.

Number of commits found: 1