--- dnswalk-2.0.2.dfsg.1.orig/dnswalk +++ dnswalk-2.0.2.dfsg.1/dnswalk @@ -1,4 +1,4 @@ -#!/usr/contrib/bin/perl +#!/usr/bin/perl # # dnswalk Walk through a DNS tree, pulling out zone data and # dumping it in a directory tree --- dnswalk-2.0.2.dfsg.1.orig/debian/dirs +++ dnswalk-2.0.2.dfsg.1/debian/dirs @@ -0,0 +1 @@ +usr/bin --- dnswalk-2.0.2.dfsg.1.orig/debian/docs +++ dnswalk-2.0.2.dfsg.1/debian/docs @@ -0,0 +1,4 @@ +README +TODO +debian/rfc1912-readme.txt +dnswalk.errors --- dnswalk-2.0.2.dfsg.1.orig/debian/control +++ dnswalk-2.0.2.dfsg.1/debian/control @@ -0,0 +1,14 @@ +Source: dnswalk +Section: net +Priority: extra +Maintainer: Florian Hinzmann +Standards-Version: 3.6.0 +Build-Depends-Indep: debhelper (>= 3.0.18) + +Package: dnswalk +Architecture: all +Depends: ${perl:Depends}, libnet-dns-perl +Description: Checks dns zone information using nameserver lookups + dnswalk is a DNS debugger. It performs zone transfers of specified + domains, and checks the database in numerous ways for internal + consistency, as well as accuracy. --- dnswalk-2.0.2.dfsg.1.orig/debian/rules +++ dnswalk-2.0.2.dfsg.1/debian/rules @@ -0,0 +1,97 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This is the debhelper compatability version to use. +export DH_COMPAT=3 + +install_program= install -p -o root -g root -m 755 + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + #$(MAKE) + #/usr/bin/docbook-to-man debian/dlint.sgml > dlint.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + #-$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tmp. + #$(MAKE) install DESTDIR=`pwd`/debian/tmp + $(install_program) dnswalk debian/dnswalk/usr/bin/ + + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installemacsen +# dh_installpam +# dh_installinit + dh_installcron + dh_installman dnswalk.1 + dh_installinfo +# dh_undocumented + dh_installchangelogs CHANGES + dh_link + dh_strip + dh_compress + dh_fixperms + # You may want to make some executables suid here. +# dh_suidregister +# dh_makeshlibs + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + + +# Build architecture-dependent files here. +binary-arch: build install + +binary: binary-indep binary-arch + +VERSION=2.0.2 + +get-orig-source: + wget http://downloads.sourceforge.net/dnswalk/dnswalk-$(VERSION).tar.gz + mkdir dnswalk-$(VERSION) + cd dnswalk-$(VERSION) && tar zxf ../dnswalk-$(VERSION).tar.gz && rm -f rfc1912.txt + tar zcf dnswalk-$(VERSION).dfsg.1.tar.gz dnswalk-$(VERSION) + rm -rf dnswalk-$(VERSION) dnswalk-$(VERSION).tar.gz + +.PHONY: build clean binary-indep binary-arch binary install get-orig-source --- dnswalk-2.0.2.dfsg.1.orig/debian/changelog +++ dnswalk-2.0.2.dfsg.1/debian/changelog @@ -0,0 +1,62 @@ +dnswalk (2.0.2.dfsg.1-0.1) unstable; urgency=low + + * Non-maintainer upload. + * Remove non-free RFC from the source package (Closes: #393366) + * Add get-orig-source target to recreate the new orig.tar.gz + + -- Paul Wise Sat, 24 Nov 2007 18:49:56 +0930 + +dnswalk (2.0.2-8) unstable; urgency=low + + * Removed rfc which was distributed with dnswalk + (closes: bug#199804). + + -- Florian Hinzmann Thu, 17 Jul 2003 18:12:30 +0200 + +dnswalk (2.0.2-7) unstable; urgency=low + + * Added versioned Build-Depends for debhelper according + to perl policy version 1.17. + + -- Florian Hinzmann Fri, 23 Feb 2001 12:32:31 +0100 + +dnswalk (2.0.2-6) unstable; urgency=low + + * Moved Build-Depends from package to source section of control file. + + -- Florian Hinzmann Tue, 19 Sep 2000 17:27:28 +0200 + +dnswalk (2.0.2-5) unstable; urgency=low + + * (Re-)added libnet-dns-perl dependancy (closes bug #71869). + + -- Florian Hinzmann Sun, 17 Sep 2000 20:42:22 +0200 + +dnswalk (2.0.2-4) unstable; urgency=low + + * Some cosmetic cleanups. + + -- Florian Hinzmann Sun, 6 Aug 2000 14:36:07 +0200 + +dnswalk (2.0.2-3) frozen unstable; urgency=low + + * Changed package priority to extra as it depends on libnet-dns-perl + wich has priority extra. No other changes. + + -- Florian Hinzmann Mon, 3 Jan 2000 14:44:55 +0100 + +dnswalk (2.0.2-2) unstable; urgency=low + + * Well .. dnswalk script itself is now included (closes #48007). + + -- Florian Hinzmann Mon, 3 Jan 2000 14:43:27 +0100 + +dnswalk (2.0.2-1) unstable; urgency=low + + * Initial Release. + + -- Florian Hinzmann Wed, 20 Oct 1999 13:18:26 +0200 + +Local variables: +mode: debian-changelog +End: --- dnswalk-2.0.2.dfsg.1.orig/debian/rfc1912-readme.txt +++ dnswalk-2.0.2.dfsg.1/debian/rfc1912-readme.txt @@ -0,0 +1,13 @@ + +Upstream package of dnswalk distributes rfc1912.txt alongside +the program for convenient viewing. +As one might read the licence of the RFCs to not be DFSG +compliant I removed that RFC from the Debian package. +See Bug #199804 for details ( http://bugs.debian.org/199804 ). + +You may find the RFC inside the Debian RFC packages which +reside in non-free currently ( use apt-search rfc ) +or use some internet search engine to find an online copy. + +Florian Hinzmann , 17.7.2003 + --- dnswalk-2.0.2.dfsg.1.orig/debian/README.Debian +++ dnswalk-2.0.2.dfsg.1/debian/README.Debian @@ -0,0 +1,22 @@ +dnswalk for Debian +---------------------- + +dnswalk is a DNS debugger. It performs zone transfers of specified +domains, and checks the database in numerous ways for internal +consistency, as well as accuracy. + + +You may use dnswalk by itself or take a look +at the examples do-dnswalks, makereports and +sendreports in /usr/share/doc/dnswalk/examples. + +For more information see /usr/share/doc/dnswalk/README.gz + + +--------------------------------------------------------------- +NOTE: +Upstream author has not been active for years. But he registered +dnswalk at Sourceforge to make cooperative working easy. +IMHO he would be glad if someone would take over the package. + + Florian Hinzmann , 17.10.2003 --- dnswalk-2.0.2.dfsg.1.orig/debian/copyright +++ dnswalk-2.0.2.dfsg.1/debian/copyright @@ -0,0 +1,27 @@ +This package was debianized by Florian Hinzmann on +Wed, 20 Oct 1999 13:18:26 +0200. + + +Actual homepage is: http://www.visi.com/~barr/dnswalk/ +Moreover it has been registered at Sourceforge: +http://sourceforge.net/projects/dnswalk/ + + +Upstream Author: + David Barr + Lead System Administrator + The Ohio State University, Department of Computer and Information Science + +Thanks: + Bill Fenner - tips with perl + Michael Fuhr - for writing Net::DNS! + Dave Crocker - for providing the spark necessary for me to pick up + development of dnswalk-2.0 again. + + +Copyright: + +This program may be freely distributed, as long as this notice +and documentation are distributed with the program. This program is +released as-is, with no warranty expressed or implied. Some assembly +required, contents may settle during shipment. --- dnswalk-2.0.2.dfsg.1.orig/debian/examples +++ dnswalk-2.0.2.dfsg.1/debian/examples @@ -0,0 +1,3 @@ +do-dnswalk +makereports +sendreports --- dnswalk-2.0.2.dfsg.1.orig/makereports +++ dnswalk-2.0.2.dfsg.1/makereports @@ -1,4 +1,4 @@ -#!/usr/contrib/bin/perl +#!/usr/bin/perl # This takes output from dnswalk and makes a "rep.orts" directory # with one file per contact. Great for sending mail to all the admins.