File: control

package info (click to toggle)
golang-github-spf13-viper 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 232 kB
  • sloc: makefile: 3
file content (60 lines) | stat: -rw-r--r-- 2,558 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Source: golang-github-spf13-viper
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Anthony Fok <foka@debian.org>, Tim Potter <tpot@hpe.com>
Build-Depends: debhelper (>= 11~),
               dh-golang,
               golang-any,
               golang-github-fsnotify-fsnotify-dev,
               golang-github-hashicorp-hcl-dev,
               golang-github-magiconair-properties-dev,
               golang-github-mitchellh-mapstructure-dev,
               golang-github-pelletier-go-toml-dev,
               golang-github-spf13-afero-dev,
               golang-github-spf13-cast-dev,
               golang-github-spf13-jwalterweatherman-dev,
               golang-github-spf13-pflag-dev,
               golang-github-stretchr-testify-dev,
               golang-github-xordataexchange-crypt-dev,
               golang-gopkg-yaml.v2-dev
Standards-Version: 4.2.1
Homepage: https://github.com/spf13/viper
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-spf13-viper
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-spf13-viper.git
XS-Go-Import-Path: github.com/spf13/viper
Testsuite: autopkgtest-pkg-go

Package: golang-github-spf13-viper-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends},
         golang-github-fsnotify-fsnotify-dev,
         golang-github-hashicorp-hcl-dev,
         golang-github-magiconair-properties-dev,
         golang-github-mitchellh-mapstructure-dev,
         golang-github-pelletier-go-toml-dev,
         golang-github-spf13-afero-dev,
         golang-github-spf13-cast-dev,
         golang-github-spf13-jwalterweatherman-dev,
         golang-github-spf13-pflag-dev,
         golang-github-stretchr-testify-dev,
         golang-github-xordataexchange-crypt-dev,
         golang-gopkg-yaml.v2-dev
Description: Go configuration with fangs
 Viper is a complete configuration solution for Go applications
 including 12-Factor apps.  It is designed to work within an application,
 and can handle all types of configuration needs and formats.
 It supports:
 .
  * setting defaults
  * reading from JSON, TOML, YAML, HCL, and Java properties config files
  * live watching and re-reading of config files (optional)
  * reading from environment variables
  * reading from remote config systems (etcd or Consul), and watching changes
  * reading from command line flags
  * reading from buffer
  * setting explicit values
 .
 Viper can be thought of as a registry for all of your applications
 configuration needs.