File: control

package info (click to toggle)
golang-github-mitchellh-panicwrap 0.0~git20170106.fce601f-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 104 kB
  • sloc: makefile: 2
file content (26 lines) | stat: -rw-r--r-- 1,192 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
Source: golang-github-mitchellh-panicwrap
Section: devel
Priority: optional
Standards-Version: 4.1.4
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Alexandre Viau <aviau@debian.org>
Build-Depends: debhelper (>= 11~),
               dh-golang,
               golang-go,
Homepage: https://github.com/mitchellh/panicwrap
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-mitchellh-panicwrap
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-mitchellh-panicwrap.git
XS-Go-Import-Path: github.com/mitchellh/panicwrap
Testsuite: autopkgtest-pkg-go

Package: golang-github-mitchellh-panicwrap-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends},
         golang-go,
Description: library for catching and handling panics in Go applications
 panicwrap is a Go library that re-executes a Go binary and monitors
 stderr output from the binary for a panic. When it finds a panic, it
 executes a user-defined handler function. Stdout, stderr, stdin, signals,
 and exit codes continue to work as normal, making the existence of
 panicwrap mostly invisible to the end user until a panic actually occurs.