pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/mail/Pantomime Update Pantomime to 1.1.2. Noteable ch...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/3c03104ec4b4
branches:  trunk
changeset: 472455:3c03104ec4b4
user:      rh <rh%pkgsrc.org@localhost>
date:      Sat Apr 10 23:52:37 2004 +0000

description:
Update Pantomime to 1.1.2.  Noteable changes are:

        * Added an improvement in the IMAP parsing code (_parseFetch:)
          so it works better with lame servers like Exchange.
        * Added Folder: -setFlags: messages: and implemented a
          version in IMAPFolder to optimize deletion of messages.
          Modified IMAPMessage: -setFlags: to use that new method.
        * We now correctly decode/encode the Organization header
          using quoted-printable.
        * Removed Testing/*. The tests were old and broken and
          the small test framework should be replaced by a real
          framework, like OCUnit.
        * Added some notes (in the README) to properly compile and
          install Pantomime on RedHat 9 / Fedora.
        * Permuted the RETAIN/RELEASE calls in Message: -setFlags:.
          Bug reported by Alexandre Carlhian <alex%mosx.net@localhost>.
        * Fixed a bug in Parser: +_parameterValueUsingLine: range:.
        * Finally commited a fix for the reply bork when a attachment
          is put between to text/plain parts in a multipart/mixed
          message (only the first part was used in the reply).
        * Modified MimeUtility to add support on OS X for
          Hebrew, Arabic, BalticRim and Vietnamese encodings
          using the CoreFoundation.
        * Fixed a small issue in POP3Folder: -lengthOfMessageAtIndex:
          Bug reported by Alexandre Carlhian <alex%mosx.net@localhost>.
        * Modified NSData+Extensions: -dataFromQuotedData to be sure
          that our initial data length has length of at least 2 (since
          if we had only '"' we would get an range exception).
        * Modified MimeUtility: -stringEncodingForPart: so that
          if we get _at best_ NSASCIIStringEncoding from the
          part, we use NSISOLatin1StringEncoding instead in order
          to give us more success when decoding things.
        * Added POP3Folder: -prefetchMessageAtIndex: numberOfLines: and
          added a small cache for the message sizes.
        * Renamed -authenticateWithUsername: ... to
          -authenticate: password: mechanism: and implemented in
          the SMTP, POP3Store and IMAPStore classes.
        * Added -supportedMechanisms to the Service protocol and
          implemented in all the classes above.
        * Removed POP3Store: -setUseAPOP: / -useAPOP and -setTimestamp:
        * Added LOGIN and CRAM-MD5 SASL authentication mechanisms support
          in the IMAP code.
        * Added -DBIG_ENDIAN to the list of compiler flags on OS X so that
          the CRAM-MD5 code works.
        * Updated the OS X project to set the version number to 1.1.2.
        * Moved -isConnected from Connection to Store. Implemented
          in IMAPStore and provided a dumb implementations for LocalStore
          and POP3Store. Refactored all the code to use the Store's method
          instead of the TCPConnection's implementation. Much of the code
          in GNUMail will have to be retested wrt the handling of being
          disconnected from the IMAP server.
        * Added a hack so things work well with header prefetching when we
          are using a Novell IMAP server (which is utterly broken).
        * Added and implemented IMAPStore: -capabilities to return an array
          of the server's capabilities (result of the CAPABILITY command).
        * Added a "contents" parameter to Store: -createFolderWithName: type:
          so we are now able to create a folder with an initial content.
          Implemented in all Store subclasses but the only implementation
          that works right now is the LocalStore one using the standard
          mailbox format (maildir won't work).

diffstat:

 mail/Pantomime/Makefile      |  20 ++++++++------------
 mail/Pantomime/buildlink2.mk |   5 ++---
 mail/Pantomime/buildlink3.mk |  25 +++++++++++++++++++++++++
 mail/Pantomime/distinfo      |   6 +++---
 4 files changed, 38 insertions(+), 18 deletions(-)

diffs (94 lines):

diff -r fac369f17714 -r 3c03104ec4b4 mail/Pantomime/Makefile
--- a/mail/Pantomime/Makefile   Sat Apr 10 23:51:36 2004 +0000
+++ b/mail/Pantomime/Makefile   Sat Apr 10 23:52:37 2004 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.10 2004/03/26 02:27:43 wiz Exp $
+# $NetBSD: Makefile,v 1.11 2004/04/10 23:52:37 rh Exp $
 #
 
-DISTNAME=      Pantomime-1.1.1
-PKGREVISION=                   3
+DISTNAME=      Pantomime-1.1.2
 CATEGORIES=    mail gnustep
 MASTER_SITES=  http://debian.uni-essen.de/misc/GNUstep/Apps/GNUMail/
 
@@ -10,14 +9,11 @@
 HOMEPAGE=      http://www.collaboration-world.com/pantomime/
 COMMENT=       Objective-C mail system class library
 
-WRKSRC=                        ${WRKDIR}/Pantomime
-NO_CONFIGURE=          YES
-USE_BUILDLINK2=                YES
-USE_GNU_TOOLS+=                make
-USE_X11=               YES
-MAKEFILE=              GNUmakefile
-MAKE_ENV+=             ADDITIONAL_CPPFLAGS=-DMKDIR
+WRKSRC=                ${WRKDIR}/Pantomime
+NO_CONFIGURE=  yes
+USE_BUILDLINK3=        yes
+MAKE_ENV+=     ADDITIONAL_CPPFLAGS=-DMKDIR
 
-.include "../../x11/gnustep-back/buildlink2.mk"
-.include "../../mk/pthread.buildlink2.mk"
+.include "../../devel/gnustep-base/buildlink3.mk"
+.include "../../mk/pthread.buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r fac369f17714 -r 3c03104ec4b4 mail/Pantomime/buildlink2.mk
--- a/mail/Pantomime/buildlink2.mk      Sat Apr 10 23:51:36 2004 +0000
+++ b/mail/Pantomime/buildlink2.mk      Sat Apr 10 23:52:37 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink2.mk,v 1.6 2004/03/26 02:27:43 wiz Exp $
+# $NetBSD: buildlink2.mk,v 1.7 2004/04/10 23:52:37 rh Exp $
 #
 # This Makefile fragment is included by packages that use Pantomime.
 #
@@ -9,8 +9,7 @@
 PANTOMIME_BUILDLINK2_MK=       # defined
 
 BUILDLINK_PACKAGES+=                   Pantomime
-BUILDLINK_DEPENDS.Pantomime?=          Pantomime>=1.1.1nb1
-BUILDLINK_RECOMMENDED.Pantomime?=              Pantomime>=1.1.1nb3
+BUILDLINK_DEPENDS.Pantomime?=          Pantomime>=1.1.2
 BUILDLINK_PKGSRCDIR.Pantomime?=                ../../mail/Pantomime
 
 EVAL_PREFIX+=  BUILDLINK_PREFIX.Pantomime=Pantomime
diff -r fac369f17714 -r 3c03104ec4b4 mail/Pantomime/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/Pantomime/buildlink3.mk      Sat Apr 10 23:52:37 2004 +0000
@@ -0,0 +1,25 @@
+# $NetBSD: buildlink3.mk,v 1.1 2004/04/10 23:52:37 rh Exp $
+
+BUILDLINK_DEPTH:=              ${BUILDLINK_DEPTH}+
+PANTOMIME_BUILDLINK3_MK:=      ${PANTOMIME_BUILDLINK3_MK}+
+
+.if !empty(BUILDLINK_DEPTH:M+)
+BUILDLINK_DEPENDS+=    Pantomime
+.endif
+
+BUILDLINK_PACKAGES:=   ${BUILDLINK_PACKAGES:NPantomime}
+BUILDLINK_PACKAGES+=   Pantomime
+
+.if !empty(PANTOMIME_BUILDLINK3_MK:M+)
+BUILDLINK_DEPENDS.Pantomime+=  Pantomime>=1.1.2
+BUILDLINK_PKGSRCDIR.Pantomime?=        ../../mail/Pantomime
+
+.include "../../devel/gnustep-make/gnustep.mk"
+
+BUILDLINK_INCDIRS.Pantomime+=  ${GNUSTEP_LOCAL_ROOT}/${GNUSTEP_IDIR}/Pantomime
+
+.endif # PANTOMIME_BUILDLINK3_MK
+
+.include "../../devel/gnustep-base/buildlink3.mk"
+
+BUILDLINK_DEPTH:=     ${BUILDLINK_DEPTH:S/+$//}
diff -r fac369f17714 -r 3c03104ec4b4 mail/Pantomime/distinfo
--- a/mail/Pantomime/distinfo   Sat Apr 10 23:51:36 2004 +0000
+++ b/mail/Pantomime/distinfo   Sat Apr 10 23:52:37 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.2 2003/12/05 11:25:58 adam Exp $
+$NetBSD: distinfo,v 1.3 2004/04/10 23:52:37 rh Exp $
 
-SHA1 (Pantomime-1.1.1.tar.gz) = 5ae994af0cfd9ddbc11ff10ab9c21881250277be
-Size (Pantomime-1.1.1.tar.gz) = 401164 bytes
+SHA1 (Pantomime-1.1.2.tar.gz) = 06755835a74ff3686eca35ba5169722f17cf968e
+Size (Pantomime-1.1.2.tar.gz) = 394509 bytes



Home | Main Index | Thread Index | Old Index