Tue Feb 19 10:34:07 2008 UTC ()
Update to 4.7.8. From the changelog:

* explicitly close current IMAP mailbox when selecting a new one,
    so all servers expunge deleted mail. Thanks: Josh Triplett.

* include experimental spec file for creating RPM with rpmbuild.
    Thanks: Dag Wieers, Rob Loos, Dries Verachtert.

* convert changelog to utf-8 encoding.

* update email addresses, etc. Domain for mailing lists has changed
    to lists.pyropus.ca.

* add FAQ about memory errors on OS X. Thanks: Andres Gasson.

* drop log message level for stderr output of destination if
    ignore_stderr is set, just like for filter. Thanks: Jeremy
    Chadwick.


(schmonz)
diff -r1.74 -r1.75 pkgsrc/mail/getmail/Makefile
diff -r1.63 -r1.64 pkgsrc/mail/getmail/distinfo
diff -r1.5 -r1.6 pkgsrc/mail/getmail/patches/patch-aa

cvs diff -r1.74 -r1.75 pkgsrc/mail/getmail/Makefile (expand / switch to unified diff)

--- pkgsrc/mail/getmail/Makefile 2007/08/11 01:00:12 1.74
+++ pkgsrc/mail/getmail/Makefile 2008/02/19 10:34:07 1.75
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.74 2007/08/11 01:00:12 schmonz Exp $ 1# $NetBSD: Makefile,v 1.75 2008/02/19 10:34:07 schmonz Exp $
2 2
3DISTNAME= getmail-4.7.6 3DISTNAME= getmail-4.7.8
4CATEGORIES= mail 4CATEGORIES= mail
5MASTER_SITES= ${HOMEPAGE}old-versions/ 5MASTER_SITES= ${HOMEPAGE}old-versions/
6 6
7MAINTAINER= schmonz@NetBSD.org 7MAINTAINER= schmonz@NetBSD.org
8HOMEPAGE= http://pyropus.ca/software/getmail/ 8HOMEPAGE= http://pyropus.ca/software/getmail/
9COMMENT= Secure, flexible, reliable, easy-to-use fetchmail replacement 9COMMENT= Secure, flexible, reliable, easy-to-use fetchmail replacement
10 10
11PKG_DESTDIR_SUPPORT= user-destdir 11PKG_DESTDIR_SUPPORT= user-destdir
12 12
13PYTHON_VERSIONS_ACCEPTED?= 24 23 13PYTHON_VERSIONS_ACCEPTED?= 24 23
14PYTHON_PATCH_SCRIPTS= *.py getmailcore/*.py 14PYTHON_PATCH_SCRIPTS= *.py getmailcore/*.py
15PYDISTUTILSPKG= yes 15PYDISTUTILSPKG= yes
16 16

cvs diff -r1.63 -r1.64 pkgsrc/mail/getmail/distinfo (expand / switch to unified diff)

--- pkgsrc/mail/getmail/distinfo 2007/08/11 01:00:12 1.63
+++ pkgsrc/mail/getmail/distinfo 2008/02/19 10:34:07 1.64
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.63 2007/08/11 01:00:12 schmonz Exp $ 1$NetBSD: distinfo,v 1.64 2008/02/19 10:34:07 schmonz Exp $
2 2
3SHA1 (getmail-4.7.6.tar.gz) = 2ed147c8604fa5642efad499a06abc55612e2f03 3SHA1 (getmail-4.7.8.tar.gz) = d6674fc0aceff04097cebafb188cfab8f79c1a3a
4RMD160 (getmail-4.7.6.tar.gz) = 9bb9f1421f7cb44f02b538b4fb01621cbae29225 4RMD160 (getmail-4.7.8.tar.gz) = 4c5c69620c11227c730a8f86803f5c268bdd1fea
5Size (getmail-4.7.6.tar.gz) = 148263 bytes 5Size (getmail-4.7.8.tar.gz) = 149320 bytes
6SHA1 (patch-aa) = 8298be4812f193b45901f5c9ed23d86080be103b 6SHA1 (patch-aa) = ede8c22fb5b0908d71f0001b2bde7e03706a6506

cvs diff -r1.5 -r1.6 pkgsrc/mail/getmail/patches/Attic/patch-aa (expand / switch to unified diff)

--- pkgsrc/mail/getmail/patches/Attic/patch-aa 2005/05/01 17:29:13 1.5
+++ pkgsrc/mail/getmail/patches/Attic/patch-aa 2008/02/19 10:34:07 1.6
@@ -1,18 +1,26 @@ @@ -1,18 +1,26 @@
1$NetBSD: patch-aa,v 1.5 2005/05/01 17:29:13 schmonz Exp $ 1$NetBSD: patch-aa,v 1.6 2008/02/19 10:34:07 schmonz Exp $
2 2
3--- setup.py.orig 2005-03-14 14:17:17.000000000 -0500 3--- setup.py.orig 2007-11-23 11:26:55.000000000 -0500
4+++ setup.py 4+++ setup.py
5@@ -39,12 +39,11 @@ GETMAILDOCDIR = os.path.join( 5@@ -39,12 +39,11 @@ GETMAILDOCDIR = os.path.join(
6 datadir or prefix, 6 datadir or prefix,
7 'share', 7 'share',
8 'doc', 8 'doc',
9- 'getmail-%s' % __version__ 9- 'getmail-%s' % __version__
10+ 'getmail' 10+ 'getmail'
11 ) 11 )
12  12
13 GETMAILMANDIR = os.path.join( 13 GETMAILMANDIR = os.path.join(
14 datadir or prefix, 14 datadir or prefix,
15- 'share', 15- 'share',
16 'man', 16 'man',
17 'man1' 17 'man1'
18 ) 18 )
 19@@ -100,7 +99,6 @@ setup(
 20 data_files=[
 21 (GETMAILDOCDIR, [
 22 './README',
 23- './getmail.spec',
 24 'docs/BUGS',
 25 'docs/COPYING',
 26 'docs/CHANGELOG',