From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] gnu: Add libpst. Date: Fri, 20 May 2016 14:18:10 +0200 Message-ID: <87futcgby5.fsf@gnu.org> References: <20160510210535.0a5337e7@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46108) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b3jNi-0006EA-OC for guix-devel@gnu.org; Fri, 20 May 2016 08:18:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b3jNe-0000P4-92 for guix-devel@gnu.org; Fri, 20 May 2016 08:18:18 -0400 In-Reply-To: <20160510210535.0a5337e7@openmailbox.org> (Kei Yamashita's message of "Tue, 10 May 2016 21:05:35 -0400") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Kei Yamashita Cc: guix-devel@gnu.org Kei Yamashita skribis: > From 7c54fcc66ba52e58eec806c5a9eaefa0ee56afc1 Mon Sep 17 00:00:00 2001 > From: Kei Yamashita > Date: Tue, 10 May 2016 20:39:42 -0400 > Subject: [PATCH] gnu: Add libpst. > > * gnu/packages/mail.scm (libpst): New variable. [...] > (package > (name "mutt") > - (version "1.6.1") > + (version "1.6.0") > (source (origin > (method url-fetch) > (uri (string-append "ftp://ftp.mutt.org/pub/mutt/mutt-" > version ".tar.gz")) > (sha256 > (base32 > - "087dz1y9qhl4ikhsnnb4xmyvs82w6kx480w8zj130wdiqvn6rclq")) > + "06bc2drbgalkk68rzg7hq2v5m5qgjxff5357wg0419dpi8ivdbr9")) Oops. :-) Please remove this hunk. > +(define-public libpst > + (package > + (name "libpst") > + (version "0.6.66") > + (source (origin > + (method url-fetch) > + (uri (string-append "http://www.five-ten-sg.com/" name > + "/packages/" name "-" version ".tar.gz= ")) > + (sha256 > + (base32 > + "0whzgrky1b015czg9f5mk8zpz1mvip3ifzp24nfis291v0wrkd4j"))= )) > + (build-system gnu-build-system) > + (native-inputs > + `(("pkg-config" ,pkg-config))) > + (inputs > + `(("boost" ,boost) > + ("libgsf" ,libgsf) > + ("python" ,python-2))) > + (home-page "http://www.five-ten-sg.com/libpst/") > + (synopsis "Microsoft Outlook .pst file converter") > + (description > + "Libpst can convert both 32 bit Microsoft Outlook files (pre 2003),= and > +the 64 bit Outlook 2003 pst files. Utilities are supplied to convert em= ail > +messages to both mbox and MH mailbox formats. Contacts can be converted= to a > +simple list, to vcard format, or to ldif format for import to an LDAP se= rver.") > + (license gpl2+))) LGTM. Hopefully you=E2=80=99ll be able to push by yourself soonish. :-) Ludo=E2=80=99.