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

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

bug#60737: closed ([PATCH] gnu: rss2email: Update to 3.14.)


From: GNU bug Tracking System
Subject: bug#60737: closed ([PATCH] gnu: rss2email: Update to 3.14.)
Date: Sat, 28 Jan 2023 06:03:01 +0000

Your message dated Sat, 28 Jan 2023 14:02:41 +0800
with message-id <87lelnqjr2.fsf@envs.net>
and subject line Re: bug#60737: [PATCH] gnu: rss2email: Update to 3.14.
has caused the debbugs.gnu.org bug report #60737,
regarding [PATCH] gnu: rss2email: Update to 3.14.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
60737: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=60737
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: rss2email: Update to 3.14. Date: Wed, 11 Jan 2023 14:01:06 -0500
From: Morgan Smith <Morgan.J.Smith@outlook.com>

* gnu/packages/mail.scm (rss2email): Update to 3.14.
[arguments]: Use gexps.  Add install-documentation phase
---
 gnu/packages/mail.scm | 33 +++++++++++++++++++--------------
 1 file changed, 19 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index de868e948b..2c7f3fd9ff 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -4685,7 +4685,7 @@ (define-public crm114
 (define-public rss2email
   (package
     (name "rss2email")
-    (version "3.13.1")
+    (version "3.14")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -4694,21 +4694,26 @@ (define-public rss2email
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0g1yr3v3ibdh2jqil64fbdbplx5m2yzxr893fqfkwcc5c7fbwl4d"))))
+                "0rmcwvf8whf49qq5rgp5hhmhfjli1vhjlc7fjhj24gyy1kkjir2k"))))
     (build-system python-build-system)
     (arguments
-     '(#:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           (lambda* (#:key tests? #:allow-other-keys)
-             (when tests?
-               (with-directory-excursion "test"
-                 ;; Skip networking tests
-                 (substitute* "test.py"
-                   (("( *)class (:?TestSend|TestFetch).*" match indent)
-                    (string-append indent "@unittest.skip(\"Networking stuff 
skipped\")\n"
-                                   indent match)))
-                 (invoke "python" "-m" "unittest"))))))))
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (replace 'check
+            (lambda* (#:key tests? #:allow-other-keys)
+              (when tests?
+                (with-directory-excursion "test"
+                  ;; Skip networking tests
+                  (substitute* "test.py"
+                    (("( *)class (:?TestSend|TestFetch).*" match indent)
+                     (string-append indent
+                                    "@unittest.skip(\"Networking stuff 
skipped\")\n"
+                                    indent match)))
+                  (invoke "python" "-m" "unittest")))))
+          (add-after 'install 'install-documentation
+            (lambda _
+              (install-file "r2e.1" (string-append #$output 
"share/man/man1")))))))
     (inputs
      (list python-feedparser python-html2text))
     (home-page "https://github.com/rss2email/rss2email";)
-- 
2.38.1




--- End Message ---
--- Begin Message --- Subject: Re: bug#60737: [PATCH] gnu: rss2email: Update to 3.14. Date: Sat, 28 Jan 2023 14:02:41 +0800 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Morgan.J.Smith@outlook.com writes:

> From: Morgan Smith <Morgan.J.Smith@outlook.com>
>
> * gnu/packages/mail.scm (rss2email): Update to 3.14.
> [arguments]: Use gexps.  Add install-documentation phase

Applied, thank you!


--- End Message ---

reply via email to

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