Received: by mail.netbsd.org (Postfix, from userid 605) id D7D2D8556F; Thu, 23 Nov 2017 15:41:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 622A084D30 for ; Thu, 23 Nov 2017 15:41:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id yY879W4jqTrV for ; Thu, 23 Nov 2017 15:41:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D56AC84C6C for ; Thu, 23 Nov 2017 15:41:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D2845FB40; Thu, 23 Nov 2017 15:41:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15114517004500" MIME-Version: 1.0 Date: Thu, 23 Nov 2017 15:41:40 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/mail/gmime To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20171123154140.D2845FB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_15114517004500 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Nov 23 15:41:40 UTC 2017 Modified Files: pkgsrc/mail/gmime: DESCR Makefile Log Message: gmime: Improve DESCR and mention API version To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/mail/gmime/DESCR cvs rdiff -u -r1.38 -r1.39 pkgsrc/mail/gmime/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15114517004500 Content-Disposition: inline Content-Length: 3134 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/gmime/DESCR diff -u pkgsrc/mail/gmime/DESCR:1.5 pkgsrc/mail/gmime/DESCR:1.6 --- pkgsrc/mail/gmime/DESCR:1.5 Sun Apr 7 20:49:36 2013 +++ pkgsrc/mail/gmime/DESCR Thu Nov 23 15:41:40 2017 @@ -1,24 +1,15 @@ -GMime is a set of utilities for parsing and creating messages using the -Multipurpose Internet Mail Extension (MIME) as defined by the following RFCs: - * 0822: Standard for the Format of Arpa Internet Text Messages - * 1521: MIME (Multipurpose Internet Mail Extensions) Part One: Mechanisms for - Specifying and Describing the Format of Internet Message Bodies - * 1847: Security Multiparts for MIME: Multipart/Signed and Multipart/Encrypted - * 1864: The Content-MD5 Header Field (Obsoletes rfc1544) - * 2015: MIME Security with Pretty Good Privacy (PGP) - * 2045: Multipurpose Internet Mail Extensions (MIME) Part One: - Format of Internet Message Bodies - * 2046: Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types - * 2047: Multipurpose Internet Mail Extensions (MIME) Part Three: - Message Header Extensions for Non-ASCII Text - * 2048: Multipurpose Internet Mail Extensions (MIME) Part Four: - Registration Procedures - * 2049: Multipurpose Internet Mail Extensions (MIME) Part Five: - Conformance Criteria and Examples - * 2183: Communicating Presentation Information in Internet Messages: - The Content-Disposition Header Field - * 2184: MIME Parameter Value and Encoded Word Extensions: Character - Sets, Languages, and Continuations - * 2231: MIME Parameter Value and Encoded Word Extensions: Character - Sets, Languages, and Continuations (Obsoletes rfc2184) - * 3156: MIME Security with OpenPGP (Updates rfc2015) +GMime is a C library which may be used for the creation and parsing +of messages using the Multipurpose Internet Mail Extension (MIME), +as defined by numerous IETF specifications. + +GMime features an extremely robust high-performance parser designed +to be able to preserve byte-for-byte information allowing developers +to re-seralize the parsed messages back to a stream exactly as the +parser found them. It also features integrated GnuPG and S/MIME +v3.2 support. + +Built on top of GObject (the object system used by the GNOME +desktop), many developers should find its API design and memory +management very familiar. + +This package contains v2.6 of the gmime API. Index: pkgsrc/mail/gmime/Makefile diff -u pkgsrc/mail/gmime/Makefile:1.38 pkgsrc/mail/gmime/Makefile:1.39 --- pkgsrc/mail/gmime/Makefile:1.38 Fri Mar 31 10:32:15 2017 +++ pkgsrc/mail/gmime/Makefile Thu Nov 23 15:41:40 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2017/03/31 10:32:15 wiz Exp $ +# $NetBSD: Makefile,v 1.39 2017/11/23 15:41:40 wiz Exp $ DISTNAME= gmime-2.6.23 PKGREVISION= 2 @@ -8,7 +8,7 @@ EXTRACT_SUFX= .tar.xz MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://spruce.sourceforge.net/gmime/ -COMMENT= Library for the creation and parsing of MIME messages +COMMENT= Library for the creation and parsing of MIME messages (API v2.6) LICENSE= gnu-lgpl-v2.1 USE_PKGLOCALEDIR= yes --_----------=_15114517004500--