unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#51272] Package qtile
@ 2021-10-18 17:47 Stephen Paul Weber
  2021-10-18 17:48 ` [bug#51272] [PATCH 1/4] gnu: python-xcffib: Upgrade to 0.11.1 Stephen Paul Weber
  0 siblings, 1 reply; 6+ messages in thread
From: Stephen Paul Weber @ 2021-10-18 17:47 UTC (permalink / raw)
  To: 51272

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

qtile is an extensible tiling window manager written in Python.  This patch
series packages it and some dependencies.

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

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

* [bug#51272] [PATCH 1/4] gnu: python-xcffib: Upgrade to 0.11.1.
  2021-10-18 17:47 [bug#51272] Package qtile Stephen Paul Weber
@ 2021-10-18 17:48 ` Stephen Paul Weber
  2021-10-18 17:48   ` [bug#51272] [PATCH 2/4] gnu: Add python-dbus-next Stephen Paul Weber
                     ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Stephen Paul Weber @ 2021-10-18 17:48 UTC (permalink / raw)
  To: 51272; +Cc: Stephen Paul Weber

Required for qtile.

* gnu/packages/python-xyz.scm (python-xcffib): Upgrade to 0.11.1.
---
 gnu/packages/python-xyz.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d7df77c577..6db446efac 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7283,14 +7283,14 @@ any machine that can run Python.")
 (define-public python-xcffib
   (package
     (name "python-xcffib")
-    (version "0.6.0")
+    (version "0.11.1")
     (source
      (origin
       (method url-fetch)
       (uri (pypi-uri "xcffib" version))
       (sha256
        (base32
-        "04k91yxyb3pgc5lvxmivh8w71yjrap2g57yk3s73x4rm4nvjq51n"))))
+        "0nkglsm9nbhv238iagmmsjcz6lf1yfdvp5kmspphdj385vz9r50j"))))
     (build-system python-build-system)
     (inputs
      `(("libxcb" ,libxcb)))
