including a brand new mailbox caching code and other performance
improvements. This also makes Pantomime use the fhs filesystem layout
to make it more hier(7) compliant.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
and add a new helper target and script, "show-buildlink3", that outputs
a listing of the buildlink3.mk files included as well as the depth at
which they are included.
For example, "make show-buildlink3" in fonts/Xft2 displays:
zlib
fontconfig
iconv
zlib
freetype2
expat
freetype2
Xrender
renderproto
RECOMMENDED is removed. It becomes ABI_DEPENDS.
BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo.
BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo.
BUILDLINK_DEPENDS does not change.
IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS
which defaults to "yes".
Added to obsolete.mk checking for IGNORE_RECOMMENDED.
I did not manually go through and fix any aesthetic tab/spacing issues.
I have tested the above patch on DragonFly building and packaging
subversion and pkglint and their many dependencies.
I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I
have used IGNORE_RECOMMENDED for a long time). I have been an active user
of IGNORE_RECOMMENDED since it was available.
As suggested, I removed the documentation sentences suggesting bumping for
"security" issues.
As discussed on tech-pkg.
I will commit to revbump, pkglint, pkg_install, createbuildlink separately.
Note that if you use wip, it will fail! I will commit to pkgsrc-wip
later (within day).
in the process. (More information on tech-pkg.)
Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.
Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
Bump PKGREVISION and BUILDLINK_RECOMMENDED for dependent packages due to
library major revision bump.
Noteworthy changes in gnustep-base-1.10.0:
==========================================
Note the interface version of the library has changed so that apps,
tools and libraries the use the base library need to be recompiled to
use it.
* A large majority of the library classes have been documented
thanks to the efforts of Andrew Ruder
* URL classes support persistant connections
* Mac OSX XML compatibility fixes.
* 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>.
* 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>.
* 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).