File: control

package info (click to toggle)
golang-github-getlantern-context 0.0~git20190109.c447772-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 80 kB
  • sloc: makefile: 2
file content (26 lines) | stat: -rw-r--r-- 1,205 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-getlantern-context
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Antoine Beaupré <anarcat@debian.org>, Micah Anderson <micah@riseup.net>
Build-Depends: debhelper-compat (= 11),
               dh-golang,
               golang-any,
               golang-github-stretchr-testify-dev
Standards-Version: 4.3.0
Homepage: https://github.com/getlantern/context
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-getlantern-context
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-getlantern-context.git
XS-Go-Import-Path: github.com/getlantern/context
Testsuite: autopkgtest-pkg-go

Package: golang-github-getlantern-context-dev
Architecture: all
Depends: ${misc:Depends},
         golang-github-stretchr-testify-dev
Description: goroutine-based context state
 Provides goroutine-based context state inspired by
 https://github.com/tylerb/gls and https://github.com/jtolds/gls. It
 uses the same basic hack as tylerb's library, but adds a stack
 abstraction that allows nested contexts similar to jtolds' library,
 but using Enter() and Exit() instead of callback functions.