File: control

package info (click to toggle)
golang-github-anacrolix-tagflag 0.0.0-20180109-2146c8d-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 120 kB
  • sloc: makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,422 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
32
33
Source: golang-github-anacrolix-tagflag
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Drew Parsons <dparsons@debian.org>
Build-Depends: debhelper-compat (= 12),
               dh-golang,
               golang-any,
               golang-github-anacrolix-missinggo-dev,
               golang-github-bradfitz-iter-dev,
               golang-github-dustin-go-humanize-dev,
               golang-github-huandu-xstrings-dev,
               golang-github-pkg-errors-dev,
               golang-github-stretchr-testify-dev
Standards-Version: 4.4.0
Homepage: https://github.com/anacrolix/tagflag
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-anacrolix-tagflag
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-anacrolix-tagflag.git
XS-Go-Import-Path: github.com/anacrolix/tagflag
Testsuite: autopkgtest-pkg-go

Package: golang-github-anacrolix-tagflag-dev
Architecture: all
Depends: ${misc:Depends},
         golang-github-anacrolix-missinggo-dev,
         golang-github-bradfitz-iter-dev,
         golang-github-dustin-go-humanize-dev,
         golang-github-pkg-errors-dev,
         golang-github-stretchr-testify-dev
Description: declarative flag parsing for Go using struct tags
 Package tagflag uses reflection to derive flags and positional
 arguments to a program, and parses and sets them from a slice of
 arguments.