File: control

package info (click to toggle)
golang-github-jtolds-gls 4.20.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 96 kB
  • sloc: makefile: 2
file content (27 lines) | stat: -rw-r--r-- 1,062 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
Source: golang-github-jtolds-gls
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Tim Potter <tpot@hpe.com>
Section: devel
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 12),
               dh-golang,
               golang-any
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-jtolds-gls
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-jtolds-gls.git
Homepage: https://github.com/jtolds/gls
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/jtolds/gls

Package: golang-github-jtolds-gls-dev
Architecture: all
Depends: ${misc:Depends}
Breaks: golang-defaults (<< 2:1.12~1)
Built-Using: ${misc:Built-Using}
Description: Goroutine local storage
 The gls package implements goroutine-local storage. It is a solution
 to the common problem of identifying a goroutine by some kind of
 gouroutine id. For example, it can be used to log an HTTP request
 context id in every log line in the same goroutine as the incoming
 HTTP request.