File: control

package info (click to toggle)
golang-github-spf13-cast 1.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 232 kB
  • sloc: makefile: 33
file content (35 lines) | stat: -rw-r--r-- 1,493 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
34
35
Source: golang-github-spf13-cast
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Anthony Fok <foka@debian.org>,
           Tim Potter <tpot@hpe.com>
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               dh-sequence-golang,
               golang-any (>= 2:1.19~),
               golang-github-frankban-quicktest-dev (>= 1.14.6),
               tzdata-legacy
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-spf13-cast
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-spf13-cast.git
Homepage: https://github.com/spf13/cast
XS-Go-Import-Path: github.com/spf13/cast

Package: golang-github-spf13-cast-dev
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, tzdata-legacy
Description: Safe and easy casting from one type to another in Go
 Cast is a library to convert between different Go types in a consistent
 and easy way.
 .
 Cast provides simple functions to easily convert a number to a string, an
 interface into a bool, etc.  Cast does this intelligently when an obvious
 conversion is possible.  It doesn’t make any attempts to guess what you
 meant; for example, you can only convert a string to an int when it is a
 string representation of an int such as “8”.
 .
 Cast was developed for use in Hugo (https://gohugo.io/), a website engine
 which uses YAML, TOML or JSON for meta data.