unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#57209] Update emacs-citar, add emacs-citar-org-roam.
@ 2022-08-14 16:03 Nicolas Graves via Guix-patches via
  2022-08-14 16:07 ` [bug#57209] [PATCH 1/2] gnu: emacs-citar: Update to 1.0 Nicolas Graves via Guix-patches via
  0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2022-08-14 16:03 UTC (permalink / raw)
  To: 57209


Small series of patches to update emacs-citar and add
emacs-citar-org-roam (which needs the update).

-- 
Best regards,
Nicolas Graves




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

* [bug#57209] [PATCH 1/2] gnu: emacs-citar: Update to 1.0.
  2022-08-14 16:03 [bug#57209] Update emacs-citar, add emacs-citar-org-roam Nicolas Graves via Guix-patches via
@ 2022-08-14 16:07 ` Nicolas Graves via Guix-patches via
  2022-08-14 16:07   ` [bug#57209] [PATCH 2/2] gnu: Add emacs-citar-org-roam Nicolas Graves via Guix-patches via
  0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2022-08-14 16:07 UTC (permalink / raw)
  To: 57209; +Cc: Nicolas Graves

* gnu/packages/emacs-xyz.scm (emacs-citar): Update to 1.0.
---
 gnu/packages/emacs-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3c1d322db3..d80c8116b7 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -18942,7 +18942,7 @@ (define-public emacs-biblio
 (define-public emacs-citar
   (package
     (name "emacs-citar")
-    (version "0.9.7")
+    (version "1.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -18951,7 +18951,7 @@ (define-public emacs-citar
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1f49l1zmy4fnz75b0m2rav5jm8yp6hry44bv9xasiszyy3bn0hv8"))))
+                "1n69lkp7298gasm9hlbx9nhgp9ggh8w8ffyvi1rmbj96lcnpsyi9"))))
     (build-system emacs-build-system)
     (arguments
      `(#:phases (modify-phases %standard-phases
-- 
2.37.1





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

* [bug#57209] [PATCH 2/2] gnu: Add emacs-citar-org-roam.
  2022-08-14 16:07 ` [bug#57209] [PATCH 1/2] gnu: emacs-citar: Update to 1.0 Nicolas Graves via Guix-patches via
@ 2022-08-14 16:07   ` Nicolas Graves via Guix-patches via
  2022-08-15  8:27     ` Nicolas Graves via Guix-patches via
  2022-08-22  7:43     ` Andrew Tropin
  0 siblings, 2 replies; 5+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2022-08-14 16:07 UTC (permalink / raw)
  To: 57209; +Cc: Nicolas Graves

* gnu/packages/emacs-xyz.scm (emacs-citar-org-roam): New variable.
---
 gnu/packages/emacs-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d80c8116b7..4fad5b1270 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -18980,6 +18980,36 @@ (define-public emacs-citar
 citations.")
     (license license:gpl3+)))
 
+(define-public emacs-citar-org-roam
+  (package
+    (name "emacs-citar-org-roam")
+    (version "0.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/emacs-citar/citar-org-roam")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1ldfs7g7ixnrwj23draiph4vy6xq7qgw18vhi7vbw6wvkh9fcv9r"))))
+    (build-system emacs-build-system)
+    (propagated-inputs (list emacs-org-roam emacs-citar))
+    (home-page "https://github.com/emacs-citar/citar-org-roam")
+    (synopsis "An Emacs pacakge to provide tighter Citar and Org-Roam integration")
+    (description "\
+Out-of-box, Citar provides default support for file-per-note bibliographic
+notes that are compatible with Org-Roam v2. This package integrates directly
+with the Org-Roam database, and provides the following additional features to
+Citar note support:
+@itemize
+@item multiple references per note
+@item multiple reference notes per file
+@item ability to query note citations by reference
+@item “live” updating of Citar UI for presence of notes
+@end itemize")
+    (license license:gpl3)))
+
 (define-public emacs-helm-bibtex
   (let ((commit "aa775340ba691d2322948bfdc6a88158568a1399")
         (revision "3"))
-- 
2.37.1





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

* [bug#57209] [PATCH 2/2] gnu: Add emacs-citar-org-roam.
  2022-08-14 16:07   ` [bug#57209] [PATCH 2/2] gnu: Add emacs-citar-org-roam Nicolas Graves via Guix-patches via
@ 2022-08-15  8:27     ` Nicolas Graves via Guix-patches via
  2022-08-22  7:43     ` Andrew Tropin
  1 sibling, 0 replies; 5+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2022-08-15  8:27 UTC (permalink / raw)
  To: 57209; +Cc: mail


Only the second patch is useful now that Nicolas Goaziou has updated
emacs-citar. 

-- 
Best regards,
Nicolas Graves




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

* [bug#57209] [PATCH 2/2] gnu: Add emacs-citar-org-roam.
  2022-08-14 16:07   ` [bug#57209] [PATCH 2/2] gnu: Add emacs-citar-org-roam Nicolas Graves via Guix-patches via
  2022-08-15  8:27     ` Nicolas Graves via Guix-patches via
@ 2022-08-22  7:43     ` Andrew Tropin
  1 sibling, 0 replies; 5+ messages in thread
From: Andrew Tropin @ 2022-08-22  7:43 UTC (permalink / raw)
  To: 57209; +Cc: Nicolas Graves

[-- Attachment #1: Type: text/plain, Size: 2206 bytes --]

On 2022-08-14 18:07, Nicolas Graves via Guix-patches via wrote:

> * gnu/packages/emacs-xyz.scm (emacs-citar-org-roam): New variable.
> ---
>  gnu/packages/emacs-xyz.scm | 30 ++++++++++++++++++++++++++++++
>  1 file changed, 30 insertions(+)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index d80c8116b7..4fad5b1270 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -18980,6 +18980,36 @@ (define-public emacs-citar
>  citations.")
>      (license license:gpl3+)))
>  
> +(define-public emacs-citar-org-roam
> +  (package
> +    (name "emacs-citar-org-roam")
> +    (version "0.3")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/emacs-citar/citar-org-roam")
> +             (commit (string-append "v" version))))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32 "1ldfs7g7ixnrwj23draiph4vy6xq7qgw18vhi7vbw6wvkh9fcv9r"))))
> +    (build-system emacs-build-system)
> +    (propagated-inputs (list emacs-org-roam emacs-citar))
> +    (home-page "https://github.com/emacs-citar/citar-org-roam")
> +    (synopsis "An Emacs pacakge to provide tighter Citar and Org-Roam integration")
> +    (description "\
> +Out-of-box, Citar provides default support for file-per-note bibliographic
> +notes that are compatible with Org-Roam v2. This package integrates directly
> +with the Org-Roam database, and provides the following additional features to
> +Citar note support:
> +@itemize
> +@item multiple references per note
> +@item multiple reference notes per file
> +@item ability to query note citations by reference
> +@item “live” updating of Citar UI for presence of notes
> +@end itemize")
> +    (license license:gpl3)))
> +
>  (define-public emacs-helm-bibtex
>    (let ((commit "aa775340ba691d2322948bfdc6a88158568a1399")
>          (revision "3"))

Removed article in synopsis and added doublespaces between sentences,
changed quotes to latex quotes in description, pushed as
114c9ea22fb3f8de466cebdfda133db735d4481e, thank you!

-- 
Best regards,
Andrew Tropin

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

end of thread, other threads:[~2022-08-22  7:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-14 16:03 [bug#57209] Update emacs-citar, add emacs-citar-org-roam Nicolas Graves via Guix-patches via
2022-08-14 16:07 ` [bug#57209] [PATCH 1/2] gnu: emacs-citar: Update to 1.0 Nicolas Graves via Guix-patches via
2022-08-14 16:07   ` [bug#57209] [PATCH 2/2] gnu: Add emacs-citar-org-roam Nicolas Graves via Guix-patches via
2022-08-15  8:27     ` Nicolas Graves via Guix-patches via
2022-08-22  7:43     ` Andrew Tropin

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).