From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: [PATCH] gnu: Add fdm Date: Mon, 18 Jan 2016 11:30:29 -0800 Message-ID: <87twma65vq.fsf@dustycloud.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60578) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aLFXD-0001jQ-1R for guix-devel@gnu.org; Mon, 18 Jan 2016 14:32:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aLFX9-0006c7-RF for guix-devel@gnu.org; Mon, 18 Jan 2016 14:32:14 -0500 Received: from dustycloud.org ([50.116.34.160]:44941) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aLFX9-0006c0-Ls for guix-devel@gnu.org; Mon, 18 Jan 2016 14:32:11 -0500 Received: from oolong (localhost [127.0.0.1]) by dustycloud.org (Postfix) with ESMTPS id 30BB62674B for ; Mon, 18 Jan 2016 14:32:10 -0500 (EST) 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Hello all, I've packaged fdm, a mail distribution tool. Look okay to merge? --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-fdm.patch Content-Transfer-Encoding: quoted-printable >From c0d0fde9785680a3642e2cd54f46c3b447cfbb1b Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Mon, 18 Jan 2016 11:25:16 -0800 Subject: [PATCH] gnu: Add fdm. * gnu/packages/mail.scm (fdm): New variable. --- gnu/packages/mail.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index f765728..01a791f 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -9,6 +9,7 @@ ;;; Copyright =C2=A9 2015 Eric Bavier ;;; Copyright =C2=A9 2015 Andreas Enge ;;; Copyright =C2=A9 2015 Efraim Flashner +;;; Copyright =C2=A9 2016 Christopher Allan Webber ;;; ;;; This file is part of GNU Guix. ;;; @@ -1013,4 +1014,39 @@ compatibility shims for the @command{sendmail}, @c= ommand{mailq}, and @command{newaliases} commands.") (license gpl2+))) =20 +(define-public fdm + (package + (name "fdm") + (version "1.9") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/nicm/fdm/releases/d= ownload/" + version "/fdm-" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "054rscijahiza5f9qha79rg3siji3bk5mk10f8c2vqx7m4w6= qh8n")))) + (build-system gnu-build-system) + (native-inputs `(("autoconf" ,(autoconf-wrapper)) + ("automake" ,automake) + ("libtool" ,libtool))) + (inputs + `(("tdb" ,tdb) + ("openssl" ,openssl) + ("zlib" ,zlib))) + (home-page "https://github.com/nicm/fdm") + (synopsis "Mail fetching and delivery tool") + (description "fdm is a program designed to fetch mail from POP3 +or IMAP servers, or receive local mail from stdin, and +deliver it in various ways.") + (license + ;; Why point to Debian's copy? Well, all the individual files have= a + ;; copy of this license in their headers, but there's no seprate fi= le + ;; with that information. Debian already provided us with a nice U= RI + ;; to point to... + (non-copyleft + (string-append + "http://metadata.ftp-master.debian.org/" + "changelogs/main/f/fdm/fdm_1.7+cvs20140912-1_copyright"))))) + ;;; mail.scm ends here --=20 2.6.3 --=-=-=--