pkgsrc/devel/p5-Proc-Background/Makefile
wen 0d8938a6c5 Update to 1.30
Upstream changes:
Version 1.30

  * New options 'command','exe' dis-ambiguate the problems around
    determining how to parse the command line and determine the
    executable name.  It also allows faking argv[0].  They can be
    inspected after program launch via same-named attributes.
  * New options 'stdin','stdout','stderr' allow initializing handles
    of the child process.
  * New option 'cwd' sets initial current directory of the child
  * Renamed '->die' to '->terminate' and options 'die_upon_destroy'
    to 'autoterminate' (but preserved back-compat)
  * Option 'autoterminate' now has an attribute accessor and can be
    toggled on the fly.
  * New option 'autodie' throws exceptions from constructor instead
    of returning undef.
  * On Unix, use a pipe to capture error messages all the way through
    to the exec() call.  Reap exec() failures without exposing the
    forked process to the user.
  * Add methods ->suspend and ->resume
  * Mitigate bug in timeout_system where a system clock change could
    increase the wait-time indefinitely.
2021-11-07 00:59:13 +00:00

19 lines
525 B
Makefile

# $NetBSD: Makefile,v 1.19 2021/11/07 00:59:13 wen Exp $
#
DISTNAME= Proc-Background-1.30
PKGNAME= p5-${DISTNAME}
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Proc/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://metacpan.org/release/Proc-Background
COMMENT= Perl 5 module prodiving an interface to background process management
LICENSE= ${PERL5_LICENSE}
USE_LANGUAGES= # empty
PERL5_PACKLIST= auto/Proc/Background/.packlist
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"