unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#61705] [PATCH] gnu: Add emacs-org-recur.
@ 2023-02-22 12:55 conses
  2023-02-22 13:54 ` Nicolas Goaziou
  2023-02-22 15:48 ` [bug#61705] [PATCH v2] " conses
  0 siblings, 2 replies; 4+ messages in thread
From: conses @ 2023-02-22 12:55 UTC (permalink / raw)
  To: 61705

* 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




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#61705] [PATCH] gnu: Add emacs-org-recur.
  2023-02-22 12:55 [bug#61705] [PATCH] gnu: Add emacs-org-recur conses
@ 2023-02-22 13:54 ` Nicolas Goaziou
  2023-02-22 15:48 ` [bug#61705] [PATCH v2] " conses
  1 sibling, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2023-02-22 13:54 UTC (permalink / raw)
  To: conses; +Cc: 61705

Hello,

conses <contact@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




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#61705] [PATCH v2] gnu: Add emacs-org-recur.
  2023-02-22 12:55 [bug#61705] [PATCH] gnu: Add emacs-org-recur conses
  2023-02-22 13:54 ` Nicolas Goaziou
@ 2023-02-22 15:48 ` conses
  2023-02-23 14:30   ` bug#61705: " Nicolas Goaziou
  1 sibling, 1 reply; 4+ messages in thread
From: conses @ 2023-02-22 15:48 UTC (permalink / raw)
  To: 61705

* 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




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#61705: [PATCH v2] gnu: Add emacs-org-recur.
  2023-02-22 15:48 ` [bug#61705] [PATCH v2] " conses
@ 2023-02-23 14:30   ` Nicolas Goaziou
  0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2023-02-23 14:30 UTC (permalink / raw)
  To: conses; +Cc: 61705-done

Hello,

conses <contact@conses.eu> writes:

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

Thank you. Patch applied!

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-02-23 14:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-22 12:55 [bug#61705] [PATCH] gnu: Add emacs-org-recur conses
2023-02-22 13:54 ` Nicolas Goaziou
2023-02-22 15:48 ` [bug#61705] [PATCH v2] " conses
2023-02-23 14:30   ` bug#61705: " Nicolas Goaziou

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).