unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#42281] [PATCH] gnu: Add python-buku.
@ 2020-07-08 21:38 Alexandros Theodotou
  2020-07-08 21:41 ` Alexandros Theodotou
  0 siblings, 1 reply; 5+ messages in thread
From: Alexandros Theodotou @ 2020-07-08 21:38 UTC (permalink / raw)
  To: 42281

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

Hi,

This patch adds python-buku, a command line bookmark manager.

Thanks,
Alex

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [bug#42281] [PATCH] gnu: Add python-buku.
  2020-07-08 21:38 [bug#42281] [PATCH] gnu: Add python-buku Alexandros Theodotou
@ 2020-07-08 21:41 ` Alexandros Theodotou
  2020-07-20 22:29   ` Marius Bakke
  0 siblings, 1 reply; 5+ messages in thread
From: Alexandros Theodotou @ 2020-07-08 21:41 UTC (permalink / raw)
  To: 42281


[-- Attachment #1.1: Type: text/plain, Size: 14 bytes --]

Forgot patch

[-- Attachment #1.2: 0001-gnu-Add-python-buku.patch --]
[-- Type: text/x-patch, Size: 1792 bytes --]

From b9dee307a164daac75874f85fe5192adc77fc505 Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Wed, 8 Jul 2020 22:37:25 +0100
Subject: [PATCH] gnu: Add python-buku.

* gnu/packages/python-xyz.scm (python-buku): New variable.
---
 gnu/packages/python-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 98db6d9e51..e4b5cde95a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20261,6 +20261,36 @@ randomness (including real life dice) and different wordlists (including
 cryptographically signed ones).")
     (license license:gpl3+)))
 
+(define-public python-buku
+  (package
+    (name "python-buku")
+    (version "4.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "buku" version))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1g1xhdskfn72xaraqzz2v8dl2iza7bzfpn17z2wdrzkq3ih7yvgg"))))
+    (build-system python-build-system)
+    (arguments
+      `(#:tests? #f)) ; needs python-mypy-extensions which fails to build
+    (propagated-inputs
+      `(("python-html5lib" ,python-html5lib)
+        ("python-urllib3" ,python-urllib3)
+        ("python-beautifulsoup4" ,python-beautifulsoup4)
+        ("python-pytest" ,python-pytest)
+        ("python-pytest-cov" ,python-pytest-cov)
+        ("python-pylint" ,python-pylint)
+        ("python-vcrpy" ,python-vcrpy)))
+    (home-page "https://github.com/jarun/buku")
+    (synopsis
+      "Bookmark manager")
+    (description
+      "buku is a powerful bookmark manager written in Python3 and SQLite3.")
+    (license license:gpl3+)))
+
 (define-public pyzo
   (package
     (name "pyzo")
-- 
2.27.0


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [bug#42281] [PATCH] gnu: Add python-buku.
  2020-07-08 21:41 ` Alexandros Theodotou
@ 2020-07-20 22:29   ` Marius Bakke
  2020-09-10 15:57     ` Alexandros Theodotou
  0 siblings, 1 reply; 5+ messages in thread
From: Marius Bakke @ 2020-07-20 22:29 UTC (permalink / raw)
  To: Alexandros Theodotou, 42281

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

Alexandros Theodotou <alex@zrythm.org> writes:

> * gnu/packages/python-xyz.scm (python-buku): New variable.

As this seems like a general-purpose tool and not a Python library, it
would be good to place this elsewhere.  I'm not sure where though, maybe
(gnu packages web)?

Also I think the 'python-' prefix can be removed.

[...]
  
> +(define-public python-buku
> +  (package
> +    (name "python-buku")
> +    (version "4.4")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (pypi-uri "buku" version))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32
> +         "1g1xhdskfn72xaraqzz2v8dl2iza7bzfpn17z2wdrzkq3ih7yvgg"))))
> +    (build-system python-build-system)
> +    (arguments
> +      `(#:tests? #f)) ; needs python-mypy-extensions which fails to build

Actually python-mypy-extensions seems to not be in Guix at all.  Can you
adjust the comment with a TODO?

> +    (propagated-inputs
> +      `(("python-html5lib" ,python-html5lib)
> +        ("python-urllib3" ,python-urllib3)
> +        ("python-beautifulsoup4" ,python-beautifulsoup4)
> +        ("python-pytest" ,python-pytest)
> +        ("python-pytest-cov" ,python-pytest-cov)
> +        ("python-pylint" ,python-pylint)
> +        ("python-vcrpy" ,python-vcrpy)))

These can probably be regular inputs, as python-build-system will
automatically 'wrap' the executables with these on PYTHONPATH.

> +    (home-page "https://github.com/jarun/buku")
> +    (synopsis
> +      "Bookmark manager")
> +    (description
> +      "buku is a powerful bookmark manager written in Python3 and SQLite3.")

It's a chore, but it would be great if you could expand on the
description.  Something along the lines of "@command{buku} can
auto-import bookmarks from your browser and present them in an
interactive command-line interface that lets you compose and update
bookmarks directly.  It can also present them in a web interface with
@command{bukuserver}."

Can you send an updated patch?

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

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

