bump up version, use python2.2

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@567 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2002-10-13 21:56:36 +00:00
parent 4e6ae8e953
commit d5bcd407cb
9 changed files with 10 additions and 8 deletions

View file

@ -16,3 +16,4 @@ locale
share
Packages.gz
*.prof
linkchecker-md5sums.txt

View file

@ -1,5 +1,5 @@
# This Makefile is only used by developers.
PYTHON=python2.1
PYTHON=python2.2
VERSION=$(shell $(PYTHON) setup.py --version)
PACKAGE=linkchecker
NAME=$(shell $(PYTHON) setup.py --name)

1
TODO
View file

@ -1,3 +1,4 @@
ftp_proxy support
Check why threaded app wont exit resp. is stalled
Another Profiling roundup
Named constants for ANSI Color codes

4
debian/control vendored
View file

@ -2,12 +2,12 @@ Source: linkchecker
Section: web
Priority: optional
Maintainer: Bastian Kleineidam <calvin@debian.org>
Build-Depends-Indep: python2.1-dev, debhelper (>= 3.0.0), gettext
Build-Depends-Indep: python2.2-dev, debhelper (>= 3.0.0), gettext
Standards-Version: 3.5.7.0
Package: linkchecker
Architecture: all
Depends: python2.1, python-dns
Depends: python2.2, python-dns
Conflicts: linkchecker-ssl
Description: check HTML documents for broken links
Features:

View file

@ -3,7 +3,7 @@
# Written 1998 by Gregor Hoffleit <flight@debian.org>.
# used by Bastian Kleineidam for LinkChecker
set -e
PYVER=2.1
PYVER=2.2
PYTHON=python
PYTHONXY=${PYTHON}${PYVER}
SITEPACKAGES=/usr/lib/$PYTHONXY/site-packages

View file

@ -4,7 +4,7 @@
# used by Bastian Kleineidam for LinkChecker
set -e
PACKAGE=linkchecker
PYVER=2.1
PYVER=2.2
PYTHON=python
PYTHONXY=${PYTHON}${PYVER}

2
debian/rules vendored
View file

@ -4,7 +4,7 @@
PACKAGE=linkchecker
ROOT=$(CURDIR)/debian/$(PACKAGE)
DOCDIR = $(ROOT)/usr/share/doc/$(PACKAGE)
PYTHON=python2.1
PYTHON=python2.2
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

View file

@ -1,6 +1,6 @@
# I copied the scripts in Tools/i18n of the Python 2.0 distribution
I18NTOOLS=.
PYTHON=python2.1
PYTHON=python2.2
GETTEXT=$(PYTHON) $(I18NTOOLS)/pygettext.py -k linkcheck._
MSGFMT=$(PYTHON) $(I18NTOOLS)/msgfmt.py
#MSGFMT=msgfmt

View file

@ -131,7 +131,7 @@ myname = "Bastian Kleineidam"
myemail = "calvin@users.sourceforge.net"
setup (name = "linkchecker",
version = "1.6.3",
version = "1.6.4",
description = "check HTML documents for broken links",
author = myname,
author_email = myemail,