@@ -7306,7 +7306,8 @@ any machine that can run Python.")
            (lambda* (#:key inputs #:allow-other-keys)
              (let ((libxcb (assoc-ref inputs "libxcb")))
                (substitute* '("xcffib/__init__.py")
-                 (("^soname = \"") (string-append "soname = \"" libxcb "/lib/")))
+                 (("soname = ctypes.util.find_library.*xcb.*")
+                  (string-append "soname = \"" libxcb "/lib/libxcb.so\"\n")))
                #t)))
          (add-after 'install 'install-doc
            (lambda* (#:key outputs #:allow-other-keys)
-- 
2.30.2




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

* [bug#51272] [PATCH 2/4] gnu: Add python-dbus-next.
  2021-10-18 17:48 ` [bug#51272] [PATCH 1/4] gnu: python-xcffib: Upgrade to 0.11.1 Stephen Paul Weber
@ 2021-10-18 17:48   ` Stephen Paul Weber
  2021-10-18 17:48   ` [bug#51272] [PATCH 3/4] gnu: Add python-iwlib Stephen Paul Weber
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Stephen Paul Weber @ 2021-10-18 17:48 UTC (permalink / raw)
  To: 51272; +Cc: Stephen Paul Weber

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6db446efac..4135812f11 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8839,6 +8839,31 @@ implementation of D-Bus.")
                               (package-inputs python-dbus)
                               equal?)))))
 
+(define-public python-dbus-next
+  (package
+    (name "python-dbus-next")
+    (version "0.2.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/altdesktop/python-dbus-next")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1ahaz52kny1p9xxv6phvk4iq56rg8li390wywlxf2yslaij1188h"))))
+    (build-system python-build-system)
+    (native-inputs
+      `(("python-pytest" ,python-pytest)))
+    (home-page "https://github.com/altdesktop/python-dbus-next")
+    (synopsis "Zero-dependency DBus library for Python with asyncio support")
+    (description
+      "Python library for DBus that aims to be a fully featured high level
+library primarily geared towards integration of applications into desktop and
+mobile environments.")
+    (license license:expat)))
+
 (define-public python-notify2
   (package
     (name "python-notify2")
-- 
2.30.2




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

* [bug#51272] [PATCH 3/4] gnu: Add python-iwlib.
  2021-10-18 17:48 ` [bug#51272] [PATCH 1/4] gnu: python-xcffib: Upgrade to 0.11.1 Stephen Paul Weber
  2021-10-18 17:48   ` [bug#51272] [PATCH 2/4] gnu: Add python-dbus-next Stephen Paul Weber
@ 2021-10-18 17:48   ` Stephen Paul Weber
  2021-10-18 17:48   ` [bug#51272] [PATCH 4/4] gnu: Add qtile Stephen Paul Weber
  2021-11-23  8:59   ` bug#51272: Package qtile Ludovic Courtès
  3 siblings, 0 replies; 6+ messages in thread
From: Stephen Paul Weber @ 2021-10-18 17:48 UTC (permalink / raw)
  To: 51272; +Cc: Stephen Paul Weber

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4135812f11..238e6d2b26 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27467,3 +27467,22 @@ and powerful way to handle real-world data, featuring:
      "This package provides the @code{python-box} Python module.
 It implements advanced Python dictionaries with dot notation access.")
     (license license:expat)))
+
+(define-public python-iwlib
+  (package
+    (name "python-iwlib")
+    (version "1.7.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "iwlib" version))
+        (sha256
+          (base32 "18bd35wn7zclalpqbry42pf7bjrdggxkkw58mc0k1vkhg9czc1d8"))))
+    (build-system python-build-system)
+    (inputs
+      `(("wireless-tools" ,wireless-tools)))
+    (propagated-inputs `(("python-cffi" ,python-cffi)))
+    (home-page "https://github.com/nhoad/python-iwlib")
+    (synopsis "Python module to interface with iwlib")
+    (description "An interface to iw wireless tools.")
+    (license license:gpl2)))
-- 
2.30.2




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

* [bug#51272] [PATCH 4/4] gnu: Add qtile.
  2021-10-18 17:48 ` [bug#51272] [PATCH 1/4] gnu: python-xcffib: Upgrade to 0.11.1 Stephen Paul Weber
  2021-10-18 17:48   ` [bug#51272] [PATCH 2/4] gnu: Add python-dbus-next Stephen Paul Weber
  2021-10-18 17:48   ` [bug#51272] [PATCH 3/4] gnu: Add python-iwlib Stephen Paul Weber
@ 2021-10-18 17:48   ` Stephen Paul Weber
  2021-11-23  8:59   ` bug#51272: Package qtile Ludovic Courtès
  3 siblings, 0 replies; 6+ messages in thread
From: Stephen Paul Weber @ 2021-10-18 17:48 UTC (permalink / raw)
  To: 51272; +Cc: Stephen Paul Weber

* gnu/packages/wm.scm (qtile): New variable.
---
 gnu/packages/wm.scm | 59 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 891a7960d6..95d34e2a84 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -83,6 +83,7 @@
   #:use-module (gnu packages bison)
   #:use-module (gnu packages build-tools) ;for meson-0.55
   #:use-module (gnu packages calendar)
+  #:use-module (gnu packages check)
   #:use-module (gnu packages datastructures)
   #:use-module (gnu packages docbook)
   #:use-module (gnu packages documentation)
@@ -101,6 +102,7 @@
   #:use-module (gnu packages image)
   #:use-module (gnu packages imagemagick)
   #:use-module (gnu packages libevent)
+  #:use-module (gnu packages libffi)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages lisp-xyz)
   #:use-module (gnu packages logging)
@@ -115,12 +117,15 @@
   #:use-module (gnu packages pretty-print)
   #:use-module (gnu packages pulseaudio)
   #:use-module (gnu packages python)
+  #:use-module (gnu packages python-crypto)
+  #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages readline)
   #:use-module (gnu packages serialization)
   #:use-module (gnu packages sphinx)
   #:use-module (gnu packages suckless)
   #:use-module (gnu packages texinfo)
   #:use-module (gnu packages textutils)
+  #:use-module (gnu packages time)
   #:use-module (gnu packages video)
   #:use-module (gnu packages web)
   #:use-module (gnu packages xdisorg)
@@ -542,6 +547,60 @@ subscribe to events.")
 (define-public python2-i3-py
   (package-with-python2 python-i3-py))
 
+(define-public qtile
+  (package
+    (name "qtile")
+    (version "0.18.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "qtile" version))
+        (sha256
+          (base32 "14hb26xkza7brvkd4276j60mxd3zsas72ih6y0cq3j060izm1865"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f ; Tests require Xvfb and writable temp/cache space
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'patch-paths
+           (lambda* (#:key inputs #:allow-other-keys)
+             (substitute* "libqtile/pangocffi.py"
+               (("^gobject = ffi.dlopen.*")
+                 (string-append "gobject = ffi.dlopen(\""
+                  (assoc-ref inputs "glib") "/lib/libgobject-2.0.so.0\")\n"))
+                (("^pango = ffi.dlopen.*")
+                 (string-append "pango = ffi.dlopen(\""
+                  (assoc-ref inputs "pango") "/lib/libpango-1.0.so.0\")\n"))
+                (("^pangocairo = ffi.dlopen.*")
+                 (string-append "pangocairo = ffi.dlopen(\""
+                  (assoc-ref inputs "pango") "/lib/libpangocairo-1.0.so.0\")\n"))))))))
+    (inputs
+      `(("glib" ,glib)
+        ("pango" ,pango)
+        ("pulseaudio" ,pulseaudio)))
+    (propagated-inputs
+      `(("python-cairocffi" ,python-cairocffi)
+        ("python-cffi" ,python-cffi)
+        ("python-dateutil" ,python-dateutil)
+        ("python-dbus-next" ,python-dbus-next)
+        ("python-iwlib" ,python-iwlib)
+        ("python-keyring" ,python-keyring)
+        ("python-mpd2" ,python-mpd2)
+        ("python-pyxdg" ,python-pyxdg)
+        ("python-xcffib" ,python-xcffib)))
+    (native-inputs
+      `(("pkg-config" ,pkg-config)
+        ("python-flake8" ,python-flake8)
+        ("python-pep8-naming" ,python-pep8-naming)
+        ("python-psutil" ,python-psutil)
+        ("python-pytest-cov" ,python-pytest-cov)
+        ("python-setuptools-scm" ,python-setuptools-scm)))
+    (home-page "http://qtile.org")
+    (synopsis "Hackable tiling window manager written and configured in Python")
+    (description "Qtile is simple, small, and extensible.  It's easy to write
+your own layouts, widgets, and built-in commands.")
+    (license license:expat)))
+
 (define-public quickswitch-i3
   (let ((commit "ed692b1e8f43b95bd907ced26238ce8ccb2ed28f")
         (revision "1")) ; Guix package revision
-- 
2.30.2




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

* bug#51272: Package qtile
  2021-10-18 17:48 ` [bug#51272] [PATCH 1/4] gnu: python-xcffib: Upgrade to 0.11.1 Stephen Paul Weber
                     ` (2 preceding siblings ...)
  2021-10-18 17:48   ` [bug#51272] [PATCH 4/4] gnu: Add qtile Stephen Paul Weber
@ 2021-11-23  8:59   ` Ludovic Courtès
  3 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2021-11-23  8:59 UTC (permalink / raw)
  To: Stephen Paul Weber; +Cc: 51272-done

Hi Stephen,

Stephen Paul Weber <singpolyma@singpolyma.net> skribis:

> Required for qtile.
>
> * gnu/packages/python-xyz.scm (python-xcffib): Upgrade to 0.11.1.

[...]

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

[...]

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

[...]

> * gnu/packages/wm.scm (qtile): New variable.

I tweaked descriptions as per
<https://guix.gnu.org/manual/en/html_node/Synopses-and-Descriptions.html>
and applied them.

Thanks,
Ludo’.




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

end of thread, other threads:[~2021-11-23  9:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-18 17:47 [bug#51272] Package qtile Stephen Paul Weber
2021-10-18 17:48 ` [bug#51272] [PATCH 1/4] gnu: python-xcffib: Upgrade to 0.11.1 Stephen Paul Weber
2021-10-18 17:48   ` [bug#51272] [PATCH 2/4] gnu: Add python-dbus-next Stephen Paul Weber
2021-10-18 17:48   ` [bug#51272] [PATCH 3/4] gnu: Add python-iwlib Stephen Paul Weber
2021-10-18 17:48   ` [bug#51272] [PATCH 4/4] gnu: Add qtile Stephen Paul Weber
2021-11-23  8:59   ` bug#51272: Package qtile 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).