v7.3.4 (2021-08-03) Fixes - folder: IMAP: fix issue when the response of searchforheaders is the same UID multiple times. [Nicolas Sebrecht] - Fix hooks for IDLE sync. [Reto Schnyder] - Changed wrong comparison equal. [Rodolfo García Peñas (kix)] - Comparison error. [Rodolfo García Peñas (kix)] - remove outdated links to travis. [Nicolas Sebrecht] - ui init is lintian clean. [Rodolfo García Peñas (kix)] - Require the minimal dependencies in python package. [Martin Di Paola] Changes - README: update regarding the offlineimap3 fork. [Nicolas Sebrecht] - redirect the users to offlineimap3. [Nicolas Sebrecht] - threadutil imports not used. [Rodolfo García Peñas (kix)] - Move out pkg attributes from __init__.py. [Martin Di Paola] v7.3.3 (2020-04-11) Features - export env. variables when running account hooks. [Frank LENORMAND] Fixes - Fix stale gss api authentication security context. [Herton R. Krzesinski] - Handle [ALREADYEXISTS] and Mailbox already exists!. [Chris Coleman] Changes - exec() the tunnel command. [martin f. krafft] v7.3.2 (2019-12-17) Fixes - Revert "fix check for unsupported sep character". [Nicolas Sebrecht] - Fixing the Arch Linux name. [Jaroslav Lichtblau] v7.3.1 (2019-12-15) Features - Additional address for sysloghandler to handle mac. [Chris Coutinho] - Added financial contributors to the README. [Jess] - Introduce FUNDING.yml for opencollective. [Nicolas Sebrecht] Fixes - Fix check for unsupported sep character. [Nicolas Sebrecht] - Contrib: use yaml.safe_load() instead of load(). [Nicolas Sebrecht] - Ensure python2 in the release workflow. [Nicolas Sebrecht] - Make docs: ensure py2 when running sphinx. [Nicolas Sebrecht] Changes - Update README.md. [Chris Coleman] v7.3.0 (2019-08-19) Features - Implement Happy Eyeballs. [Olivier Mehani] - imaplib2 v2.101. [Nicolas Sebrecht] - imaplib2 v2.100. [Nicolas Sebrecht] Changes - Update readme to give an hint about Linux distros. [Dario Maiocchi] - travis: remove python3.6. [Nicolas Sebrecht] - README: add required dependency to rfc6555. [Nicolas Sebrecht] imaplib2 - Do not use TIMEOUT_MAX for Condition.wait(). [Ilias Tsitsimpis] - Use SSLContext if available so we send SNI. [Julien Cristau] - Don't expect trailing space on command completion. [Ben Cotterell] v7.2.4 (2019-06-08) Features - mkdir -p alike folder creation. [Kyle Altendorf] Fixes - Use portable locker to support cygwin in Windows. [kimim] - contrib/release.py: don't break if sphinx-build is missing. [Nicolas Sebrecht] Changes - Update FSF postal address. [Jelmer Vernooij] - repository/IMAP: update copyright header date. [Nicolas Sebrecht] - PULL_REQUEST_TEMPLATE: add space between brackets to enable the edition in the gui. [Nicolas Sebrecht]
33 lines
1,008 B
Makefile
33 lines
1,008 B
Makefile
# $NetBSD: Makefile,v 1.37 2021/10/19 21:23:31 tm Exp $
|
|
|
|
|
|
DISTNAME= offlineimap-7.3.4
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=OfflineIMAP/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://offlineimap.org/
|
|
COMMENT= Powerful IMAP/Maildir synchronization and reader support
|
|
LICENSE= gnu-gpl-v2 # or later
|
|
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 27 # not yet ported
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-curses-[0-9]*:../../devel/py-curses
|
|
DEPENDS+= ${PYPKGPREFIX}-cursespanel-[0-9]*:../../devel/py-cursespanel
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
|
|
DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
|
|
|
|
INSTALLATION_DIRS= share/examples/offlineimap
|
|
|
|
EGG_NAME= ${PKGNAME_NOREV}
|
|
|
|
post-install:
|
|
.for f in offlineimap.conf offlineimap.conf.minimal
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DESTDIR}${PREFIX}/share/examples/offlineimap/${f}
|
|
.endfor
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|