]> code.delx.au - offlineimap/commitdiff
/offlineimap/head: changeset 576
authorjgoerzen <jgoerzen>
Fri, 4 Jun 2004 20:13:11 +0000 (21:13 +0100)
committerjgoerzen <jgoerzen>
Fri, 4 Jun 2004 20:13:11 +0000 (21:13 +0100)
Moved to Python2.3 and bumped version number

offlineimap/head/bin/offlineimap
offlineimap/head/debian/changelog
offlineimap/head/debian/control
offlineimap/head/debian/rules
offlineimap/head/offlineimap.py
offlineimap/head/offlineimap/version.py
offlineimap/head/setup.py

index 361db4dff91bbfbde0facfcdd502c7dd96b01706..d4c024d0171704bbb4b0028151ded12b6a6b4a9e 100644 (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')
index a26d864ef0babfc5032f4769dba89d12a52c5048..57afa5679836a20e36ca2a9bbfe7c3ebfa1a9e51 100644 (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.
index 33f8da72c20c34c81850405cb231946afeda3943..66c52ba7b8575b38e47f4d4df38054d5558a0613 100644 (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:
index 9f173c8e095c21db47891d0af06ce90233484c14..02961d8e08d6bfc0a51f79616d04f82f49addc6d 100644 (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
 
 
index 854304dbf2c28334e667a4008d7ec32fc13d325e..7974082e6783cd3512dfdf8ee9e123ba0ca59790 100644 (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')
index a4310c2852348dcfb57375d3f24ea87d2fced57a..bd2293c0f3013400b25ae42129ff36d3c40dd994 100644 (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"
index 9f734ab6342c3ff9f38105c613f4564ae1e767d4..6662ef2656da0a742114fd59f4e582734bf5a979 100644 (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 $