File: control

package info (click to toggle)
golang-github-calmh-luhn 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 56 kB
  • ctags: 11
  • sloc: makefile: 2
file content (26 lines) | stat: -rw-r--r-- 1,051 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
Source: golang-github-calmh-luhn
Section: devel
Priority: extra
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Alexandre Viau <aviau@debian.org>
Build-Depends: debhelper (>= 9),
               dh-golang,
               golang-go
Standards-Version: 3.9.8
Homepage: https://github.com/calmh/luhn
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-calmh-luhn.git
Vcs-Git: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-calmh-luhn.git
XS-Go-Import-Path: github.com/calmh/luhn

Package: golang-github-calmh-luhn-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends},
         golang-go
Description: Luhn-mod-N implementation in Go
 Package luhn provides a Luhn-mod-N implementation in Go.
 Function generate returns a check digit for the string s,
 which should be composed of characters from the Alphabet a.
 Function validate returns true if the last character of the
 string s is correct, for a string s composed of characters
 in the alphabet a.