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