diff options
| author | Arch Librarian <arch@canonical.com> | 2004-11-24 10:00:28 +0000 |
|---|---|---|
| committer | Arch Librarian <arch@canonical.com> | 2004-11-24 10:00:28 +0000 |
| commit | f85b1fd50885d98f76d2aad61d8f36b3c9c67046 (patch) | |
| tree | 695049491542ac44535b8dd5cfb753831822b6da | |
| parent | b69cd4a109e8b3fff0654a6df003b42235268355 (diff) | |
| download | python-apt-f85b1fd50885d98f76d2aad61d8f36b3c9c67046.tar.gz | |
make 1.5 packages installable on potato
Author: rmurray
Date: 2002-02-15 00:46:44 GMT
make 1.5 packages installable on potato
| -rw-r--r-- | debian/python-dep | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/debian/python-dep b/debian/python-dep index 27ca72ff..bc688ef8 100644 --- a/debian/python-dep +++ b/debian/python-dep @@ -1,3 +1,6 @@ import sys; -print "python:Depends=python (>= %s), python (<< %s)" % (sys.version[:3],float(sys.version[:3])+0.1) +if sys.version[:3] != "1.5": + print "python:Depends=python (>= %s), python (<< %s)" % (sys.version[:3],float(sys.version[:3])+0.1) +else: + print "python:Depends=python-base (>= 1.5) | python1.5" |
