File: control

package info (click to toggle)
golang-github-ncabatoff-go-seq 0.0~git20180805.b08ef85-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 72 kB
  • sloc: makefile: 2
file content (32 lines) | stat: -rw-r--r-- 1,286 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
Source: golang-github-ncabatoff-go-seq
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Guillem Jover <gjover@sipwise.com>,
Section: golang
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any,
               golang-github-google-go-cmp-dev,
Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-ncabatoff-go-seq
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-ncabatoff-go-seq.git
Homepage: https://github.com/ncabatoff/go-seq
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/ncabatoff/go-seq

Package: golang-github-ncabatoff-go-seq-dev
Architecture: all
Multi-Arch: foreign
Depends: golang-github-google-go-cmp-dev,
         ${misc:Depends},
Description: sequence go values to allow sorting them (library)
 This package is intended to allow ordering (most) values via reflection,
 much like go-cmp allows comparing values for equality.
 .
 This is helpful when trying to write Less() methods for sorting
 structures.
 .
 Notable unsupported types include the builtin complex type, channels,
 functions, and maps with non-string keys. Pointers can be ordered if
 their underlying types can be ordered.