File: control

package info (click to toggle)
libsignal-mask-perl 0.008-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 140 kB
  • sloc: perl: 210; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,454 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Source: libsignal-mask-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libipc-signal-perl <!nocheck>,
                     libthread-sigmask-perl <!nocheck>,
                     perl
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libsignal-mask-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libsignal-mask-perl.git
Homepage: https://metacpan.org/release/Signal-Mask
Rules-Requires-Root: no

Package: libsignal-mask-perl
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends},
         ${perl:Depends},
         libipc-signal-perl
Recommends: libthread-sigmask-perl
Description: module for easy handling of signal masks
 Signal::Mask is an abstraction around your process or thread signal mask. It
 is used to fetch and/or change the signal mask of the calling process or
 thread. The signal mask is the set of signals whose delivery is currently
 blocked for the caller. It is available as the global hash %Signal::Mask.
 .
 Signal::Pending is an abstraction around your process'/thread's pending
 signals. It can be used in combination with signal masks to handle signals in
 a controlled manner. The set of pending signals is available as the global
 hash %Signal::Pending.