Commit graph

20 commits

Author SHA1 Message Date
ryoon
1344d8d8e3 Recursive revbump from lang/perl5 5.26.0 2017-06-05 14:22:16 +00:00
wiz
86a78fce2e Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
agc
d9e4cfe05d Add SHA512 digests for distfiles for devel category
Issues found with existing distfiles:
	distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip
	distfiles/fortran-utils-1.1.tar.gz
	distfiles/ivykis-0.39.tar.gz
	distfiles/enum-1.11.tar.gz
	distfiles/pvs-3.2-libraries.tgz
	distfiles/pvs-3.2-linux.tgz
	distfiles/pvs-3.2-solaris.tgz
	distfiles/pvs-3.2-system.tgz
No changes made to these distinfo files.

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
2015-11-03 03:27:11 +00:00
wiz
0982effce2 Recursive PKGREVISION bump for all packages mentioning 'perl',
having a PKGNAME of p5-*, or depending such a package,
for perl-5.22.0.
2015-06-12 10:48:20 +00:00
mef
468663d3ea (pkgsrc)
- Drop patches/patch-ecb.h, now upstream takes care.
(upstream)
  - update 1.20 to 1.21
    -------------------
1.21 Wed Feb 11 20:31:01 CET 2015
        - upgrade ecb.h for C11 compatibility.
2015-02-13 14:03:34 +00:00
joerg
11f2e0efc3 Yet another copy of ecb.h in CPAN. 2014-12-18 10:51:59 +00:00
mef
820ca7bc8a Update 1.1(0) to 1.2(0)
1.2   Fri Apr 11 06:22:38 CEST 2014
	- perl5porters broke Async::Interrupt, BDB, EV, IO::AIO, OpenCL
          without warning by switching the meaning of USE_SOCKETS_AS_HANDLES
          in 5.18. What's so attractive about giving a shit about backwards
          compatibility - I will never understand.
2014-12-12 11:13:21 +00:00
wiz
7eeb51b534 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.
2014-05-29 23:35:13 +00:00
obache
0facd5e8b4 Change version number in pkgsrc to 1.10, so that it to be greater than previous
1.05.
2013-09-02 13:40:33 +00:00
obache
12bbf15008 Update p5-Async-Interrupt to 1.1.
Revision history for Perl extension Async::Interrupt.

1.1   Wed Apr 25 00:46:08 CEST 2012
	- new $async->handle method.
	- new $async->pipe_drain method.
        - use memory fences for !x86, and x86 future
          proofing. use libecb for implementation.
2013-09-02 12:55:02 +00:00
wiz
d2ca14a3f1 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.
2013-05-31 12:39:57 +00:00
asau
e1ab7079b6 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
wiz
8b5d49eb78 Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.
2012-10-03 21:53:53 +00:00
adam
4bee0ee3fc Revision bump after updating perl to 5.14.1 2011-08-07 08:03:22 +00:00
seb
c3f1e700ad 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!
2010-08-21 16:32:42 +00:00
seb
41d83bc573 Update p5-Async-Interrupt from version 1.04 to version 1.05.
Pkgsrc changes:
- adjust MASTER_SITES

Upstream changes:
1.05  Sat May 15 02:06:33 CEST 2010
	- implement $epipe->signal_func method.
2010-05-24 20:25:25 +00:00
seb
5bc1f2bbe1 Update p5-Async-Interrupt from version 1.03 to version 1.04.
Pkgsrc changes:
- placate pkglint

Upstream changes:
1.04  Wed Mar 31 02:46:49 CEST 2010
        - a double fork partially killed the event pipe (great testcase
          by dormando). affects IO::AIO, BDB and Async::Interrupt.
2010-04-11 23:09:38 +00:00
sno
6a5dcf3d9f Updating devel/p5-Async-Interrupt from 1.02 to 1.03
pkgsrc changes:
- Add USE_LANGUAGES to mark it's an XS based module requiring a C Compiler

Upstream changes:
1.03  Tue Nov 24 14:31:10 CET 2009
	- port to loser platform.
2010-03-16 19:10:43 +00:00
sno
f9171a2cf1 Updating devel/p5-Async-Interrupt from 1.01 to 1.02
Upstream changes:
1.02  Tue Sep  1 18:41:09 CEST 2009
	- prototypes for sig2name/sig2num were missing.
2009-09-16 18:37:48 +00:00
sno
c85da2d8fa Importing package for perl5 module Async::Interrupt 1.01 as dependency
for devel/p5-AnyEvent.

This module implements a single feature only of interest to advanced perl
modules, namely asynchronous interruptions (think "UNIX signals", which are
very similar).

Sometimes, modules wish to run code asynchronously (in another thread, or
from a signal handler), and then signal the perl interpreter on certain
events. One common way is to write some data to a pipe and use an event
handling toolkit to watch for I/O events. Another way is to send a signal.
Those methods are slow, and in the case of a pipe, also not asynchronous -
it won't interrupt a running perl interpreter.

This module implements asynchronous notifications that enable you to signal
running perl code from another thread, asynchronously, and sometimes even
without using a single syscall.
2009-08-08 20:35:56 +00:00