all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#46245] [PATCH 0/2] Update python-xlib and plover
@ 2021-02-01 20:21 Christopher Baines
  2021-02-01 20:24 ` [bug#46245] [PATCH 1/2] gnu: python-xlib: Update to 0.29 Christopher Baines
  2021-02-02  8:16 ` [bug#46245] [PATCH 0/2] Update python-xlib and plover Nicolas Goaziou
  0 siblings, 2 replies; 5+ messages in thread
From: Christopher Baines @ 2021-02-01 20:21 UTC (permalink / raw)
  To: 46245


Christopher Baines (2):
  gnu: python-xlib: Update to 0.29.
  gnu: plover: Update to 4.0.0.dev8.

 gnu/packages/python-xyz.scm  |  7 ++++---
 gnu/packages/stenography.scm | 28 +++++++++++++++-------------
 2 files changed, 19 insertions(+), 16 deletions(-)




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

* [bug#46245] [PATCH 1/2] gnu: python-xlib: Update to 0.29.
  2021-02-01 20:21 [bug#46245] [PATCH 0/2] Update python-xlib and plover Christopher Baines
@ 2021-02-01 20:24 ` Christopher Baines
  2021-02-01 20:24   ` [bug#46245] [PATCH 2/2] gnu: plover: Update to 4.0.0.dev8 Christopher Baines
  2021-02-02  8:16 ` [bug#46245] [PATCH 0/2] Update python-xlib and plover Nicolas Goaziou
  1 sibling, 1 reply; 5+ messages in thread
From: Christopher Baines @ 2021-02-01 20:24 UTC (permalink / raw)
  To: 46245

Make python-six a propagated input as it's used at runtime.

* gnu/packages/python-xyz.scm (python-xlib): Update to 0.29.
[native-inputs]: Move python-six to…
[propagated-inputs]: …here.
---
 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 5199ac4d11..5ee4120666 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8014,7 +8014,7 @@ falling into the Python interpreter.")
 (define-public python-xlib
   (package
     (name "python-xlib")
-    (version "0.27")
+    (version "0.29")
     (source
      (origin
        (method git-fetch)
@@ -8023,7 +8023,7 @@ falling into the Python interpreter.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "09kimic8rhprx3q8nzalc4aggg42ahqm4v5qcj8dm68yvxfdk986"))))
+        (base32 "17cwd2knqm2vwrii3kqii9abwsnydhpg4byqx1vy7rjs6i1vbqfc"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
@@ -8039,8 +8039,9 @@ falling into the Python interpreter.")
     (native-inputs
      `(("python-mock" ,python-mock)
        ("python-setuptools-scm" ,python-setuptools-scm)
-       ("python-six" ,python-six)
        ("xorg-server" ,xorg-server)))
+    (propagated-inputs
+     `(("python-six" ,python-six)))
     (home-page "https://github.com/python-xlib/python-xlib")
     (synopsis "Python X11 client library")
     (description
-- 
2.30.0





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

* [bug#46245] [PATCH 2/2] gnu: plover: Update to 4.0.0.dev8.
  2021-02-01 20:24 ` [bug#46245] [PATCH 1/2] gnu: python-xlib: Update to 0.29 Christopher Baines
@ 2021-02-01 20:24   ` Christopher Baines
  0 siblings, 0 replies; 5+ messages in thread
From: Christopher Baines @ 2021-02-01 20:24 UTC (permalink / raw)
  To: 46245

This moves from Python 2 to Python 3. This is a dev release, but from nearly 2
years ago.

Backing up your plover.cfg is advised by the release notes when upgrading from
version 3 to 4.

* gnu/packages/stenography.scm (plover): Update to 4.0.0.dev8.
[arguments]: Remove.
[native-inputs]: Switch to Python 3 package variants.
[inputs]: Switch to Python 3 package variants, and add python-pyqt.
---
 gnu/packages/stenography.scm | 28 +++++++++++++++-------------
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/stenography.scm b/gnu/packages/stenography.scm
index c462deacfa..979b2c29ef 100644
--- a/gnu/packages/stenography.scm
+++ b/gnu/packages/stenography.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
+;;; Copyright © 2021 Christopher Baines <mail@cbaines.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -22,6 +23,7 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (gnu packages)
+  #:use-module (gnu packages qt)
   #:use-module (gnu packages check)
   #:use-module (gnu packages libusb)
   #:use-module (gnu packages python)
@@ -31,7 +33,7 @@
 (define-public plover
   (package
     (name "plover")
-    (version "3.1.1")
+    (version "4.0.0.dev8")
     (source
      (origin
        (method git-fetch)
@@ -40,21 +42,21 @@
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "114rlxvq471fyifwcdcgdad79ak7q3w2lk8z9nqhz1i9fg05721c"))))
+        (base32 "1b2ys77bkjsdmyg97i7lq3lj45q56bycvsm06d4rs656kxhvc0a3"))))
     (build-system python-build-system)
-    (arguments
-     `(#:python ,python-2))
     (native-inputs
-     `(("python2-mock" ,python2-mock)
-       ("python2-pytest" ,python2-pytest)
-       ("python2-setuptools-scm" ,python2-setuptools-scm)))
+     `(("python-mock" ,python-mock)
+       ("python-pytest" ,python-pytest)
+       ("python-setuptools-scm" ,python-setuptools-scm)))
     (inputs
-     `(("python2-appdirs" ,python2-appdirs)
-       ("python2-dbus" ,python2-dbus)
-       ("python2-hidapi" ,python2-hidapi)
-       ("python2-pyserial" ,python2-pyserial)
-       ("python2-wxpython" ,python2-wxpython)
-       ("python2-xlib" ,python2-xlib)))
+     `(("python-appdirs" ,python-appdirs)
+       ("python-pyqt" ,python-pyqt)
+       ("python-babel" ,python-babel)
+       ("python-dbus" ,python-dbus)
+       ("python-hidapi" ,python-hidapi)
+       ("python-pyserial" ,python-pyserial)
+       ("python-wxpython" ,python-wxpython)
+       ("python-xlib" ,python-xlib)))
     (home-page "https://www.openstenoproject.org/plover/")
     (synopsis "Stenography engine")
     (description
-- 
2.30.0





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

* [bug#46245] [PATCH 0/2] Update python-xlib and plover
  2021-02-01 20:21 [bug#46245] [PATCH 0/2] Update python-xlib and plover Christopher Baines
  2021-02-01 20:24 ` [bug#46245] [PATCH 1/2] gnu: python-xlib: Update to 0.29 Christopher Baines
@ 2021-02-02  8:16 ` Nicolas Goaziou
  2021-02-02 19:36   ` bug#46245: " Christopher Baines
  1 sibling, 1 reply; 5+ messages in thread
From: Nicolas Goaziou @ 2021-02-02  8:16 UTC (permalink / raw)
  To: Christopher Baines; +Cc: 46245

Hello,

Christopher Baines <mail@cbaines.net> writes:

> Christopher Baines (2):
>   gnu: python-xlib: Update to 0.29.
>   gnu: plover: Update to 4.0.0.dev8.

LGTM!

Thank you.

Regards,
-- 
Nicolas Goaziou




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

* bug#46245: [PATCH 0/2] Update python-xlib and plover
  2021-02-02  8:16 ` [bug#46245] [PATCH 0/2] Update python-xlib and plover Nicolas Goaziou
@ 2021-02-02 19:36   ` Christopher Baines
  0 siblings, 0 replies; 5+ messages in thread
From: Christopher Baines @ 2021-02-02 19:36 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: 46245-done

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


Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:

> Hello,
>
> Christopher Baines <mail@cbaines.net> writes:
>
>> Christopher Baines (2):
>>   gnu: python-xlib: Update to 0.29.
>>   gnu: plover: Update to 4.0.0.dev8.
>
> LGTM!

Great, I've pushed this to master now as
5fc40f747873500adb268304156ada8823dc2358.

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

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

end of thread, other threads:[~2021-02-02 19:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-01 20:21 [bug#46245] [PATCH 0/2] Update python-xlib and plover Christopher Baines
2021-02-01 20:24 ` [bug#46245] [PATCH 1/2] gnu: python-xlib: Update to 0.29 Christopher Baines
2021-02-01 20:24   ` [bug#46245] [PATCH 2/2] gnu: plover: Update to 4.0.0.dev8 Christopher Baines
2021-02-02  8:16 ` [bug#46245] [PATCH 0/2] Update python-xlib and plover Nicolas Goaziou
2021-02-02 19:36   ` bug#46245: " Christopher Baines

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.