--- doscan-0.3.3.orig/debian/changelog +++ doscan-0.3.3/debian/changelog @@ -0,0 +1,77 @@ +doscan (0.3.3-1.1build1) focal; urgency=medium + + * No-change rebuild for libgcc-s1 package name change. + + -- Matthias Klose Sun, 22 Mar 2020 16:38:29 +0100 + +doscan (0.3.3-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Added a patch to fix a FTBFS with GCC >= 6. Thanks to Katsuki + Kobayashi . (Closes: #811845) + * debian/control: added a Homepage field. + * debian/dirs: comment out usr/sbin line to avoid an empty + directory creation. + + -- Joao Eriberto Mota Filho Thu, 21 Nov 2019 23:59:55 -0300 + +doscan (0.3.3-1) unstable; urgency=low + + * New upstream version + * Use autotools_dev + + -- Florian Weimer Sat, 25 Oct 2014 15:52:02 +0200 + +doscan (0.3.2-1) unstable; urgency=low + + * New upstream version + * Use current debhelper, but keep dh-autoreconf + + -- Florian Weimer Thu, 23 Oct 2014 07:34:22 +0200 + +doscan (0.3.1-3.1) unstable; urgency=low + + * Non-maintainer upload. + * Use dh-autoreconf in build to suport new architectures (Closes: #535716) + + -- Chen Baozi Fri, 06 Jun 2014 14:47:32 +0800 + +doscan (0.3.1-3) unstable; urgency=low + + * Fix building with GCC 4.3. Closes: #417158. + + -- Florian Weimer Sat, 02 Feb 2008 12:32:44 +0100 + +doscan (0.3.1-2) unstable; urgency=low + + * Fix GCC 4.0 warnings. + + -- Florian Weimer Tue, 12 Jul 2005 12:54:36 +0200 + +doscan (0.3.1-1) unstable; urgency=low + + * New upstream version + + -- Florian Weimer Wed, 11 May 2005 09:43:07 +0200 + +doscan (0.3.0-1) unstable; urgency=low + + * New upstream version. Removes encumbered protocol modules. + + -- Florian Weimer Sat, 22 Jan 2005 09:30:56 +0100 + +doscan (0.2.9-1) unstable; urgency=low + + * New upstream release + * Fix transposed letters in description. Closes: 266072. + * Do not automatically update config.guess and config.sub because it + causes problems with svn-buildpackage. + + -- Florian Weimer Mon, 30 Aug 2004 10:45:18 +0200 + +doscan (0.2.8-1) unstable; urgency=low + + * Initial Release. Closes: #222141. + + -- Florian Weimer Tue, 13 Jul 2004 14:01:30 +0200 + --- doscan-0.3.3.orig/debian/compat +++ doscan-0.3.3/debian/compat @@ -0,0 +1 @@ +7 --- doscan-0.3.3.orig/debian/control +++ doscan-0.3.3/debian/control @@ -0,0 +1,24 @@ +Source: doscan +Section: net +Priority: optional +Maintainer: Florian Weimer +Build-Depends: debhelper (>= 7.0.50), + libpcre3-dev, + dh-autoreconf, + autotools-dev, + quilt +Standards-Version: 3.6.1 +Homepage: http://www.enyo.de/fw/software/doscan/ + +Package: doscan +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: port scanner for discovering services on large networks + doscan is a tool to discover TCP services on your network. It is + designed for scanning a single ports on a large network. doscan + contacts many hosts in parallel, using standard TCP sockets provided + by the operating system. It is possible to send strings to remote + hosts, and collect the banners they return. + . + There are better tools for scanning many ports on a small set of + hosts, for example nmap. --- doscan-0.3.3.orig/debian/copyright +++ doscan-0.3.3/debian/copyright @@ -0,0 +1,24 @@ +This package was debianized by Florian Weimer , +who is also the upstream author. + +It was downloaded from . + +Copyright: + +doscan - Denial Of Service Capable Auditing of Networks +Copyright (C) 2003 Florian Weimer + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + + +A copy of the GNU General Public License, version 2, can be found in +/usr/share/common-licenses/GPL or in the COPYING file included with the +source. --- doscan-0.3.3.orig/debian/dirs +++ doscan-0.3.3/debian/dirs @@ -0,0 +1,3 @@ +usr/bin +#usr/sbin +usr/share/man/man1 --- doscan-0.3.3.orig/debian/docs +++ doscan-0.3.3/debian/docs @@ -0,0 +1,4 @@ +NEWS +README +TODO +doc/design.txt --- doscan-0.3.3.orig/debian/patches/fix-gcc6-FTBFS.patch +++ doscan-0.3.3/debian/patches/fix-gcc6-FTBFS.patch @@ -0,0 +1,17 @@ +Description: fix FTBFS bug with GCC6 (Debian Bug #811845) +Author: Katsuki Kobayashi +Origin: other +Last-Update: 2017-02-12 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- a/src/event_queue.cc ++++ b/src/event_queue.cc +@@ -158,7 +158,7 @@ + event_queue::dump() + { + if (timeouts.empty()) { +- std::cerr << "No handlers installed." << std::cerr; ++ std::cerr << "No handlers installed." << std::endl; + } else { + std::cerr << "Timeout handlers:" << std::endl; + for (timeouts_t::iterator p = timeouts.begin(); p != timeouts.end(); ++p) { --- doscan-0.3.3.orig/debian/patches/series +++ doscan-0.3.3/debian/patches/series @@ -0,0 +1 @@ +fix-gcc6-FTBFS.patch --- doscan-0.3.3.orig/debian/rules +++ doscan-0.3.3/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f +%: + dh $@ --with autoreconf,autotools_dev,quilt + --- doscan-0.3.3.orig/doscan.patch +++ doscan-0.3.3/doscan.patch @@ -0,0 +1,63 @@ +diff -u doscan-0.3.3/debian/changelog doscan-0.3.3/debian/changelog +--- doscan-0.3.3/debian/changelog ++++ doscan-0.3.3/debian/changelog +@@ -1,3 +1,10 @@ ++doscan (0.3.3-1.1) UNRELEASED; urgency=medium ++ ++ * Non-maintainer upload. ++ * Fixed this and that (closes: #811845) ++ ++ -- Katsuki Kobayashi Sun, 12 Feb 2017 01:48:13 +0900 ++ + doscan (0.3.3-1) unstable; urgency=low + + * New upstream version +diff -u doscan-0.3.3/debian/control doscan-0.3.3/debian/control +--- doscan-0.3.3/debian/control ++++ doscan-0.3.3/debian/control +@@ -5,7 +5,8 @@ + Build-Depends: debhelper (>= 7.0.50), + libpcre3-dev, + dh-autoreconf, +- autotools-dev ++ autotools-dev, ++ quilt + Standards-Version: 3.6.1 + + Package: doscan +diff -u doscan-0.3.3/debian/rules doscan-0.3.3/debian/rules +--- doscan-0.3.3/debian/rules ++++ doscan-0.3.3/debian/rules +@@ -2,3 +2,3 @@ + %: +- dh $@ --with autoreconf,autotools_dev ++ dh $@ --with autoreconf,autotools_dev,quilt + +only in patch2: +unchanged: +--- doscan-0.3.3.orig/debian/patches/fix-gcc6-FTBFS.patch ++++ doscan-0.3.3/debian/patches/fix-gcc6-FTBFS.patch +@@ -0,0 +1,17 @@ ++Description: fix FTBFS bug with GCC6 (Debian Bug #811845) ++Author: Katsuki Kobayashi ++Origin: other ++Last-Update: 2017-02-12 ++--- ++This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ ++--- a/src/event_queue.cc +++++ b/src/event_queue.cc ++@@ -158,7 +158,7 @@ ++ event_queue::dump() ++ { ++ if (timeouts.empty()) { ++- std::cerr << "No handlers installed." << std::cerr; +++ std::cerr << "No handlers installed." << std::endl; ++ } else { ++ std::cerr << "Timeout handlers:" << std::endl; ++ for (timeouts_t::iterator p = timeouts.begin(); p != timeouts.end(); ++p) { +only in patch2: +unchanged: +--- doscan-0.3.3.orig/debian/patches/series ++++ doscan-0.3.3/debian/patches/series +@@ -0,0 +1 @@ ++fix-gcc6-FTBFS.patch