* [bug#42281] [PATCH] gnu: Add python-buku.
  2020-07-20 22:29   ` Marius Bakke
@ 2020-09-10 15:57     ` Alexandros Theodotou
  2020-12-18 14:02       ` bug#42281: " Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Alexandros Theodotou @ 2020-09-10 15:57 UTC (permalink / raw)
  To: Marius Bakke, 42281


[-- Attachment #1.1: Type: text/plain, Size: 1808 bytes --]

Hi Marius,

On Tue, 2020-07-21 at 00:29 +0200, Marius Bakke wrote:
> As this seems like a general-purpose tool and not a Python library,
> it
> would be good to place this elsewhere.  I'm not sure where though,
> maybe
> (gnu packages web)?
> 
> Also I think the 'python-' prefix can be removed.

Done.

> > +    (arguments
> > +      `(#:tests? #f)) ; needs python-mypy-extensions which fails
> > to build
> 
> Actually python-mypy-extensions seems to not be in Guix at all.  Can
> you
> adjust the comment with a TODO?

Done.

> 
> > +    (propagated-inputs
> > +      `(("python-html5lib" ,python-html5lib)
> > +        ("python-urllib3" ,python-urllib3)
> > +        ("python-beautifulsoup4" ,python-beautifulsoup4)
> > +        ("python-pytest" ,python-pytest)
> > +        ("python-pytest-cov" ,python-pytest-cov)
> > +        ("python-pylint" ,python-pylint)
> > +        ("python-vcrpy" ,python-vcrpy)))
> 
> These can probably be regular inputs, as python-build-system will
> automatically 'wrap' the executables with these on PYTHONPATH.

Done.

> 
> > +    (home-page "https://github.com/jarun/buku")
> > +    (synopsis
> > +      "Bookmark manager")
> > +    (description
> > +      "buku is a powerful bookmark manager written in Python3 and
> > SQLite3.")
> 
> It's a chore, but it would be great if you could expand on the
> description.  Something along the lines of "@command{buku} can
> auto-import bookmarks from your browser and present them in an
> interactive command-line interface that lets you compose and update
> bookmarks directly.  It can also present them in a web interface with
> @command{bukuserver}."

Added your proposed text.

> Can you send an updated patch?

Please find the new patch attached.

Thanks,
Alex

[-- Attachment #1.2: 0001-gnu-Add-buku.patch --]
[-- Type: text/x-patch, Size: 1977 bytes --]

From 217d5661c4d76f79176d947b2376dfa89e5dcc01 Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Thu, 10 Sep 2020 16:54:52 +0100
Subject: [PATCH] gnu: Add buku.

* gnu/packages/web.scm (buku): New variable.
---
 gnu/packages/web.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 2c3a007779..cf4f1ef0b1 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -7424,6 +7424,40 @@ update an existing mirrored site, and resume interrupted downloads.
 HTTrack is fully configurable, and has an integrated help system.")
     (license license:gpl3+)))
 
+(define-public buku
+  (package
+    (name "buku")
+    (version "4.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "buku" version))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1g1xhdskfn72xaraqzz2v8dl2iza7bzfpn17z2wdrzkq3ih7yvgg"))))
+    (build-system python-build-system)
+    (arguments
+      `(#:tests? #f)) ; TODO needs python-mypy-extensions
+    (inputs
+      `(("python-html5lib" ,python-html5lib)
+        ("python-urllib3" ,python-urllib3)
+        ("python-beautifulsoup4" ,python-beautifulsoup4)
+        ("python-pytest" ,python-pytest)
+        ("python-pytest-cov" ,python-pytest-cov)
+        ("python-pylint" ,python-pylint)
+        ("python-vcrpy" ,python-vcrpy)))
+    (home-page "https://github.com/jarun/buku")
+    (synopsis
+      "Bookmark manager")
+    (description
+      "buku is a powerful bookmark manager written in Python3 and SQLite3.
+@command{buku} can auto-import bookmarks from your browser and present them
+in an interactive command-line interface that lets you compose and update
+bookmarks directly.  It can also present them in a web interface with
+@command{bukuserver}.")
+    (license license:gpl3+)))
+
 (define-public anonip
   (package
     (name "anonip")
-- 
2.27.0


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* bug#42281: [PATCH] gnu: Add python-buku.
  2020-09-10 15:57     ` Alexandros Theodotou
@ 2020-12-18 14:02       ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2020-12-18 14:02 UTC (permalink / raw)
  To: Alexandros Theodotou; +Cc: 42281-done

Alexandros Theodotou <alex@zrythm.org> skribis:

> From 217d5661c4d76f79176d947b2376dfa89e5dcc01 Mon Sep 17 00:00:00 2001
> From: Alexandros Theodotou <alex@zrythm.org>
> Date: Thu, 10 Sep 2020 16:54:52 +0100
> Subject: [PATCH] gnu: Add buku.
>
> * gnu/packages/web.scm (buku): New variable.

Applied in 26f6bd0403ed20c1d26eca9d4f28a0da519a56ac, closing!

Ludo’.




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

end of thread, other threads:[~2020-12-18 14:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-08 21:38 [bug#42281] [PATCH] gnu: Add python-buku Alexandros Theodotou
2020-07-08 21:41 ` Alexandros Theodotou
2020-07-20 22:29   ` Marius Bakke
2020-09-10 15:57     ` Alexandros Theodotou
2020-12-18 14:02       ` bug#42281: " Ludovic Courtès

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