Packaging update.
* debian/control:
- Update Standards-Version with no changes.
- Update Vcs-* to use HTTPS.
- Improve package description.
- Add me and Tim to Uploaders.
* debian/rules:
- Do not install *everything*.
Martín Ferrari
7 years ago
|
0 |
golang-github-beorn7-perks (0.0~git20150223.0.b965b61-2) UNRELEASED; urgency=medium
|
|
1 |
|
|
2 |
* debian/control:
|
|
3 |
- Update Standards-Version with no changes.
|
|
4 |
- Update Vcs-* to use HTTPS.
|
|
5 |
- Improve package description.
|
|
6 |
- Add me and Tim to Uploaders.
|
|
7 |
* debian/rules:
|
|
8 |
- Do not install *everything*.
|
|
9 |
|
|
10 |
-- Martín Ferrari <tincho@debian.org> Sun, 19 Jun 2016 19:05:33 +0100
|
|
11 |
|
0 | 12 |
golang-github-beorn7-perks (0.0~git20150223.0.b965b61-1) unstable; urgency=medium
|
1 | 13 |
|
2 | 14 |
* Initial release (Closes: #804123).
|
1 | 1 |
Section: devel
|
2 | 2 |
Priority: extra
|
3 | 3 |
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
|
4 | |
Uploaders: Dmitry Smirnov <onlyjob@debian.org>, Tim Potter <tpot@hpe.com>
|
|
4 |
Uploaders: Dmitry Smirnov <onlyjob@debian.org>,
|
|
5 |
Tim Potter <tpot@hpe.com>,
|
|
6 |
Martín Ferrari <tincho@debian.org>
|
5 | 7 |
Build-Depends: debhelper (>= 9),
|
6 | 8 |
dh-golang (>= 1.17~),
|
7 | 9 |
golang-go
|
8 | |
Standards-Version: 3.9.6
|
|
10 |
Standards-Version: 3.9.8
|
9 | 11 |
Homepage: https://github.com/beorn7/perks
|
10 | 12 |
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-beorn7-perks.git
|
11 | |
Vcs-Git: git://anonscm.debian.org/pkg-go/packages/golang-github-beorn7-perks.git
|
|
13 |
Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-beorn7-perks.git
|
12 | 14 |
XS-Go-Import-Path: github.com/beorn7/perks
|
13 | 15 |
|
14 | 16 |
Package: golang-github-beorn7-perks-dev
|
|
17 | 19 |
${misc:Depends},
|
18 | 20 |
golang-go
|
19 | 21 |
Description: effective computation of things
|
20 | |
Perks contains the Go package quantile that computes approximate quantiles
|
21 | |
over an unbounded data stream within low memory and CPU bounds.
|
|
22 |
This is a fork of github.com/bmizerany/perks (now unmaintained).
|
|
23 |
The package contains:
|
|
24 |
* github.com/beorn7/perks/histogram: a Go implementation of BigML's histogram
|
|
25 |
package for Clojure/Java.
|
|
26 |
* github.com/beorn7/perks/quantile: computes approximate quantiles over an
|
|
27 |
unbounded data stream within low memory and CPU bounds.
|
0 | 0 |
#!/usr/bin/make -f
|
1 | 1 |
|
2 | |
export DH_GOLANG_INSTALL_ALL := 1
|
|
2 |
export DH_GOLANG_INSTALL_EXTRA := quantile/exampledata.txt
|
3 | 3 |
|
4 | 4 |
%:
|
5 | 5 |
dh $@ --buildsystem=golang --with=golang
|