debian/0000755000000000000000000000000012215212211007153 5ustar debian/changelog0000644000000000000000000000026212215204474011041 0ustar golang-dns (0.0~git20130912-1) unstable; urgency=low * Initial release. Closes: 722973 -- Tonnerre LOMBARD Sun, 15 Sep 2013 01:08:44 +0200 debian/compat0000644000000000000000000000000212215204474010365 0ustar 9 debian/copyright0000644000000000000000000000336012215204474011124 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: golang-dns Source: https://github.com/miekg/dns/ Files: * Copyright: 2009-2013 Miek Gieben License: BSD-3-Clause Files: debian/* Copyright: 2013 Tonnerre Lombard License: BSD-3-Clause License: BSD-3-Clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/docs0000644000000000000000000000003612215204474010041 0ustar README.markdown TODO.markdown debian/patches/0000755000000000000000000000000012215204474010616 5ustar debian/patches/series0000644000000000000000000000001312215204474012025 0ustar zscan-typo debian/patches/zscan-typo0000644000000000000000000000106012215204474012645 0ustar Description: Fix for typo in message in zscan_rr. Adress is spelled with an insufficient number of ds. Author: Tonnerre LOMBARD Forwarded: no Last-Update: 2013-09-15 --- golang-dns-0.0~git20130912.orig/zscan_rr.go +++ golang-dns-0.0~git20130912/zscan_rr.go @@ -1360,7 +1360,7 @@ func setWKS(h RR_Header, c chan lex, f s l := <-c rr.Address = net.ParseIP(l.token) if rr.Address == nil { - return nil, &ParseError{f, "bad WKS Adress", l}, "" + return nil, &ParseError{f, "bad WKS Address", l}, "" } <-c // _BLANK debian/source/0000755000000000000000000000000012215204474010467 5ustar debian/source/format0000644000000000000000000000001412215204474011675 0ustar 3.0 (quilt) debian/control0000644000000000000000000000156612215212211010566 0ustar Source: golang-dns Section: devel Priority: extra Maintainer: Tonnerre LOMBARD Build-Depends: debhelper (>= 9.0.0), dh-golang, golang-go Standards-Version: 3.9.4 Homepage: http://miek.nl/projects/godns/ Vcs-Git: git://anonscm.debian.org/pkg-go/packages/golang-dns.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-go/packages/golang-dns.git;a=summary Package: golang-dns-dev Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends}, golang-go Description: DNS protocol library for Go Complete and usable DNS library. All widely used Resource Records are supported, including the DNSSEC types. It follows a lean and mean philosophy. If there is stuff you should know as a DNS programmer there isn't a convenience function for it. Server side and client side programming is supported, i.e. you can build servers and resolvers with it. debian/rules0000755000000000000000000000074012215212211010234 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 # DH_GOPKG is the upstream path which you would normally “go get”. # Using it allows us to build applications without patching locations. export DH_GOPKG := github.com/miekg/dns # Currently, tests can't win. override_dh_auto_test: %: dh $@ --buildsystem=golang --with=golang override_dh_auto_install: dh_auto_install -O--buildsystem=golang rm -rf ${CURDIR}/debian/golang-dns-dev/usr/bin