unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#70268] [PATCH] gnu: Add python-vdf.
@ 2024-04-07 21:49 Giacomo Leidi via Guix-patches via
  2024-04-17  9:34 ` [bug#70268] [PATCH v2 0/1] " Steve George
  0 siblings, 1 reply; 4+ messages in thread
From: Giacomo Leidi via Guix-patches via @ 2024-04-07 21:49 UTC (permalink / raw)
  To: 70268
  Cc: Giacomo Leidi, Lars-Dominik Braun, Marius Bakke, Munyoki Kilyungi,
	Sharlatan Hellseher, Tanguy Le Carrour, jgart

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

Change-Id: Ie8a14292b9c9937d22f011ac078562e81abd6b36
---
 gnu/packages/python-xyz.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0ac9d669d3..2326aa4323 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6761,6 +6761,23 @@ (define-public python-pygments
      "Pygments is a syntax highlighting package written in Python.")
     (license license:bsd-2)))
 
+(define-public python-vdf
+  (package
+    (name "python-vdf")
+    (version "3.4")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "vdf" version))
+              (sha256
+               (base32
+                "1bz2gn04pl6rj2mawlzlirz1ygg4rdypq0pxbyg018873vs1jm7x"))))
+    (build-system pyproject-build-system)
+    (home-page "https://github.com/ValvePython/vdf")
+    (synopsis "Work with Valve's VDF text format")
+    (description "This packages provides @code{python-vdf}, a library for
+working with Valve's VDF text format.")
+    (license license:expat)))
+
 (define-public python-pygments-github-lexers
   (package
     (name "python-pygments-github-lexers")

base-commit: 69951a61a1d8f1f2135ea2dc836738be282b97bc
-- 
2.41.0





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

* [bug#70268] [PATCH v2 0/1] RE: Add python-vdf
  2024-04-07 21:49 [bug#70268] [PATCH] gnu: Add python-vdf Giacomo Leidi via Guix-patches via
@ 2024-04-17  9:34 ` Steve George
  2024-04-17  9:34   ` [bug#70268] [PATCH v2 1/1] gnu: " Steve George
  0 siblings, 1 reply; 4+ messages in thread
From: Steve George @ 2024-04-17  9:34 UTC (permalink / raw)
  To: 70268; +Cc: Steve George

Review:
 * Was failing QA due to typo - running 'guix lint' caught it
 * submission: checked commit format, synopsis and description
 * submission: checked license, patch applies cleanly
 * functionality: test installed, python import works
 * code: minor reformat; guix lint is clean
 * added: Reviewed-by commit trailer
 * re-roll to trigger QA rebuild

Giacomo Leidi via Guix-patches via (1):
  gnu: Add python-vdf.

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


base-commit: b47ae1ecc43baaf726701ab2d2f810ecfaa75428
-- 
2.41.0





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

* [bug#70268] [PATCH v2 1/1] gnu: Add python-vdf.
  2024-04-17  9:34 ` [bug#70268] [PATCH v2 0/1] " Steve George
@ 2024-04-17  9:34   ` Steve George
  2024-05-12 18:21     ` bug#70268: " Christopher Baines
  0 siblings, 1 reply; 4+ messages in thread
From: Steve George @ 2024-04-17  9:34 UTC (permalink / raw)
  To: 70268; +Cc: steve

From: Giacomo Leidi via Guix-patches via <guix-patches@gnu.org>

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

Reviewed-by: Steve George <steve@futurile.net>

Change-Id: Ie8a14292b9c9937d22f011ac078562e81abd6b36
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index bac90b1e07..1637f2aa8e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6834,6 +6834,24 @@ (define-public python-pygments
      "Pygments is a syntax highlighting package written in Python.")
     (license license:bsd-2)))
 
+(define-public python-vdf
+  (package
+    (name "python-vdf")
+    (version "3.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "vdf" version))
+       (sha256
+        (base32
+         "1bz2gn04pl6rj2mawlzlirz1ygg4rdypq0pxbyg018873vs1jm7x"))))
+    (build-system pyproject-build-system)
+    (home-page "https://github.com/ValvePython/vdf")
+    (synopsis "Work with Valve's VDF text format")
+    (description "This package provides @code{python-vdf}, a library for
+working with Valve's VDF text format.")
+    (license license:expat)))
+
 (define-public python-pygments-github-lexers
   (package
     (name "python-pygments-github-lexers")
-- 
2.41.0





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

* bug#70268: [PATCH v2 1/1] gnu: Add python-vdf.
  2024-04-17  9:34   ` [bug#70268] [PATCH v2 1/1] gnu: " Steve George
@ 2024-05-12 18:21     ` Christopher Baines
  0 siblings, 0 replies; 4+ messages in thread
From: Christopher Baines @ 2024-05-12 18:21 UTC (permalink / raw)
  To: Giacomo Leidi, Steve George; +Cc: 70268-done

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

Steve George <steve@futurile.net> writes:

> From: Giacomo Leidi via Guix-patches via <guix-patches@gnu.org>
>
> * gnu/packages/python-xyz.scm (python-vdf): New variable.
>
> Reviewed-by: Steve George <steve@futurile.net>
>
> Change-Id: Ie8a14292b9c9937d22f011ac078562e81abd6b36
> ---
>  gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)

Thanks both, I've pushed this to master as
ca571f4259df82500c687effcdb7d11904a52e6c.

Chris

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

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

end of thread, other threads:[~2024-05-12 18:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-07 21:49 [bug#70268] [PATCH] gnu: Add python-vdf Giacomo Leidi via Guix-patches via
2024-04-17  9:34 ` [bug#70268] [PATCH v2 0/1] " Steve George
2024-04-17  9:34   ` [bug#70268] [PATCH v2 1/1] gnu: " Steve George
2024-05-12 18:21     ` bug#70268: " Christopher Baines

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