File: control

package info (click to toggle)
golang-github-alexflint-go-arg 1.3.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 220 kB
  • sloc: sh: 21; makefile: 4
file content (31 lines) | stat: -rw-r--r-- 1,406 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
Source: golang-github-alexflint-go-arg
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Nilesh Patra <npatra974@gmail.com>
Section: devel
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any,
               golang-github-stretchr-testify-dev,
               golang-github-pmezard-go-difflib-dev,
               golang-github-davecgh-go-spew-dev,
               golang-github-alexflint-go-scalar-dev
Standards-Version: 4.5.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
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/alexflint/go-arg

Package: golang-github-alexflint-go-arg-dev
Architecture: all
Depends: golang-github-stretchr-testify-dev,
         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.