unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#50374] [PATCH 0/1] Add org-roam-extensions package
@ 2021-09-04 16:12 Collin J. Doering
  2021-09-04 16:19 ` [bug#50374] [PATCH 1/1] gnu: Add emacs-org-roam-extensions Collin J. Doering
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Collin J. Doering @ 2021-09-04 16:12 UTC (permalink / raw)
  To: 50374

Instead of the implementation put forth in
https://issues.guix.gnu.org/50333 this change includes org-roam
extensions as a separate package.

Collin J. Doering (1):
  gnu: Add emacs-org-roam-extensions

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

-- 
2.33.0


-- 
Collin J. Doering

http://rekahsoft.ca
http://blog.rekahsoft.ca
http://git.rekahsoft.ca




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

* [bug#50374] [PATCH 1/1] gnu: Add emacs-org-roam-extensions
  2021-09-04 16:12 [bug#50374] [PATCH 0/1] Add org-roam-extensions package Collin J. Doering
@ 2021-09-04 16:19 ` Collin J. Doering
  2021-09-12 16:19 ` [bug#50374] (no subject) Adolfo De Unánue
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Collin J. Doering @ 2021-09-04 16:19 UTC (permalink / raw)
  To: 50374

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index f04a0225b3..830c642492 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28264,6 +28264,25 @@ as a plug-and-play solution for anyone already using Org mode for their
 personal wiki.")
        (license license:gpl3+)))
 
+(define-public emacs-org-roam-extensions
+  (package
+    (inherit emacs-org-roam)
+    (name "emacs-org-roam-extensions")
+    (propagated-inputs
+     `(,@(package-propagated-inputs emacs-org-roam)
+       ("emacs-org-roam" ,emacs-org-roam)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'enter-subdirectory
+           (lambda _ (chdir "extensions") #t))
+         (add-before 'install-license-files 'leave-subdirectory
+           (lambda _ (chdir "..") #t)))))
+    (synopsis "Extensions for Org-Roam")
+    (description "Emacs Org Roam Extensions include utilities for daily note
+taking, the org-roam protocol, graphing note relationships and providing id link
+overlays.")))
+
 (define-public emacs-org-roam-bibtex
   (package
     (name "emacs-org-roam-bibtex")
-- 
2.33.0


-- 
Collin J. Doering

http://rekahsoft.ca
http://blog.rekahsoft.ca
http://git.rekahsoft.ca




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

* [bug#50374] (no subject)
  2021-09-04 16:12 [bug#50374] [PATCH 0/1] Add org-roam-extensions package Collin J. Doering
  2021-09-04 16:19 ` [bug#50374] [PATCH 1/1] gnu: Add emacs-org-roam-extensions Collin J. Doering
@ 2021-09-12 16:19 ` Adolfo De Unánue
  2021-09-16 13:38   ` Collin J. Doering
  2021-09-14 12:30 ` [bug#50374] [PATCH 0/1] Add org-roam-extensions package zimoun
  2022-01-16 23:31 ` bug#50374: " Nicolas Goaziou
  3 siblings, 1 reply; 7+ messages in thread
From: Adolfo De Unánue @ 2021-09-12 16:19 UTC (permalink / raw)
  To: 50374


Hi

I am the author of the patch https://issues.guix.gnu.org/50333 (my 
first
patch, so I am a newbie on this).

Could you help me to understand why your proposal is a better 
solution?
I want to learn how to approach to this matters in the future.

My rationale is that the extensions folder *is* part of org-roam, 
that's
why I *added* them to the original package.

Also, Do we need to do something in order to get this patch (or 
mine)
approved?
(again, just asking because this workflow is new for me)

Thanks in advance for your time

--
- A




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

* [bug#50374] [PATCH 0/1] Add org-roam-extensions package
  2021-09-04 16:12 [bug#50374] [PATCH 0/1] Add org-roam-extensions package Collin J. Doering
  2021-09-04 16:19 ` [bug#50374] [PATCH 1/1] gnu: Add emacs-org-roam-extensions Collin J. Doering
  2021-09-12 16:19 ` [bug#50374] (no subject) Adolfo De Unánue
@ 2021-09-14 12:30 ` zimoun
  2021-09-16 13:48   ` Collin J. Doering
  2022-01-16 23:31 ` bug#50374: " Nicolas Goaziou
  3 siblings, 1 reply; 7+ messages in thread
From: zimoun @ 2021-09-14 12:30 UTC (permalink / raw)
  To: Collin J. Doering; +Cc: 50374

Hi,

On Sat, 04 Sep 2021 at 12:12, "Collin J. Doering" <collin@rekahsoft.ca> wrote:
> Instead of the implementation put forth in
> https://issues.guix.gnu.org/50333 this change includes org-roam
> extensions as a separate package.

Naive question, why should the extensions be distributed as a separate
package?  Well, I am not an Org-Roam user… having the extensions along
with the package emacs-org-roam seem the best; other said, why an
Org-Roam user would be annoyed to have these extensions and not use
them?

All the best,
simon




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

* [bug#50374] (no subject)
  2021-09-12 16:19 ` [bug#50374] (no subject) Adolfo De Unánue
@ 2021-09-16 13:38   ` Collin J. Doering
  0 siblings, 0 replies; 7+ messages in thread
From: Collin J. Doering @ 2021-09-16 13:38 UTC (permalink / raw)
  To: Adolfo De Unánue; +Cc: 50374

Hi Adolfo,

I am not a guix expert either and am relatively new to the project. I
actually asked about this topic on guix IRC, where folks there suggested
splitting it into another package. I see very little difference between
including the org-roam-extensions as a separate package output, or as a
standalone package. I feel that having it as an additional output is
more "pure", but found that many packages already use a standalone
package for extensions, and I found that doing it in this way made both
packages themselves easier to define. You can see this for yourself with
a query like this `guix package -s '.*-extensions$' | recsel -CP name`.

Hope this helps, and kind regards!

On 12 Sep 2021 at 11:19, Adolfo De Unánue <adolfo@unanue.mx> wrote:

> Hi
>
> I am the author of the patch https://issues.guix.gnu.org/50333 (my first
> patch, so I am a newbie on this).
>
> Could you help me to understand why your proposal is a better solution?
> I want to learn how to approach to this matters in the future.
>
> My rationale is that the extensions folder *is* part of org-roam, that's
> why I *added* them to the original package.
>
> Also, Do we need to do something in order to get this patch (or mine)
> approved?
> (again, just asking because this workflow is new for me)
>
> Thanks in advance for your time


-- 
Collin J. Doering

http://rekahsoft.ca
http://blog.rekahsoft.ca
http://git.rekahsoft.ca




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

* [bug#50374] [PATCH 0/1] Add org-roam-extensions package
  2021-09-14 12:30 ` [bug#50374] [PATCH 0/1] Add org-roam-extensions package zimoun
@ 2021-09-16 13:48   ` Collin J. Doering
  0 siblings, 0 replies; 7+ messages in thread
From: Collin J. Doering @ 2021-09-16 13:48 UTC (permalink / raw)
  To: zimoun; +Cc: 50374

Hi Zimoun,

Thanks for taking the time to look at this patch.

On 14 Sep 2021 at 14:30, zimoun <zimon.toutoune@gmail.com> wrote:

> Hi,
>
> On Sat, 04 Sep 2021 at 12:12, "Collin J. Doering" <collin@rekahsoft.ca> wrote:
>> Instead of the implementation put forth in
>> https://issues.guix.gnu.org/50333 this change includes org-roam
>> extensions as a separate package.
>
> Naive question, why should the extensions be distributed as a separate
> package?

They are not required for the use of org-roam. They could also be
distributed as an additional output on the org-roam package itself.
Happy to re-adjust if that's preferred.

> Well, I am not an Org-Roam user… having the extensions along with the
> package emacs-org-roam seem the best; other said, why an Org-Roam user
> would be annoyed to have these extensions and not use them?

I don't think they need to be included directly in the main output of
the emacs-org-roam package as not all org-roam users will leverage them.
However I can't think of any reasons why a org-roam user would be
annoyed that they are included (other then including software that is
not used, which is not necessarily favorable).

Please let me know your preference between the following:

1. org-roam extensions as part of a separate package (this is what is
already presented in this patch set). 
2. Extensions as a separate `extensions` output on the emacs-org-roam package
3. Build the extensions directly into the primary output of the
emacs-org-roam package (this is already done in https://issues.guix.gnu.org/50333)

> All the best,

You too!

-- 
Collin J. Doering

http://rekahsoft.ca
http://blog.rekahsoft.ca
http://git.rekahsoft.ca




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

* bug#50374: [PATCH 0/1] Add org-roam-extensions package
  2021-09-04 16:12 [bug#50374] [PATCH 0/1] Add org-roam-extensions package Collin J. Doering
                   ` (2 preceding siblings ...)
  2021-09-14 12:30 ` [bug#50374] [PATCH 0/1] Add org-roam-extensions package zimoun
@ 2022-01-16 23:31 ` Nicolas Goaziou
  3 siblings, 0 replies; 7+ messages in thread
From: Nicolas Goaziou @ 2022-01-16 23:31 UTC (permalink / raw)
  To: Collin J. Doering; +Cc: 50374-done

Hello,

"Collin J. Doering" <collin@rekahsoft.ca> writes:

> Instead of the implementation put forth in
> https://issues.guix.gnu.org/50333 this change includes org-roam
> extensions as a separate package.

Thank you for the patch.

However, extensions for Org Roam are installed since bug#50287.

Therefore, I'm closing this bug report. Feel free to re-open it if you
think something is missing.

Regards,
-- 
Nicolas Goaziou




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

end of thread, other threads:[~2022-01-16 23:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-04 16:12 [bug#50374] [PATCH 0/1] Add org-roam-extensions package Collin J. Doering
2021-09-04 16:19 ` [bug#50374] [PATCH 1/1] gnu: Add emacs-org-roam-extensions Collin J. Doering
2021-09-12 16:19 ` [bug#50374] (no subject) Adolfo De Unánue
2021-09-16 13:38   ` Collin J. Doering
2021-09-14 12:30 ` [bug#50374] [PATCH 0/1] Add org-roam-extensions package zimoun
2021-09-16 13:48   ` Collin J. Doering
2022-01-16 23:31 ` bug#50374: " 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).