From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 19 16:30:10 2005 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 382B116A4E5 for ; Thu, 19 May 2005 16:30:10 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E58243DA5 for ; Thu, 19 May 2005 16:30:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j4JGU5nu038888 for ; Thu, 19 May 2005 16:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4JGU5E6038881; Thu, 19 May 2005 16:30:05 GMT (envelope-from gnats) Resent-Date: Thu, 19 May 2005 16:30:05 GMT Resent-Message-Id: <200505191630.j4JGU5E6038881@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Linh Pham Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6300516A4CE for ; Thu, 19 May 2005 16:21:47 +0000 (GMT) Received: from q.closedsrc.org (ip233.gte244.dsl-acs2.sea.iinet.com [209.20.244.233]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E17A43DAE for ; Thu, 19 May 2005 16:21:47 +0000 (GMT) (envelope-from question@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1001) id B116245042; Thu, 19 May 2005 09:21:43 -0700 (PDT) Message-Id: <20050519162143.B116245042@q.closedsrc.org> Date: Thu, 19 May 2005 09:21:43 -0700 (PDT) From: Linh Pham To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/81269: Update port: mail/getmail to 4.3.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Linh Pham List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 May 2005 16:30:10 -0000 >Number: 81269 >Category: ports >Synopsis: Update port: mail/getmail to 4.3.10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu May 19 16:30:05 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Linh Pham >Release: FreeBSD 5.4-RELEASE i386 >Organization: >Environment: System: FreeBSD q.internal.closedsrc.org 5.4-RELEASE FreeBSD 5.4-RELEASE #12: Wed May 11 07:34:21 PDT 2005 root@q.internal.closedsrc.org:/usr/obj/usr/src/sys/Q i386 >Description: Update mail/getmail to 4.3.10, author of package added the missing import of email.Parser into getmailcore/messages.py. I have updated the two patch files to remove the, now unecessary, imports. >How-To-Repeat: >Fix: --- getmail-4.3.10.diff begins here --- diff -ruN /usr/ports/mail/getmail/Makefile getmail/Makefile --- /usr/ports/mail/getmail/Makefile Thu May 19 08:37:35 2005 +++ getmail/Makefile Thu May 19 08:40:02 2005 @@ -6,7 +6,7 @@ # PORTNAME= getmail -PORTVERSION= 4.3.9 +PORTVERSION= 4.3.10 CATEGORIES= mail python MASTER_SITES= http://pyropus.ca/software/getmail/%SUBDIR%/ MASTER_SITE_SUBDIR= old-versions diff -ruN /usr/ports/mail/getmail/distinfo getmail/distinfo --- /usr/ports/mail/getmail/distinfo Thu May 19 08:37:35 2005 +++ getmail/distinfo Thu May 19 08:41:06 2005 @@ -1,2 +1,2 @@ -MD5 (getmail-4.3.9.tar.gz) = 3689bbe74d116a53a6ae0d66a31cbdf5 -SIZE (getmail-4.3.9.tar.gz) = 134255 +MD5 (getmail-4.3.10.tar.gz) = 98341b70159335e32eeb41d6cbd61e54 +SIZE (getmail-4.3.10.tar.gz) = 133819 diff -ruN /usr/ports/mail/getmail/files/patch-message.py getmail/files/patch-message.py --- /usr/ports/mail/getmail/files/patch-message.py Thu May 19 08:37:35 2005 +++ getmail/files/patch-message.py Thu May 19 09:05:10 2005 @@ -1,13 +1,5 @@ --- getmailcore/message.py.orig Wed May 18 09:28:26 2005 +++ getmailcore/message.py Wed May 18 10:41:19 2005 -@@ -12,6 +12,7 @@ - import cStringIO - import email - import email.Errors -+import email.Parser - import email.Utils - from email.Generator import Generator - @@ -79,7 +80,7 @@ self.received_from = None self.received_with = None diff -ruN /usr/ports/mail/getmail/files/patch-retrieverbases.py getmail/files/patch-retrieverbases.py --- /usr/ports/mail/getmail/files/patch-retrieverbases.py Thu May 19 08:37:35 2005 +++ getmail/files/patch-retrieverbases.py Thu May 19 09:10:14 2005 @@ -1,13 +1,5 @@ --- getmailcore/_retrieverbases.py.orig Wed May 18 09:31:20 2005 +++ getmailcore/_retrieverbases.py Wed May 18 10:41:09 2005 -@@ -38,6 +38,7 @@ - import time - import getpass - import email -+import email.Parser - import poplib - import imaplib - import sets @@ -445,7 +446,7 @@ self.log.trace() msgnum = self._getmsgnumbyid(msgid) --- getmail-4.3.10.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: