Update to 6.5.6. From the changelog:
* Fix IDLE mode regression (it didn't worked) introduced after v6.5.5 (pointy hat goes to Eygene Ryabinkin, kudos -- to Tomasz Żok) * Add knob to invoke folderfilter dynamically on each sync (GitHub#73) * Add knob to apply compression to IMAP connections (Abdó Roig-Maranges) * Add knob to filter some headers before uploading message to IMAP server (Abdó Roig-Maranges) * Allow to sync GMail labels and implement GmailMaildir repository that adds mechanics to change message labels (Abdó Roig-Maranges) * Allow to migrate status data across differend backends (Abdó Roig-Maranges) * Support XDG Base Directory Specification (if $XDG_CONFIG_HOME/offlineimap/config exists, use it as the default configuration path; ~/.offlineimaprc is still tried after XDG location) (GitHub#32) * Allow multiple certificate fingerprints to be specified inside 'cert_fingerprint'
This commit is contained in:
parent
4d1b0066db
commit
ecc1fd1b4f
4 changed files with 30 additions and 8 deletions
|
@ -1,8 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.26 2014/05/09 07:37:10 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.27 2014/05/30 15:28:06 schmonz Exp $
|
||||
|
||||
|
||||
DISTNAME= offlineimap-6.5.5
|
||||
DISTFILES= v6.5.5.tar.gz
|
||||
DISTNAME= offlineimap-6.5.6
|
||||
DISTFILES= v6.5.6.tar.gz
|
||||
CATEGORIES= mail
|
||||
MASTER_SITES= https://github.com/OfflineIMAP/offlineimap/archive/
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.6 2014/04/23 16:11:31 schmonz Exp $
|
||||
@comment $NetBSD: PLIST,v 1.7 2014/05/30 15:28:06 schmonz Exp $
|
||||
bin/offlineimap
|
||||
${PYSITELIB}/${EGG_FILE}
|
||||
${PYSITELIB}/offlineimap/CustomConfig.py
|
||||
|
@ -22,6 +22,9 @@ ${PYSITELIB}/offlineimap/folder/Base.pyo
|
|||
${PYSITELIB}/offlineimap/folder/Gmail.py
|
||||
${PYSITELIB}/offlineimap/folder/Gmail.pyc
|
||||
${PYSITELIB}/offlineimap/folder/Gmail.pyo
|
||||
${PYSITELIB}/offlineimap/folder/GmailMaildir.py
|
||||
${PYSITELIB}/offlineimap/folder/GmailMaildir.pyc
|
||||
${PYSITELIB}/offlineimap/folder/GmailMaildir.pyo
|
||||
${PYSITELIB}/offlineimap/folder/IMAP.py
|
||||
${PYSITELIB}/offlineimap/folder/IMAP.pyc
|
||||
${PYSITELIB}/offlineimap/folder/IMAP.pyo
|
||||
|
@ -70,6 +73,9 @@ ${PYSITELIB}/offlineimap/repository/Base.pyo
|
|||
${PYSITELIB}/offlineimap/repository/Gmail.py
|
||||
${PYSITELIB}/offlineimap/repository/Gmail.pyc
|
||||
${PYSITELIB}/offlineimap/repository/Gmail.pyo
|
||||
${PYSITELIB}/offlineimap/repository/GmailMaildir.py
|
||||
${PYSITELIB}/offlineimap/repository/GmailMaildir.pyc
|
||||
${PYSITELIB}/offlineimap/repository/GmailMaildir.pyo
|
||||
${PYSITELIB}/offlineimap/repository/IMAP.py
|
||||
${PYSITELIB}/offlineimap/repository/IMAP.pyc
|
||||
${PYSITELIB}/offlineimap/repository/IMAP.pyo
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.6 2014/04/23 16:11:31 schmonz Exp $
|
||||
$NetBSD: distinfo,v 1.7 2014/05/30 15:28:06 schmonz Exp $
|
||||
|
||||
SHA1 (v6.5.5.tar.gz) = 8cf4b1dfe98f14d51d8e331dd7393accc9320ac7
|
||||
RMD160 (v6.5.5.tar.gz) = 56408076074d8a38d8edbfd8fe4995d6ccbb30fe
|
||||
Size (v6.5.5.tar.gz) = 175348 bytes
|
||||
SHA1 (v6.5.6.tar.gz) = cced67060be2922ca3ce056839b2aa1fe6b776a1
|
||||
RMD160 (v6.5.6.tar.gz) = 1957addafe7e3362b232457cc59a178ca770d400
|
||||
Size (v6.5.6.tar.gz) = 187803 bytes
|
||||
SHA1 (patch-offlineimap_____init____.py) = 417defa34b36f61fae7db467c9c949fa595a908a
|
||||
|
|
15
mail/offlineimap/patches/patch-offlineimap_____init____.py
Normal file
15
mail/offlineimap/patches/patch-offlineimap_____init____.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
$NetBSD: patch-offlineimap_____init____.py,v 1.1 2014/05/30 15:28:06 schmonz Exp $
|
||||
|
||||
Bump version (missed by upstream).
|
||||
|
||||
--- offlineimap/__init__.py.orig 2014-05-23 17:50:46.000000000 +0000
|
||||
+++ offlineimap/__init__.py
|
||||
@@ -1,7 +1,7 @@
|
||||
__all__ = ['OfflineImap']
|
||||
|
||||
__productname__ = 'OfflineIMAP'
|
||||
-__version__ = "6.5.5"
|
||||
+__version__ = "6.5.6"
|
||||
__copyright__ = "Copyright 2002-2013 John Goerzen & contributors"
|
||||
__author__ = "John Goerzen"
|
||||
__author_email__= "john@complete.org"
|
Loading…
Reference in a new issue