From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH v5 15/17] gnu: Add perl-mail-spf. Date: Thu, 28 Jul 2016 23:38:31 +0200 Message-ID: <20160728213833.22057-16-dannym@scratchpost.org> References: <20160728213833.22057-1-dannym@scratchpost.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------2.9.1" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35471) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSt1h-0007qq-Ml for guix-devel@gnu.org; Thu, 28 Jul 2016 17:39:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bSt1g-0006E1-B8 for guix-devel@gnu.org; Thu, 28 Jul 2016 17:39:33 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:55098) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSt1g-0006Da-4d for guix-devel@gnu.org; Thu, 28 Jul 2016 17:39:32 -0400 In-Reply-To: <20160728213833.22057-1-dannym@scratchpost.org> 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: guix-devel@gnu.org This is a multi-part message in MIME format. --------------2.9.1 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: quoted-printable gnu: Add perl-mail-spf. * gnu/package/mail.scm (perl-mail-spf): New variable. --- gnu/packages/mail.scm | 45 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) --------------2.9.1 Content-Type: text/x-patch; name="0015-gnu-Add-perl-mail-spf.patch" Content-Disposition: attachment; filename="0015-gnu-Add-perl-mail-spf.patch" Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index f7a7623..98ca623 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -71,11 +71,13 @@ #:use-module (gnu packages gdb) #:use-module (gnu packages samba) #:use-module (gnu packages tls) + #:use-module (gnu packages networking) + #:use-module (gnu packages web) #:use-module (gnu packages xml) #:use-module (gnu packages xorg) #:use-module ((guix licenses) #:select (gpl2 gpl2+ gpl3 gpl3+ lgpl2.1 lgpl2.1+ lgpl3+ - non-copyleft (expat . license:expat))) + non-copyleft (expat . license:expat) bsd-3)) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) @@ -1262,3 +1264,44 @@ synchronizing with a remote address book, @command= {vdirsyncer} is recommended. Khard can also be used from within the email client @command{mutt}.") (home-page "https://github.com/scheibler/khard") (license gpl3+))) + +(define-public perl-mail-spf + (package + (name "perl-mail-spf") + (version "v2.9.0") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/J/JM/JMEHNLE/mail-spf/Mail-SPF-" + version + ".tar.gz")) + (sha256 + (base32 + "0qk1rfgfm5drj4iyniiabrasrpqv570vzhgz66lwgb67y4amkjv1")))) + (build-system perl-build-system) + (native-inputs + `(("perl-module-build" ,perl-module-build) + ("perl-net-dns-resolver-programmable" + ,perl-net-dns-resolver-programmable))) + (arguments + `(#:phases (modify-phases %standard-phases + (add-before 'configure 'modify-Build.PL + (lambda* (#:key outputs #:allow-other-keys) + (substitute* "Build.PL" + (("'/usr/sbin'") (string-append "'" + (assoc-ref outputs "out") + "/sbin'"))) + #t))))) + (inputs + `(("perl-error" ,perl-error) + ("perl-net-dns" ,perl-net-dns) + ("perl-netaddr-ip" ,perl-netaddr-ip) + ("perl-uri" ,perl-uri))) + (home-page + "http://search.cpan.org/dist/Mail-SPF") + (synopsis + "Perl implementation of Sender Policy Framework") + (description "Mail::SPF is the Sender Policy Framework implemented +in Perl.") + (license bsd-3))) --------------2.9.1--