mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-22 00:40:30 +00:00
bump up version
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@2530 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
006f79702e
commit
623e4ccaa6
3 changed files with 18 additions and 22 deletions
|
|
@ -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
|
||||
|
|
|
|||
6
debian/changelog
vendored
6
debian/changelog
vendored
|
|
@ -1,3 +1,9 @@
|
|||
linkchecker (3.0-1) unstable; urgency=low
|
||||
|
||||
* New upstream release.
|
||||
|
||||
-- Bastian Kleineidam <calvin@debian.org> Mon, 25 Apr 2005 17:20:46 +0200
|
||||
|
||||
linkchecker (2.9-1) unstable; urgency=low
|
||||
|
||||
* New upstream release.
|
||||
|
|
|
|||
27
setup.py
27
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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue