diff --git a/ChangeLog b/ChangeLog index 658d2ae2..245389fb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +3.0 "" (released xx.xx.xxxx) + + * Displaying warnings is now the default. One can disable warnings + with the --no-warnings option. + Type: feature + Changed: linkchecker, linkcheck/configuration.py + 2.9 "Sweat" (released 22.4.2005) * Use collections.deque object for incoming URL list. This is faster diff --git a/debian/changelog b/debian/changelog index 4582670f..b5075cef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +linkchecker (3.0-1) unstable; urgency=low + + * New upstream release. + + -- Bastian Kleineidam Mon, 25 Apr 2005 17:20:46 +0200 + linkchecker (2.9-1) unstable; urgency=low * New upstream release. diff --git a/setup.py b/setup.py index ccc10d3b..d93e0cd2 100755 --- a/setup.py +++ b/setup.py @@ -19,9 +19,11 @@ import sys if not hasattr(sys, "version_info"): - raise SystemExit, "This program requires Python 2.4.0 or later." + raise SystemExit, "The installation script of this program requires" + \ + " Python 2.4.0 or later." if sys.version_info < (2, 4, 0, 'final', 0): - raise SystemExit, "This program requires Python 2.4.0 or later." + raise SystemExit, "The installation script of this program requires" + \ + " Python 2.4.0 or later." import os import platform import stat @@ -102,25 +104,6 @@ class MyInstall (install, object): outs.append(self.distribution.get_conf_filename(self.install_lib)) return outs - # compatibility bugfix for Python << 2.5, << 2.4.1, << 2.3.5 - # remove this method when depending on one of the above versions - def dump_dirs (self, msg): - if DEBUG: - from distutils.fancy_getopt import longopt_xlate - print msg + ":" - for opt in self.user_options: - opt_name = opt[0] - if opt_name[-1] == "=": - opt_name = opt_name[0:-1] - if self.negative_opt.has_key(opt_name): - opt_name = string.translate(self.negative_opt[opt_name], - longopt_xlate) - val = not getattr(self, opt_name) - else: - opt_name = string.translate(opt_name, longopt_xlate) - val = getattr(self, opt_name) - print " %s: %s" % (opt_name, val) - class MyInstallData (install_data, object): """ @@ -459,7 +442,7 @@ elif win_compiling: ])) setup (name = "linkchecker", - version = "2.9", + version = "3.0", description = "check websites and HTML documents for broken links", keywords = "link,url,checking,verification", author = myname,