* [bug#59649] [PATCH] gnu: Add emacs-ibrowse.
@ 2022-11-28 8:07 Nicolas Graves via Guix-patches via
2022-11-28 11:12 ` Andrew Tropin
2023-01-05 21:21 ` bug#59649: " Ludovic Courtès
0 siblings, 2 replies; 5+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2022-11-28 8:07 UTC (permalink / raw)
To: 59649; +Cc: ngraves, andrew
* gnu/packages/emacs-xyz.scm (emacs-ibrowse): 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 35d6d87030..a680b29f27 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -21515,6 +21515,30 @@ (define-public emacs-mbsync
within Emacs.")
(license license:gpl3+))))
+(define-public emacs-ibrowse
+ (let* ((commit "7e4a2987fc63861514b441f65db2008da5949ef2")
+ (revision "0"))
+ (package
+ (name "emacs-ibrowse")
+ (version (git-version "0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~ngraves/ibrowse.el")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "15661xgjxdxk1p0g87dsas9jd9v7g64y6n9irlbyzww09gjsjwwd"))))
+ (build-system emacs-build-system)
+ (inputs (list sqlite))
+ (propagated-inputs (list emacs-embark emacs-marginalia))
+ (home-page "https://git.sr.ht/~ngraves/ibrowse.el")
+ (synopsis "Interact with your browser from emacs")
+ (description "This package provides some commands to act on the browser
+tabs, history, or bookmarks from Emacs.")
+ (license license:gpl3+))))
+
(define-public emacs-ibuffer-projectile
(package
(name "emacs-ibuffer-projectile")
--
2.38.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#59649] [PATCH] gnu: Add emacs-ibrowse.
2022-11-28 8:07 [bug#59649] [PATCH] gnu: Add emacs-ibrowse Nicolas Graves via Guix-patches via
@ 2022-11-28 11:12 ` Andrew Tropin
2023-01-05 21:21 ` bug#59649: " Ludovic Courtès
1 sibling, 0 replies; 5+ messages in thread
From: Andrew Tropin @ 2022-11-28 11:12 UTC (permalink / raw)
To: ngraves, 59649; +Cc: ngraves
[-- Attachment #1: Type: text/plain, Size: 1759 bytes --]
On 2022-11-28 09:07, Nicolas Graves wrote:
> * gnu/packages/emacs-xyz.scm (emacs-ibrowse): 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 35d6d87030..a680b29f27 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -21515,6 +21515,30 @@ (define-public emacs-mbsync
> within Emacs.")
> (license license:gpl3+))))
>
> +(define-public emacs-ibrowse
> + (let* ((commit "7e4a2987fc63861514b441f65db2008da5949ef2")
> + (revision "0"))
> + (package
> + (name "emacs-ibrowse")
> + (version (git-version "0.0" revision commit))
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://git.sr.ht/~ngraves/ibrowse.el")
> + (commit commit)))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32 "15661xgjxdxk1p0g87dsas9jd9v7g64y6n9irlbyzww09gjsjwwd"))))
> + (build-system emacs-build-system)
> + (inputs (list sqlite))
> + (propagated-inputs (list emacs-embark emacs-marginalia))
> + (home-page "https://git.sr.ht/~ngraves/ibrowse.el")
> + (synopsis "Interact with your browser from emacs")
> + (description "This package provides some commands to act on the browser
> +tabs, history, or bookmarks from Emacs.")
> + (license license:gpl3+))))
> +
> (define-public emacs-ibuffer-projectile
> (package
> (name "emacs-ibuffer-projectile")
Could you add a version tag and use it in package definition, please?
--
Best regards,
Andrew Tropin
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#59649: [PATCH] gnu: Add emacs-ibrowse.
2022-11-28 8:07 [bug#59649] [PATCH] gnu: Add emacs-ibrowse Nicolas Graves via Guix-patches via
2022-11-28 11:12 ` Andrew Tropin
@ 2023-01-05 21:21 ` Ludovic Courtès
2023-01-06 8:27 ` [bug#59649] " Andrew Tropin
1 sibling, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2023-01-05 21:21 UTC (permalink / raw)
To: Nicolas Graves; +Cc: 59649-done, andrew
Hi,
Nicolas Graves <ngraves@ngraves.fr> skribis:
> * gnu/packages/emacs-xyz.scm (emacs-ibrowse): New variable.
Not sure what Andrew had in mind regarding a “version tag” (seems
alright to me, no?) so I went ahead and finally applied it.
Thanks!
Ludo’.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#59649] [PATCH] gnu: Add emacs-ibrowse.
2023-01-05 21:21 ` bug#59649: " Ludovic Courtès
@ 2023-01-06 8:27 ` Andrew Tropin
2023-01-06 23:04 ` Ludovic Courtès
0 siblings, 1 reply; 5+ messages in thread
From: Andrew Tropin @ 2023-01-06 8:27 UTC (permalink / raw)
To: Ludovic Courtès, Nicolas Graves; +Cc: 59649-done
[-- Attachment #1: Type: text/plain, Size: 522 bytes --]
On 2023-01-05 22:21, Ludovic Courtès wrote:
> Hi,
>
> Nicolas Graves <ngraves@ngraves.fr> skribis:
>
>> * gnu/packages/emacs-xyz.scm (emacs-ibrowse): New variable.
>
> Not sure what Andrew had in mind regarding a “version tag” (seems
> alright to me, no?) so I went ahead and finally applied it.
Nicolas is an author of the ibrowse and has a write access to the repo,
so I asked to add a tag, so we can reference it in guix package
definition instead of commit =)
--
Best regards,
Andrew Tropin
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#59649] [PATCH] gnu: Add emacs-ibrowse.
2023-01-06 8:27 ` [bug#59649] " Andrew Tropin
@ 2023-01-06 23:04 ` Ludovic Courtès
0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2023-01-06 23:04 UTC (permalink / raw)
To: Andrew Tropin; +Cc: Nicolas Graves, 59649-done
Andrew Tropin <andrew@trop.in> skribis:
> On 2023-01-05 22:21, Ludovic Courtès wrote:
>
>> Hi,
>>
>> Nicolas Graves <ngraves@ngraves.fr> skribis:
>>
>>> * gnu/packages/emacs-xyz.scm (emacs-ibrowse): New variable.
>>
>> Not sure what Andrew had in mind regarding a “version tag” (seems
>> alright to me, no?) so I went ahead and finally applied it.
>
> Nicolas is an author of the ibrowse and has a write access to the repo,
> so I asked to add a tag, so we can reference it in guix package
> definition instead of commit =)
Ooh, I didn’t know that, sorry!
Ludo’.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-01-06 23:05 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-28 8:07 [bug#59649] [PATCH] gnu: Add emacs-ibrowse Nicolas Graves via Guix-patches via
2022-11-28 11:12 ` Andrew Tropin
2023-01-05 21:21 ` bug#59649: " Ludovic Courtès
2023-01-06 8:27 ` [bug#59649] " Andrew Tropin
2023-01-06 23:04 ` Ludovic Courtès
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.