/offlineimap/head: changeset 576

Moved to Python2.3 and bumped version number
This commit is contained in:
jgoerzen 2004-06-04 21:13:11 +01:00
parent c51c5c6596
commit c8001aa5cf
7 changed files with 22 additions and 14 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python2.2
#!/usr/bin/env python2.3
# Startup from system-wide installation
# Copyright (C) 2002, 2003 John Goerzen
# <jgoerzen@complete.org>
@ -18,4 +18,4 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from offlineimap import init
init.startup('4.0.0')
init.startup('4.0.3')

View File

@ -1,3 +1,11 @@
offlineimap (4.0.3) unstable; urgency=low
* Fixed version numbers to read 4.0.3.
* Switched defaults from Python 2.2 to Python 2.3.
Closes: #237560.
-- John Goerzen <jgoerzen@complete.org> Fri, 4 Jun 2004 10:10:00 -0500
offlineimap (4.0.2) unstable; urgency=low
* Fixed missing definition of _display in Noninteractive.

View File

@ -2,13 +2,13 @@ Source: offlineimap
Section: mail
Priority: optional
Maintainer: John Goerzen <jgoerzen@complete.org>
Build-Depends-Indep: debhelper (>> 3.0.0), python2.2 (>= 2.2.2), python2.2-dev (>= 2.2.2), groff, docbook-utils
Build-Depends-Indep: debhelper (>> 3.0.0), python2.3, python2.3-dev (>= 2.2.2), groff, docbook-utils
Standards-Version: 3.5.2
Package: offlineimap
Architecture: all
Depends: python2.2
Suggests: python2.2-tk
Depends: python2.3
Suggests: python2.3-tk
Description: IMAP/Maildir synchronization and reader support
OfflineIMAP is a tool to simplify your e-mail reading. With
OfflimeIMAP, you can:

View File

@ -9,7 +9,7 @@
# This is the debhelper compatibility version to use.
export DH_COMPAT=3
PYTHON=python2.2
PYTHON=python2.3
PACKAGE=offlineimap

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python2.2
#!/usr/bin/env python2.3
# Startup from single-user installation
# Copyright (C) 2002, 2003 John Goerzen
# Copyright (C) 2002, 2003, 2004 John Goerzen
# <jgoerzen@complete.org>
#
# This program is free software; you can redistribute it and/or modify
@ -18,4 +18,4 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from offlineimap import init
init.startup('4.0.0')
init.startup('4.0.3')

View File

@ -1,14 +1,14 @@
productname = 'OfflineIMAP'
versionstr = "4.0.0"
revno = long('$Rev: 511 $'[6:-2])
versionstr = "4.0.3"
revno = long('$Rev: 576 $'[6:-2])
revstr = "Rev %d" % revno
datestr = '$Date: 2003-07-18 13:56:15 -0500 (Fri, 18 Jul 2003) $'
datestr = '$Date: 2004-06-04 10:13:11 -0500 (Fri, 04 Jun 2004) $'
versionlist = versionstr.split(".")
major = versionlist[0]
minor = versionlist[1]
patch = versionlist[2]
copyright = "Copyright (C) 2002, 2003 John Goerzen"
copyright = "Copyright (C) 2002 - 2004 John Goerzen"
author = "John Goerzen"
author_email = "jgoerzen@complete.org"
description = "Disconnected Universal IMAP Mail Synchronization/Reader Support"

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python2.2
#!/usr/bin/env python2.3
# $Id: setup.py,v 1.1 2002/06/21 18:10:49 jgoerzen Exp $