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

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

bug#39331: closed ([PATCH] gnu: Add emacs-persist and emacs-org-drill)


From: GNU bug Tracking System
Subject: bug#39331: closed ([PATCH] gnu: Add emacs-persist and emacs-org-drill)
Date: Sat, 07 Mar 2020 23:52:02 +0000

Your message dated Sun, 08 Mar 2020 00:50:54 +0100
with message-id <C1508AMAW888.3JQ92W1LFKVTG@amber>
and subject line Re: [PATCH v3] gnu: Add emacs-persist
has caused the debbugs.gnu.org bug report #39331,
regarding [PATCH] gnu: Add emacs-persist and emacs-org-drill
to be marked as done.

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


-- 
39331: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39331
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add emacs-persist and emacs-org-drill Date: Tue, 28 Jan 2020 23:19:44 +0100
* gnu/packages/emacs-xyz.scm (emacs-persist): New variable.
  (emacs-org-drill): New variable.
---
Added emacs-org-drill and its dependency emacs-persist. emacs-org-drill
was previously included in emacs-org-contrib, but was removed in 2019
and placed in a separate melpa package.

 gnu/packages/emacs-xyz.scm | 51 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e834dfffb3..7054bd0d72 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -58,6 +58,7 @@
 ;;; Copyright © 2019 Leo Prikler <address@hidden>
 ;;; Copyright © 2019 David Wilson <address@hidden>
 ;;; Copyright © 2020 Paul Garlick <address@hidden>
+;;; Copyright © 2020 Robert Smith <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -21237,3 +21238,53 @@ mode-line text (lighter) of major and minor modes.")
       (description "@code{unkillable-scratch} helps prevent killing buffers
 matching a given regexp.")
       (license license:gpl2+))))
+
+(define-public emacs-persist
+  (package
+    (name "emacs-persist")
+    (version "0.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://elpa.gnu.org/packages/persist-";
+                           version ".tar"))
+       (sha256
+        (base32 "0gpxy41qawzss2526j9a7lys60vqma1lvamn4bfabwza7gfhac0q"))))
+    (build-system emacs-build-system)
+    (home-page "http://elpa.gnu.org/packages/persist.html";)
+    (synopsis "Persist Variables between Emacs Sessions")
+    (description
+     "This package provides variables which persist across sessions.
+Values are stored in a directory in `user-emacs-directory', using
+one file per value.  This makes it easy to delete or remove unused
+variables.")
+    (license license:gpl3+)))
+
+(define-public emacs-org-drill
+  (package
+    (name "emacs-org-drill")
+    ;; Latest version in melpa-stable is from 2016
+    (version "20191219.2100")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://melpa.org/packages/org-drill-";
+                          version ".el"))
+       (sha256
+           (base32 "0nbsn1vi2g68yvy74r3bmywfkgpm4a5nmx5g9sxy5fb185lrkzc8"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-seq" ,emacs-seq)
+       ("emacs-org" ,emacs-org)
+       ("emacs-persist" ,emacs-persist)))
+    (home-page "https://gitlab.com/phillord/org-drill";)
+    (synopsis "Self-testing using spaced repetition")
+    (description
+    "Org-Drill is an extension for Org mode. Org-Drill uses a spaced
+repetition algorithm to conduct interactive drill sessions, using org files as
+sources of facts to be memorised. Each topic is treated as a flash card. The
+material to be remembered is presented to the student in random order. The
+student rates his or her recall of each item, and this information is used to
+schedule the item for later revision.")
+    (license license:gpl3+)))
+
-- 
2.25.0




--- End Message ---
--- Begin Message --- Subject: Re: [PATCH v3] gnu: Add emacs-persist Date: Sun, 08 Mar 2020 00:50:54 +0100
On Mon Feb 17, 2020 at 10:18 AM Nicolas Goaziou wrote:
> I'm not closing this bug report in case you want to add Org Drill at
> some point. Otherwise, you can also close it, and open a new bug report
> for Org Drill.

Still no word from upstream, so I'm closing the bug report.
Hopefully I'll open a new one for org-drill soon.

-Robert


--- End Message ---

reply via email to

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