emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#26203: closed ([PATCH] gnu: Add swaks.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#26203: closed ([PATCH] gnu: Add swaks.)
Date: Tue, 21 Mar 2017 14:44:01 +0000

Your message dated Tue, 21 Mar 2017 15:43:29 +0100
with message-id <address@hidden>
and subject line Re: bug#26203: [PATCH] gnu: Add swaks.
has caused the debbugs.gnu.org bug report #26203,
regarding [PATCH] gnu: Add swaks.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
26203: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=26203
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add swaks. Date: Tue, 21 Mar 2017 17:33:39 +0530
* gnu/packages/mail.scm (swaks): New variable.
---
 gnu/packages/mail.scm | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 53 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 3bf0e6647..b31cf0252 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -17,7 +17,7 @@
 ;;; Copyright © 2016 Troy Sankey <address@hidden>
 ;;; Copyright © 2016, 2017 <address@hidden>
 ;;; Copyright © 2016 Clément Lassieur <address@hidden>
-;;; Copyright © 2016 Arun Isaac <address@hidden>
+;;; Copyright © 2016, 2017 Arun Isaac <address@hidden>
 ;;; Copyright © 2016 John Darrington <address@hidden>
 ;;; Copyright © 2016 Marius Bakke <address@hidden>
 ;;; Copyright © 2017 Thomas Danckaert <address@hidden>
@@ -2093,3 +2093,55 @@ indexed mbox files.  There are two programs: 
@code{bindex} and @code{bit}.
 are supported).  @code{bit} is a CGI/SSI program that generates web pages
 on the fly.  Both programs are written in C and are very fast.")
     (license license:expat)))
+
+(define-public swaks
+  (package
+    (name "swaks")
+    (version "20170101.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://jetmore.org/john/code/swaks/files/swaks-";
+             version ".tar.gz"))
+       (sha256
+        (base32
+         "0pli4mlhasnqqxmmxalwyg3x7n2vhcbgsnp2xgddamjavv82vrl4"))))
+    (build-system perl-build-system)
+    (inputs
+     `(("perl-net-dns" ,perl-net-dns)
+       ("perl-net-ssleay" ,perl-net-ssleay)))
+    (arguments
+     `(#:tests? #f ; No tests
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure)
+         (replace 'build
+                  (lambda _
+                    (zero? (system* "pod2man" "doc/ref.pod" "swaks.1"))))
+         (replace 'install
+                  (lambda _
+                    (let* ((out (assoc-ref %outputs "out"))
+                           (bin (string-append out "/bin"))
+                           (man (string-append out "/share/man/man1")))
+                      (mkdir-p bin)
+                      (install-file "swaks" bin)
+                      (mkdir-p man)
+                      (install-file "swaks.1" man))))
+         (add-after 'install 'wrap-program
+                    (lambda _
+                      (wrap-program (string-append (assoc-ref %outputs "out")
+                                                   "/bin/swaks")
+                        `("PERL5LIB" ":" = (,(getenv "PERL5LIB")))))))))
+    (home-page "http://jetmore.org/john/code/swaks/";)
+    (synopsis "Featureful, flexible, scriptable, transaction-oriented SMTP
+test tool")
+    (description "Swaks is a flexible, scriptable, transaction-oriented SMTP
+test tool.  It handles SMTP features and extensions such as TLS,
+authentication, and pipelining; multiple version of the SMTP protocol
+including SMTP, ESMTP, and LMTP; and multiple transport methods including
+unix-domain sockets, internet-domain sockets, and pipes to spawned processes.
+Options can be specified in environment variables, configuration files, and
+the command line allowing maximum configurability and ease of use for
+operators and scripters.")
+    (license gpl2+)))
-- 
2.11.0




--- End Message ---
--- Begin Message --- Subject: Re: bug#26203: [PATCH] gnu: Add swaks. Date: Tue, 21 Mar 2017 15:43:29 +0100 User-agent: Notmuch/0.24 (https://notmuchmail.org) Emacs/25.1.1 (x86_64-unknown-linux-gnu)
Arun Isaac <address@hidden> writes:

> I have send a new patch. Please feel free to let me know if there are
> any further changes to be made or if I missed something. I won't be
> annoyed or offended. :-)

The patch is great, thanks!

>> +         (add-after 'install 'wrap-program
>> +                    (lambda _
>> +                      (wrap-program (string-append (assoc-ref %outputs 
>> "out")
>> +                                                   "/bin/swaks")
>
> It would be nice if the perl-build-system did this wrapping
> automatically just like the python-build-system does. Is there some
> reason the perl-build-system doesn't do wrapping automatically?

I agree this would be nice. Would you like to work on it? :)

By the way, my email client says your PGP signature is bad. Is your
email client incorrectly configured, or is my key out of date? I fetched
0x2E25EE8B61802BB3 from "keys.gnupg.net".

The fingerprint is:
7F73 0343 F2F0 9F3C 77BF  79D3 2E25 EE8B 6180 2BB3

Closing this bug, but feel free to continue the conversation!

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]