mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-04 23:20:34 +00:00
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:
parent
4e6ae8e953
commit
d5bcd407cb
9 changed files with 10 additions and 8 deletions
|
|
@ -16,3 +16,4 @@ locale
|
|||
share
|
||||
Packages.gz
|
||||
*.prof
|
||||
linkchecker-md5sums.txt
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -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
1
TODO
|
|
@ -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
4
debian/control
vendored
|
|
@ -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:
|
||||
|
|
|
|||
2
debian/linkchecker.postinst
vendored
2
debian/linkchecker.postinst
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
debian/linkchecker.prerm
vendored
2
debian/linkchecker.prerm
vendored
|
|
@ -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
2
debian/rules
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue