pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mail/offlineimap



Module Name:    pkgsrc
Committed By:   wiz
Date:           Wed Aug 14 17:25:21 UTC 2024

Modified Files:
        pkgsrc/mail/offlineimap: Makefile

Log Message:
mail/offlineimap: Add dependency on net/py-rfc6555

>From J. Lewis Muir via wip.

OfflineIMAP requires the rfc6555 module, but the package is missing the
dependency declaration.  Without rfc6555, OfflineIMAP builds but does
not run; it fails with a stack trace that ends like this:

  File "[...]/offlineimap/imaplibutil.py", line 22, in <module>
      import rfc6555
      ImportError: No module named rfc6555


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 pkgsrc/mail/offlineimap/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mail/offlineimap/Makefile
diff -u pkgsrc/mail/offlineimap/Makefile:1.41 pkgsrc/mail/offlineimap/Makefile:1.42
--- pkgsrc/mail/offlineimap/Makefile:1.41       Mon Oct 23 06:37:48 2023
+++ pkgsrc/mail/offlineimap/Makefile    Wed Aug 14 17:25:21 2024
@@ -1,23 +1,23 @@
-# $NetBSD: Makefile,v 1.41 2023/10/23 06:37:48 wiz Exp $
+# $NetBSD: Makefile,v 1.42 2024/08/14 17:25:21 wiz Exp $
 
 DISTNAME=      offlineimap-7.3.4
-PKGREVISION=   4
+PKGREVISION=   5
 CATEGORIES=    mail
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=OfflineIMAP/}
+GITHUB_TAG=    v${PKGVERSION_NOREV}
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 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}-rfc6555-[0-9]*:../../net/py-rfc6555
 DEPENDS+=      ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
 
 INSTALLATION_DIRS=     share/examples/offlineimap
 
+PYTHON_VERSIONS_ACCEPTED=      27 # not yet ported
+
 EGG_NAME=      ${PKGNAME_NOREV}
 
 post-install:



Home | Main Index | Thread Index | Old Index