File: control

package info (click to toggle)
golang-github-ivpusic-grpool 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 72 kB
  • sloc: makefile: 2
file content (26 lines) | stat: -rw-r--r-- 1,044 bytes parent folder | download | duplicates (2)
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
Source: golang-github-ivpusic-grpool
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Antoine Beaupré <anarcat@debian.org>
Build-Depends: debhelper-compat (= 12),
               dh-golang,
               golang-any,
               golang-github-stretchr-testify-dev
Standards-Version: 4.3.0
Homepage: https://github.com/ivpusic/grpool
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-ivpusic-grpool
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-ivpusic-grpool.git
XS-Go-Import-Path: github.com/ivpusic/grpool
Testsuite: autopkgtest-pkg-go

Package: golang-github-ivpusic-grpool-dev
Architecture: all
Depends: ${misc:Depends},
         golang-github-stretchr-testify-dev
Description: Lightweight Goroutine pool
 Clients can submit jobs. Dispatcher takes job, and sends it to first
 available worker.  When worker is done with processing job, will be
 returned back to worker pool.
 .
 Number of workers and Job queue size is configurable.