Codebase list golang-gopkg-eapache-queue.v1 / 1841a00
Initial packaging aviau 8 years ago
7 changed file(s) with 71 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 golang-gopkg-eapache-queue.v1 (1.0.2-1) unstable; urgency=medium
1
2 * Initial release. (Closes: #XXXXXX)
3
4 -- Alexandre Viau <alexandre@alexandreviau.net> Sat, 01 Aug 2015 17:21:48 -0400
0 Source: golang-gopkg-eapache-queue.v1
1 Section: devel
2 Priority: extra
3 Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
4 Uploaders: Alexandre Viau <alexandre@alexandreviau.net>
5 Build-Depends: debhelper (>= 9),
6 dh-golang,
7 golang-go
8 Standards-Version: 3.9.6
9 Vcs-Git: git://anonscm.debian.org/pkg-go/packages/golang-gopkg-eapache-queue.v1.git
10 Vcs-Browser: http://anonscm.debian.org/cgit/pkg-go/packages/golang-gopkg-eapache-queue.v1.git
11 Homepage: https://github.com/eapache/queue
12
13 Package: golang-gopkg-eapache-queue.v1-dev
14 Architecture: all
15 Depends: ${shlibs:Depends},
16 ${misc:Depends}
17 Description: fast golang queue using ring-buffer
18 A fast Golang queue using a ring-buffer, based on the version suggested
19 by Dariusz Górecki. Using this instead of other, simpler, queue
20 implementations (slice+append or linked list) provides substantial memory
21 and time benefits, and fewer GC pauses. The queue implemented here is as
22 fast as it is in part because it is not thread-safe.
0 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: queue
2 Source: https://github.com/eapache/queue
3
4 Files: *
5 Copyright: 2014 Evan Huus <eapache@gmail.com>
6 License: Expat
7
8 Files: debian/*
9 Copyright: 2015 Alexandre Viau <alexandre@alexandreviau.net>
10 License: Expat
11
12 License: Expat
13 Permission is hereby granted, free of charge, to any person obtaining a copy
14 of this software and associated documentation files (the "Software"), to deal
15 in the Software without restriction, including without limitation the rights
16 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17 copies of the Software, and to permit persons to whom the Software is
18 furnished to do so, subject to the following conditions:
19 .
20 The above copyright notice and this permission notice shall be included in all
21 copies or substantial portions of the Software.
22 .
23 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29 SOFTWARE.
0 [DEFAULT]
1 upstream-tag = v%(version)s
0 #!/usr/bin/make -f
1 # -*- makefile -*-
2
3 TMP = $(CURDIR)/debian/$(PACKAGE)
4
5 export DH_GOPKG := gopkg.in/eapache/queue.v1
6
7 %:
8 dh $@ --buildsystem=golang --with=golang
0 3.0 (quilt)