File: control

package info (click to toggle)
golang-github-alexflint-go-arg 1.3.0%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 264 kB
  • sloc: sh: 21; makefile: 4
file content (29 lines) | stat: -rw-r--r-- 1,287 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
Source: golang-github-alexflint-go-arg
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Nilesh Patra <nilesh@debian.org>
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               dh-sequence-golang,
               golang-any,
               golang-github-alexflint-go-scalar-dev,
               golang-github-stretchr-testify-dev,
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-alexflint-go-arg
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-alexflint-go-arg.git
Homepage: https://github.com/alexflint/go-arg
XS-Go-Import-Path: github.com/alexflint/go-arg

Package: golang-github-alexflint-go-arg-dev
Architecture: all
Multi-Arch: foreign
Depends: golang-github-alexflint-go-scalar-dev,
         ${misc:Depends}
Description: Struct-based argument parsing in Go
 The idea behind go-arg is that Go already has an excellent way
 to describe data structures using structs, so there is no need to
 develop additional levels of abstraction. Instead of one API to specify
 which arguments a program accepts, and then another API to get the
 values of those arguments, go-arg replaces both with a single struct.