File: control

package info (click to toggle)
golang-github-fatih-semgroup 1.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 120 kB
  • sloc: makefile: 2
file content (31 lines) | stat: -rw-r--r-- 1,328 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
Source: golang-github-fatih-semgroup
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Anthony Fok <foka@debian.org>
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               dh-sequence-golang,
               golang-any (>= 2:1.17~),
               golang-golang-x-sync-dev
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-fatih-semgroup
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-fatih-semgroup.git
Homepage: https://github.com/fatih/semgroup
XS-Go-Import-Path: github.com/fatih/semgroup

Package: golang-github-fatih-semgroup-dev
Architecture: all
Multi-Arch: foreign
Depends: golang-golang-x-sync-dev,
         ${misc:Depends}
Description: like errgroup/waitgroup, but only runs a maximum of tasks at any time
 semgroup provides synchronization and error propagation, for groups of
 goroutines working on subtasks of a common task.  It uses a weighted
 semaphore implementation to make sure that only a number of maximum
 tasks can be run at any time.
 .
 Unlike golang.org/x/sync/errgroup, it doesn't return the first non-nil
 error, rather it accumulates all errors and returns a set of errors,
 allowing each task to fulfill their task.