File: control

package info (click to toggle)
libdata-stream-bulk-perl 0.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 208 kB
  • sloc: perl: 976; makefile: 2
file content (43 lines) | stat: -rw-r--r-- 1,909 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
34
35
36
37
38
39
40
41
42
43
Source: libdata-stream-bulk-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Ansgar Burchardt <ansgar@debian.org>,
           gregor herrmann <gregoa@debian.org>,
           Florian Schlichting <fschlich@zedat.fu-berlin.de>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: perl,
                     libdbd-mock-perl,
                     libdbd-sqlite3-perl,
                     libdbi-perl,
                     libdbix-class-perl,
                     libmoose-perl,
                     libnamespace-clean-perl,
                     libpath-class-perl,
                     libsub-exporter-perl,
                     libtest-requires-perl,
                     libtest-tempdir-perl
Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libdata-stream-bulk-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libdata-stream-bulk-perl.git
Homepage: https://metacpan.org/release/Data-Stream-Bulk

Package: libdata-stream-bulk-perl
Architecture: all
Depends: ${perl:Depends},
         ${misc:Depends},
         libmoose-perl,
         libnamespace-clean-perl,
         libpath-class-perl,
         libsub-exporter-perl
Description: N at a time iteration API
 Data::Stream::Bulk is a utility for working with data streams of indefinite
 size. It tries to find a middle ground between one-at-a-time and all-at-once
 processing of data sets by providing a common interface for both.
 .
 Often, data sets from streams can fit entirely in memory, so operating on them
 with an array is simple and appropriate. However, in cases where the stream is
 not bounded, the array can grow to a very large size and quickly consume all
 available memory. This module allows developers to work with data in blocks
 which are guaranteed to fit in memory.