CVS log for pkgsrc/devel/p5-Proc-Background/Makefile
Up to [cvs.NetBSD.org] / pkgsrc / devel / p5-Proc-Background
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.23: download - view: text, markup, annotated - select for diffs
Sat Nov 16 12:04:58 2024 UTC (4 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2024Q4-base,
pkgsrc-2024Q4,
HEAD
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -1
lines
*: recursive bump for perl 5.40
Revision 1.22: download - view: text, markup, annotated - select for diffs
Fri Sep 1 01:52:01 2023 UTC (18 months, 3 weeks ago) by wen
Branches: MAIN
CVS tags: pkgsrc-2024Q3-base,
pkgsrc-2024Q3,
pkgsrc-2024Q2-base,
pkgsrc-2024Q2,
pkgsrc-2024Q1-base,
pkgsrc-2024Q1,
pkgsrc-2023Q4-base,
pkgsrc-2023Q4,
pkgsrc-2023Q3-base,
pkgsrc-2023Q3
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +2 -3
lines
Update to 1.32
Upstream changes:
Version 1.32
* Fix fatal bug in Win32 constructor from changes in 1.31
Mon Apr 17 14:33:00 EDT 2023
Version 1.31
* Allow { exe => undef } on Win32 for default OS determination of
what to execute.
* Avoid potential side effects from signal handlers when preparing
to exec on Unix
* Better perl 5.6 compatibility
* Various documentation improvements
Revision 1.21: download - view: text, markup, annotated - select for diffs
Thu Jul 6 09:39:54 2023 UTC (20 months, 2 weeks ago) by wiz
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -2
lines
*: recursive bump for perl 5.38
Revision 1.20: download - view: text, markup, annotated - select for diffs
Tue Jun 28 11:33:07 2022 UTC (2 years, 8 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2023Q2-base,
pkgsrc-2023Q2,
pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
pkgsrc-2022Q3-base,
pkgsrc-2022Q3
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +2 -1
lines
*: recursive bump for perl 5.36
Revision 1.19: download - view: text, markup, annotated - select for diffs
Sun Nov 7 00:59:13 2021 UTC (3 years, 4 months ago) by wen
Branches: MAIN
CVS tags: pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1,
pkgsrc-2021Q4-base,
pkgsrc-2021Q4
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -2
lines
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.
Revision 1.18: download - view: text, markup, annotated - select for diffs
Sat Sep 18 13:51:58 2021 UTC (3 years, 6 months ago) by wen
Branches: MAIN
CVS tags: pkgsrc-2021Q3-base,
pkgsrc-2021Q3
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -3
lines
Update to 1.22
Upstream changes:
Version 1.22
* Fix bug in timeout of $p->wait on Unix perl earlier than 5.12
where Time::HiRes::alarm was failing to set the alarm.
* Fix test case 47 (which was failing on about 5% of systems)
by waiting longer for the process to exit
Revision 1.17: download - view: text, markup, annotated - select for diffs
Mon May 24 19:51:26 2021 UTC (3 years, 10 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2021Q2-base,
pkgsrc-2021Q2
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +2 -2
lines
*: recursive bump for perl 5.34
Revision 1.16: download - view: text, markup, annotated - select for diffs
Mon Aug 31 18:08:44 2020 UTC (4 years, 6 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2021Q1-base,
pkgsrc-2021Q1,
pkgsrc-2020Q4-base,
pkgsrc-2020Q4,
pkgsrc-2020Q3-base,
pkgsrc-2020Q3
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -1
lines
*: bump PKGREVISION for perl-5.32.
Revision 1.15: download - view: text, markup, annotated - select for diffs
Thu Apr 16 15:09:12 2020 UTC (4 years, 11 months ago) by mef
Branches: MAIN
CVS tags: pkgsrc-2020Q2-base,
pkgsrc-2020Q2
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -3
lines
Tue Nov 5 17:39:00 EST 2019
Version 1.21
* Fix bug in timeout_system that caused it to wait the maximum
duration on every call.
Sun Nov 3 19:34:00 EST 2019
Version 1.20
* More correct parsing of Win32 arguments to determine
executable name, and more correct quoting when building
command line when starting from an argv.
* More correct use of Unix signals during ->die, but also give
user the ability to specify a custom sequence of signals.
* Emulate Unix exit status of SIGKILL on Win32 when process was
ended using $proc->Kill
* New attributes ->exit_code and ->exit_signal help inspect the
wstat value returned by ->wait.
* Fix Win32 path separator used when searching %PATH% for exe
* Don't leak changes to $? when calling ->die() during DESTROY
* Make sure all die_upon_destroy happens before global destruction
* Re-tooled with Dist::Zilla for modern generation of MYMETA and
automatic version, license, etc.
Revision 1.14: download - view: text, markup, annotated - select for diffs
Sun Aug 11 13:20:13 2019 UTC (5 years, 7 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2020Q1-base,
pkgsrc-2020Q1,
pkgsrc-2019Q4-base,
pkgsrc-2019Q4,
pkgsrc-2019Q3-base,
pkgsrc-2019Q3
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -2
lines
Bump PKGREVISIONs for perl 5.30.0
Revision 1.13: download - view: text, markup, annotated - select for diffs
Sun Jun 30 20:15:38 2019 UTC (5 years, 8 months ago) by nia
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2
lines
Update packages using a search.cpan.org HOMEPAGE to metacpan.org.
The former now redirects to the latter.
This covers the most simple cases where http://search.cpan.org/dist/name
can be changed to https://metacpan.org/release/name.
Reviewed by hand to hopefully make sure no unwanted changes sneak in.
Revision 1.12: download - view: text, markup, annotated - select for diffs
Wed Aug 22 09:44:33 2018 UTC (6 years, 7 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2019Q2-base,
pkgsrc-2019Q2,
pkgsrc-2019Q1-base,
pkgsrc-2019Q1,
pkgsrc-2018Q4-base,
pkgsrc-2018Q4,
pkgsrc-2018Q3-base,
pkgsrc-2018Q3
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -2
lines
Recursive bump for perl5-5.28.0
Revision 1.11: download - view: text, markup, annotated - select for diffs
Mon Jun 5 14:23:30 2017 UTC (7 years, 9 months ago) by ryoon
Branches: MAIN
CVS tags: pkgsrc-2018Q2-base,
pkgsrc-2018Q2,
pkgsrc-2018Q1-base,
pkgsrc-2018Q1,
pkgsrc-2017Q4-base,
pkgsrc-2017Q4,
pkgsrc-2017Q3-base,
pkgsrc-2017Q3,
pkgsrc-2017Q2-base,
pkgsrc-2017Q2
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -2
lines
Recursive revbump from lang/perl5 5.26.0
Revision 1.10: download - view: text, markup, annotated - select for diffs
Wed Jun 8 19:23:26 2016 UTC (8 years, 9 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2017Q1-base,
pkgsrc-2017Q1,
pkgsrc-2016Q4-base,
pkgsrc-2016Q4,
pkgsrc-2016Q3-base,
pkgsrc-2016Q3,
pkgsrc-2016Q2-base,
pkgsrc-2016Q2
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +2 -2
lines
Bump PKGREVISION for perl-5.24.
Revision 1.9: download - view: text, markup, annotated - select for diffs
Fri Jun 12 10:49:39 2015 UTC (9 years, 9 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2016Q1-base,
pkgsrc-2016Q1,
pkgsrc-2015Q4-base,
pkgsrc-2015Q4,
pkgsrc-2015Q3-base,
pkgsrc-2015Q3,
pkgsrc-2015Q2-base,
pkgsrc-2015Q2
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -2
lines
Recursive PKGREVISION bump for all packages mentioning 'perl',
having a PKGNAME of p5-*, or depending such a package,
for perl-5.22.0.
Revision 1.8: download - view: text, markup, annotated - select for diffs
Thu May 29 23:36:13 2014 UTC (10 years, 9 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2015Q1-base,
pkgsrc-2015Q1,
pkgsrc-2014Q4-base,
pkgsrc-2014Q4,
pkgsrc-2014Q3-base,
pkgsrc-2014Q3,
pkgsrc-2014Q2-base,
pkgsrc-2014Q2
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -2
lines
Bump for perl-5.20.0.
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
Revision 1.7: download - view: text, markup, annotated - select for diffs
Fri May 31 12:40:40 2013 UTC (11 years, 9 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2014Q1-base,
pkgsrc-2014Q1,
pkgsrc-2013Q4-base,
pkgsrc-2013Q4,
pkgsrc-2013Q3-base,
pkgsrc-2013Q3,
pkgsrc-2013Q2-base,
pkgsrc-2013Q2
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -2
lines
Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package
Like last time, where this caused no complaints.
Revision 1.6: download - view: text, markup, annotated - select for diffs
Wed Oct 31 11:18:50 2012 UTC (12 years, 4 months ago) by asau
Branches: MAIN
CVS tags: pkgsrc-2013Q1-base,
pkgsrc-2013Q1,
pkgsrc-2012Q4-base,
pkgsrc-2012Q4
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +1 -2
lines
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Revision 1.5: download - view: text, markup, annotated - select for diffs
Wed Oct 3 21:55:31 2012 UTC (12 years, 5 months ago) by wiz
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -2
lines
Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.
I hope that's all of them.
Revision 1.4: download - view: text, markup, annotated - select for diffs
Sun Aug 14 12:26:31 2011 UTC (13 years, 7 months ago) by obache
Branches: MAIN
CVS tags: pkgsrc-2012Q3-base,
pkgsrc-2012Q3,
pkgsrc-2012Q2-base,
pkgsrc-2012Q2,
pkgsrc-2012Q1-base,
pkgsrc-2012Q1,
pkgsrc-2011Q4-base,
pkgsrc-2011Q4,
pkgsrc-2011Q3-base,
pkgsrc-2011Q3
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -2
lines
Revision bump after updating perl5 to 5.14.1.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Sat Aug 21 16:34:19 2010 UTC (14 years, 7 months ago) by seb
Branches: MAIN
CVS tags: pkgsrc-2011Q2-base,
pkgsrc-2011Q2,
pkgsrc-2011Q1-base,
pkgsrc-2011Q1,
pkgsrc-2010Q4-base,
pkgsrc-2010Q4,
pkgsrc-2010Q3-base,
pkgsrc-2010Q3
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +2 -1
lines
Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.
sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
Revision 1.2: download - view: text, markup, annotated - select for diffs
Tue Jul 21 22:49:22 2009 UTC (15 years, 8 months ago) by sno
Branches: MAIN
CVS tags: pkgsrc-2010Q2-base,
pkgsrc-2010Q2,
pkgsrc-2010Q1-base,
pkgsrc-2010Q1,
pkgsrc-2009Q4-base,
pkgsrc-2009Q4,
pkgsrc-2009Q3-base,
pkgsrc-2009Q3
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +3 -2
lines
Updating package for p5 module Proc::Background from 1.08 to 1.10 and
setting license to ${PERL5_LICENSE} according to module POD
Upstream changes:
Sun Jul 5 15:40:32 PDT 2009
* Release version 1.10.
Sun Jul 5 15:15:12 PDT 2009
* Makefile.PL: Resolve
https://rt.cpan.org/Ticket/Display.html?id=47100 by passing
PREREQ_PM to WriteMakefile().
Patch by: Tomas Doran <bobtfish@bobtfish.net>
Wed Jul 1 22:58:13 PDT 2009
* README: Correct the URL to the Subversion repository for
this project.
Wed Jul 1 22:46:11 PDT 2009
* Release version 1.09.
Wed Jul 1 22:36:06 PDT 2009
* Makefile.PL: Switch from die() to warn() if Win32::Process
isn't installed into a warning. When running under CPAN.pm,
the die causes the install to fail before processing
dependencies. Reducing this to a warning means that CPAN
will cleanly install Proc::Background and Win32::Process
with no user intervention needed in strawberry perl or even
ActiveState if you have a working make.
Patch by: Tomas Doran <bobtfish@bobtfish.net>
Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Sun Feb 15 20:57:01 2009 UTC (16 years, 1 month ago) by seb
Branches: TNF
CVS tags: pkgsrc-base,
pkgsrc-2009Q2-base,
pkgsrc-2009Q2,
pkgsrc-2009Q1-base,
pkgsrc-2009Q1
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0
lines
Initial import of p5-Proc-Background version 1.08 in the NetBSD
Packages Collection.
The Perl 5 module Proc::Background provides a generic interface for
placing processes in the background on both Unix and Win32 platforms.
Background processes can be started, killed, waited upon, checked
for existence and their exit values can be retrieved.
Revision 1.1: download - view: text, markup, annotated - select for diffs
Sun Feb 15 20:57:01 2009 UTC (16 years, 1 month ago) by seb
Branches: MAIN
Initial revision
CVSweb <webmaster@jp.NetBSD.org>