Import golang-github-svent-go-nbreader_0~20150201-1.dsc
ChangZhuo Chen (陳昌倬)
9 years ago
| 0 | # see git-dpm(1) from git-dpm package | |
| 1 | 4e1bfc47109be8b16258b7e7c174f3afe3d35a25 | |
| 2 | 4e1bfc47109be8b16258b7e7c174f3afe3d35a25 | |
| 3 | 4e1bfc47109be8b16258b7e7c174f3afe3d35a25 | |
| 4 | 4e1bfc47109be8b16258b7e7c174f3afe3d35a25 | |
| 5 | golang-github-svent-go-nbreader_0~20150201.orig.tar.xz | |
| 6 | 2bb957694e91aa3d02abc0d77038822399921d43 | |
| 7 | 2704 | |
| 8 | debianTag="debian/%f%v" | |
| 9 | patchedTag="patched/%f%v" | |
| 10 | upstreamTag="upstream/%u" |
| 0 | golang-github-svent-go-nbreader (0~20150201-1) unstable; urgency=low | |
| 1 | ||
| 2 | * Initial release. Closes: #829572 | |
| 3 | ||
| 4 | -- ChangZhuo Chen (陳昌倬) <czchen@debian.org> Mon, 04 Jul 2016 18:29:23 +0800 |
| 0 | 9 |
| 0 | Source: golang-github-svent-go-nbreader | |
| 1 | Section: devel | |
| 2 | Priority: extra | |
| 3 | Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org> | |
| 4 | Uploaders: ChangZhuo Chen (陳昌倬) <czchen@debian.org> | |
| 5 | Build-Depends: debhelper (>=9), | |
| 6 | dh-golang, | |
| 7 | golang-go | |
| 8 | Standards-Version: 3.9.8 | |
| 9 | Homepage: https://github.com/svent/go-nbreader | |
| 10 | Vcs-Browser: https://anonscm.debian.org/git/pkg-go/packages/golang-github-svent-go-nbreader.git | |
| 11 | Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-svent-go-nbreader.git | |
| 12 | XBS-Go-Import-Path: github.com/svent/go-nbreader | |
| 13 | ||
| 14 | Package: golang-github-svent-go-nbreader-dev | |
| 15 | Architecture: all | |
| 16 | Multi-Arch: foreign | |
| 17 | Depends: ${misc:Depends}, | |
| 18 | ${shlibs:Depends}, | |
| 19 | Built-Using: ${misc:Built-Using} | |
| 20 | Description: non-blocking io.Reader for go | |
| 21 | go-nbreader provides a non-blocking io.Reader for go (golang). It | |
| 22 | allows one to specify two timeouts: | |
| 23 | . | |
| 24 | * Timeout: Read() returns after the specified timeout, even if no data | |
| 25 | has been read. | |
| 26 | . | |
| 27 | * ChunkTimeout: Read() returns if no data has been read for the | |
| 28 | specified time, even if the overall timeout has not been hit yet. | |
| 29 | ChunkTimeout must be smaller than Timeout. | |
| 30 | . | |
| 31 | When the internal buffer contains at least blockSize bytes, Read() | |
| 32 | returns regardless of the specified timeouts. |
| 0 | Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | |
| 1 | Upstream-Name: go-nbreader | |
| 2 | Source: https://github.com/svent/go-nbreader | |
| 3 | ||
| 4 | Files: * | |
| 5 | Copyright: Copyright (c) 2014, Sven Taute | |
| 6 | License: BSD-3-clause | |
| 7 | ||
| 8 | Files: debian/* | |
| 9 | Copyright: ChangZhuo Chen (陳昌倬) <czchen@debian.org> | |
| 10 | License: BSD-3-clause | |
| 11 | ||
| 12 | License: BSD-3-clause | |
| 13 | Redistribution and use in source and binary forms, with or without | |
| 14 | modification, are permitted provided that the following conditions | |
| 15 | are met: | |
| 16 | . | |
| 17 | 1. Redistributions of source code must retain the above copyright | |
| 18 | notice, this list of conditions and the following disclaimer. | |
| 19 | . | |
| 20 | 2. Redistributions in binary form must reproduce the above copyright | |
| 21 | notice, this list of conditions and the following disclaimer in the | |
| 22 | documentation and/or other materials provided with the distribution. | |
| 23 | . | |
| 24 | 3. Neither the name of the University nor the names of its contributors | |
| 25 | may be used to endorse or promote products derived from this software | |
| 26 | without specific prior written permission. | |
| 27 | . | |
| 28 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
| 29 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 30 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 31 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
| 32 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
| 33 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
| 34 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
| 35 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
| 36 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
| 37 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
| 38 | SUCH DAMAGE. |
| 0 | #!/usr/bin/make -f | |
| 1 | #export DH_VERBOSE = 1 | |
| 2 | ||
| 3 | export DH_GOPKG := github.com/svent/go-nbreaders | |
| 4 | ||
| 5 | %: | |
| 6 | dh $@ --buildsystem=golang --with=golang |
| 0 | 3.0 (quilt) |