emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#43434: closed ([PATCH 1/2] gnu: Add python-liblarch.)


From: GNU bug Tracking System
Subject: bug#43434: closed ([PATCH 1/2] gnu: Add python-liblarch.)
Date: Thu, 24 Sep 2020 15:32:02 +0000

Your message dated Thu, 24 Sep 2020 17:31:01 +0200
with message-id <87lfgz6vka.fsf@gnu.org>
and subject line Re: [bug#43434] [PATCH 1/2] gnu: Add python-liblarch.
has caused the debbugs.gnu.org bug report #43434,
regarding [PATCH 1/2] gnu: Add python-liblarch.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
43434: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=43434
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH 1/2] gnu: Add python-liblarch. Date: Tue, 15 Sep 2020 18:06:30 -0300
* gnu/packages/gnome.scm (python-liblarch): New variable.
---
 gnu/packages/gnome.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 9b72e6a7ab..81ac0cfabf 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -2501,6 +2501,47 @@ on the GNOME Desktop with a single simple application.")
 for settings shared by various components of the GNOME desktop.")
     (license license:lgpl2.1+)))
 
+(define-public python-liblarch
+  (package
+    (name "python-liblarch")
+    (version "3.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/getting-things-gnome/liblarch";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0xv2mfvyzipbny3iz8vll77wsqxfwh28xj6bj1ff0l452waph45m"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'start-xserver
+           (lambda* (#:key inputs #:allow-other-keys)
+             (system (format #f "~a/bin/Xvfb :1 &"
+                             (assoc-ref inputs "xorg-server")))
+             (setenv "DISPLAY" ":1")
+             #t)))))
+    (native-inputs
+     `(("xorg-server" ,xorg-server-for-tests)))
+    (inputs
+     `(("gtk+" ,gtk+)))
+    (propagated-inputs
+     `(("python-pygobject" ,python-pygobject)))
+    (home-page "https://wiki.gnome.org/Projects/liblarch";)
+    (synopsis "Library to easily handle complex data structures")
+    (description
+     "Liblarch is a Python library built to easily handle data structures such
+as lists, trees and acyclic graphs.  There's also a GTK binding that will
+allow you to use your data structure in a @code{Gtk.Treeview}.
+
+Liblarch support multiple views of one data structure and complex filtering.
+That way, you have a clear separation between your data themselves (Model)
+and how they are displayed (View).")
+    (license license:lgpl3+)))
+
 (define-public icon-naming-utils
   (package
     (name "icon-naming-utils")
-- 
2.20.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#43434] [PATCH 1/2] gnu: Add python-liblarch. Date: Thu, 24 Sep 2020 17:31:01 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux)
Hi,

Vinicius Monego <monego@posteo.net> skribis:

> * gnu/packages/gnome.scm (python-liblarch): New variable.

[...]

> * gnu/packages/gnome.scm (gtg): New variable.

Applied both, thanks!

Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]