GNU bug report logs - #61705
[PATCH] gnu: Add emacs-org-recur.

Previous Next

Package: guix-patches;

Reported by: conses <contact <at> conses.eu>

Date: Wed, 22 Feb 2023 12:56:01 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 61705 in the body.
You can then email your comments to 61705 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#61705; Package guix-patches. (Wed, 22 Feb 2023 12:56:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to conses <contact <at> conses.eu>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 22 Feb 2023 12:56:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: conses <contact <at> conses.eu>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add emacs-org-recur.
Date: Wed, 22 Feb 2023 13:55:23 +0100
* gnu/packages/emacs-xyz.scm (emacs-org-recur): New variable.
---
 gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3b12642bc9..17fea8012c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -20849,6 +20849,27 @@ (define-public emacs-org-recent-headings
 as well as functions for navigating between these headings.")
       (license license:gpl3+))))
 
+(define-public emacs-org-recur
+  (package
+    (name "emacs-org-recur")
+    (version "1.3.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/m-cat/org-recur")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0s2n62y3qc72ldzpaq2jz9335h532s566499n346nx21l4qsqdz6"))))
+    (build-system emacs-build-system)
+    (propagated-inputs (list emacs-dash))
+    (home-page "https://github.com/m-cat/org-recur")
+    (synopsis "Simple recurring org-mode tasks")
+    (description "This package extends org-mode and org-agenda with support
+for defining recurring tasks and easily scheduling them.")
+    (license license:gpl3)))
+
 (define-public emacs-org-super-agenda
   (package
     (name "emacs-org-super-agenda")
-- 
2.39.1



-- 
Best regards,
conses




Information forwarded to guix-patches <at> gnu.org:
bug#61705; Package guix-patches. (Wed, 22 Feb 2023 13:55:02 GMT) Full text and rfc822 format available.

Message #8 received at 61705 <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: conses <contact <at> conses.eu>
Cc: 61705 <at> debbugs.gnu.org
Subject: Re: [bug#61705] [PATCH] gnu: Add emacs-org-recur.
Date: Wed, 22 Feb 2023 14:54:36 +0100
Hello,

conses <contact <at> conses.eu> writes:

> * gnu/packages/emacs-xyz.scm (emacs-org-recur): New variable.

Thanks.

> +    (synopsis "Simple recurring org-mode tasks")

Nitpick: org-mode —> Org mode

> +    (description "This package extends org-mode and org-agenda with support

Nitpick: org-mode —> Org mode ; org-agenda —> Org Agenda

> +for defining recurring tasks and easily scheduling them.")
> +    (license license:gpl3)))

License is GPL3+.

Upstream includes tests. Could you run them in the package definition?

Could you send an updated patch?

Regards,
-- 
Nicolas Goaziou




Information forwarded to guix-patches <at> gnu.org:
bug#61705; Package guix-patches. (Wed, 22 Feb 2023 15:49:01 GMT) Full text and rfc822 format available.

Message #11 received at 61705 <at> debbugs.gnu.org (full text, mbox):

From: conses <contact <at> conses.eu>
To: 61705 <at> debbugs.gnu.org
Subject: [PATCH v2] gnu: Add emacs-org-recur.
Date: Wed, 22 Feb 2023 16:48:26 +0100
* gnu/packages/emacs-xyz.scm (emacs-org-recur): New variable.
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3b12642bc9..024b3bdc79 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -20849,6 +20849,31 @@ (define-public emacs-org-recent-headings
 as well as functions for navigating between these headings.")
       (license license:gpl3+))))
 
+(define-public emacs-org-recur
+  (package
+    (name "emacs-org-recur")
+    (version "1.3.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/m-cat/org-recur")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0s2n62y3qc72ldzpaq2jz9335h532s566499n346nx21l4qsqdz6"))))
+    (build-system emacs-build-system)
+    (propagated-inputs (list emacs-dash))
+    (arguments
+     (list #:tests? #t
+           #:test-command #~(list "emacs" "--batch" "-l" "org-recur-test.el"
+                                  "-f" "ert-run-tests-batch-and-exit")))
+    (home-page "https://github.com/m-cat/org-recur")
+    (synopsis "Simple recurring Org mode tasks")
+    (description "This package extends Org mode and Org Agenda with support
+for defining recurring tasks and easily scheduling them.")
+    (license license:gpl3+)))
+
 (define-public emacs-org-super-agenda
   (package
     (name "emacs-org-super-agenda")
-- 
2.39.1



-- 
Best regards,
conses




Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Thu, 23 Feb 2023 14:31:01 GMT) Full text and rfc822 format available.

Notification sent to conses <contact <at> conses.eu>:
bug acknowledged by developer. (Thu, 23 Feb 2023 14:31:02 GMT) Full text and rfc822 format available.

Message #16 received at 61705-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: conses <contact <at> conses.eu>
Cc: 61705-done <at> debbugs.gnu.org
Subject: Re: [bug#61705] [PATCH v2] gnu: Add emacs-org-recur.
Date: Thu, 23 Feb 2023 15:30:18 +0100
Hello,

conses <contact <at> conses.eu> writes:

> * gnu/packages/emacs-xyz.scm (emacs-org-recur): New variable.

Thank you. Patch applied!

Regards,
-- 
Nicolas Goaziou




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 24 Mar 2023 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 33 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.