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

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

bug#60869: closed ([PATCH] gnu: Add emacs-org-board.)


From: GNU bug Tracking System
Subject: bug#60869: closed ([PATCH] gnu: Add emacs-org-board.)
Date: Fri, 20 Jan 2023 23:39:03 +0000

Your message dated Sat, 21 Jan 2023 00:38:26 +0100
with message-id <87lelwpyj1.fsf@nicolasgoaziou.fr>
and subject line Re: [bug#60869] [PATCH] gnu: Add emacs-org-board.
has caused the debbugs.gnu.org bug report #60869,
regarding [PATCH] gnu: Add emacs-org-board.
to be marked as done.

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


-- 
60869: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=60869
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add emacs-org-board. Date: Mon, 16 Jan 2023 23:16:43 +0100
* gnu/packages/emacs-xyz.scm (emacs-org-board): New variable.
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index dfbd51ac0a..d202108f27 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -251,6 +251,7 @@ (define-module (gnu packages emacs-xyz)
   #:use-module (gnu packages erlang)
   #:use-module (gnu packages statistics)
   #:use-module (gnu packages libcanberra)
+  #:use-module (gnu packages wget)
   #:use-module (guix utils)
   #:use-module (srfi srfi-1)
   #:use-module (ice-9 match))
@@ -24937,6 +24938,29 @@ (define-public emacs-cpreproc-openvdb
 incompatible versions of it.")
    (license license:gpl3+)))
 
+(define-public emacs-org-board
+  (let ((commit "1393bd46d11a81328ed4fb8471831415a3efe224")
+        (revision "1"))
+    (package
+      (name "emacs-org-board")
+      (version (git-version "20200619" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/charlesroelli/org-board";)
+                      (commit commit)))
+                (sha256
+                 (base32
+                  "1kryrg988c3sbxyp1sdgc6xdv2iz6kiflpzn2rw4z3l4grzab53b"))))
+      (build-system emacs-build-system)
+      (propagated-inputs (list emacs-org emacs-ztree wget))
+      (home-page "https://github.com/charlesroelli/org-board";)
+      (synopsis "Bookmarking and web archival system for Org mode")
+      (description
+       "Org-board uses `org-attach and `wget to provide a bookmarking and web
+archival system directly from an Org file..")
+      (license license:gpl3+))))
+
 (define-public emacs-org-brain
   (package
     (name "emacs-org-brain")

base-commit: 0cf98fbc4e1facbdd733eecf8442788179722c6e
-- 
2.38.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#60869] [PATCH] gnu: Add emacs-org-board. Date: Sat, 21 Jan 2023 00:38:26 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Hello,

Cayetano Santos via Guix-patches via <guix-patches@gnu.org> writes:

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

Applied with a few changes, noted below. Thank you.

> +(define-public emacs-org-board
> +  (let ((commit "1393bd46d11a81328ed4fb8471831415a3efe224")
> +        (revision "1"))
> +    (package
> +      (name "emacs-org-board")
> +      (version (git-version "20200619" revision commit))

Base version is 1138, not 20200619.

> +      (source (origin
> +                (method git-fetch)
> +                (uri (git-reference
> +                      (url "https://github.com/charlesroelli/org-board";)
> +                      (commit commit)))
> +                (sha256
> +                 (base32
> +                  "1kryrg988c3sbxyp1sdgc6xdv2iz6kiflpzn2rw4z3l4grzab53b"))))
> +      (build-system emacs-build-system)
> +      (propagated-inputs (list emacs-org emacs-ztree wget))

I moved wget to regular inputs and added a phase so the package could
find the wget executable.

> +      (home-page "https://github.com/charlesroelli/org-board";)
> +      (synopsis "Bookmarking and web archival system for Org mode")
> +      (description
> +       "Org-board uses `org-attach and `wget to provide a bookmarking and web
> +archival system directly from an Org file..")

I reworded the description.

> +      (license license:gpl3+))))

License is GPL2+.

Regards,
-- 
Nicolas Goaziou


--- End Message ---

reply via email to

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