unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#60480] [PATCH 0/2] gnu: plover: Fix missing icons + dbus
       [not found] <cover.1672504941.git.poomklao.ref@yahoo.com>
@ 2023-01-01 16:47 ` Parnikkapore via Guix-patches via
  2023-01-02  1:08   ` [bug#60480] [PATCH 1/2] gnu: plover: Wrap so that icons can be found Parnikkapore via Guix-patches via
  2023-01-02  1:08   ` [bug#60480] [PATCH 2/2] gnu: plover: Add dbus to inputs Parnikkapore via Guix-patches via
  0 siblings, 2 replies; 4+ messages in thread
From: Parnikkapore via Guix-patches via @ 2023-01-01 16:47 UTC (permalink / raw)
  To: 60480

A couple of changes to the plover package to make it function properly. The
plugin manager should also be included, but it requires a few more python
packages to be packaged into Guix, so holding off on that for now. Installing
it via pip works.

Parnikkapore (2):
  gnu: plover: Wrap so that icons can be found
  gnu: plover: Add dbus to inputs

 gnu/packages/stenography.scm | 87 ++++++++++++++++++++----------------
 1 file changed, 49 insertions(+), 38 deletions(-)

-- 
2.38.1




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

* [bug#60480] [PATCH 1/2] gnu: plover: Wrap so that icons can be found
  2023-01-01 16:47 ` [bug#60480] [PATCH 0/2] gnu: plover: Fix missing icons + dbus Parnikkapore via Guix-patches via
@ 2023-01-02  1:08   ` Parnikkapore via Guix-patches via
  2023-01-03 21:00     ` bug#60480: " Nicolas Goaziou
  2023-01-02  1:08   ` [bug#60480] [PATCH 2/2] gnu: plover: Add dbus to inputs Parnikkapore via Guix-patches via
  1 sibling, 1 reply; 4+ messages in thread
From: Parnikkapore via Guix-patches via @ 2023-01-02  1:08 UTC (permalink / raw)
  To: 60480

* gnu/packages/stenography.scm (plover): Wrap and add qtsvg to QT_PLUGIN_PATH
  This is needed for the icons in Plover's UI to appear.
---
 gnu/packages/stenography.scm | 81 +++++++++++++++++++-----------------
 1 file changed, 43 insertions(+), 38 deletions(-)

diff --git a/gnu/packages/stenography.scm b/gnu/packages/stenography.scm
index 504dfc990f..3249ee4c4f 100644
--- a/gnu/packages/stenography.scm
+++ b/gnu/packages/stenography.scm
@@ -26,6 +26,7 @@ (define-module (gnu packages stenography)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (gnu packages)
+  #:use-module (gnu packages bash)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages check)
   #:use-module (gnu packages libusb)
@@ -55,46 +56,50 @@ (define-public plover
   (package
     (name "plover")
     (version "4.0.0.dev12")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/openstenoproject/plover")
-             (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "0vk6nh2gpn7f7rv2spi2a7n3m0d9kaan6r22mx3vwxprpbvrkbm8"))))
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/openstenoproject/plover")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0vk6nh2gpn7f7rv2spi2a7n3m0d9kaan6r22mx3vwxprpbvrkbm8"))))
     (build-system python-build-system)
     (arguments
-     (list
-      #:phases
-      #~(modify-phases %standard-phases
-          (replace 'check
-            (lambda* (#:key tests? #:allow-other-keys)
-              (when tests?
-                (invoke "python" "-m" "pytest"
-                        "-p" "pytest-qt"
-                        "-p" "xvfb"
-                        "test"
-                        ;; FIXME: Ignore failing test.
-                        "--ignore"
-                        "test/gui_qt/test_dictionaries_widget.py")))))))
-    (native-inputs
-     (list python-babel
-           python-mock
-           python-pytest
-           python-pytest-qt
-           python-pytest-xvfb))
-    (inputs
-     (list python-appdirs
-           python-dbus
-           python-hidapi
-           python-plover-stroke
-           python-pyqt
-           python-pyserial
-           python-rtf-tokenize
-           python-xlib
-           qtsvg-5))
+     (list #:phases #~(modify-phases %standard-phases
+                        (replace 'check
+                          (lambda* (#:key tests? #:allow-other-keys)
+                            (when tests?
+                              (invoke "python" "-m" "pytest"
+                                      "-p" "pytest-qt"
+                                      "-p" "xvfb"
+                                      "test"
+                                      ;; FIXME: Ignore failing test.
+                                      "--ignore"
+                                      "test/gui_qt/test_dictionaries_widget.py"))))
+                        ;; Ensure that icons are found at runtime.
+                        (add-after 'install 'wrap-executable
+                          (lambda* (#:key inputs outputs #:allow-other-keys)
+                            (let ((out (assoc-ref outputs "out")))
+                              (wrap-program (string-append out "/bin/plover")
+                                            `("QT_PLUGIN_PATH" prefix
+                                              ,(list (string-append (assoc-ref
+                                                                     inputs
+                                                                     "qtsvg")
+                                                      "/lib/qt5/plugins/"))))))))))
+    (native-inputs (list python-babel python-mock python-pytest
+                         python-pytest-qt python-pytest-xvfb))
+    (inputs (list bash-minimal
+                  python-appdirs
+                  python-dbus
+                  python-hidapi
+                  python-plover-stroke
+                  python-pyqt
+                  python-pyserial
+                  python-rtf-tokenize
+                  python-xlib
+                  qtsvg-5))
     (home-page "https://www.openstenoproject.org/plover/")
     (synopsis "Stenography engine")
     (description
-- 
2.38.1





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

* [bug#60480] [PATCH 2/2] gnu: plover: Add dbus to inputs
  2023-01-01 16:47 ` [bug#60480] [PATCH 0/2] gnu: plover: Fix missing icons + dbus Parnikkapore via Guix-patches via
  2023-01-02  1:08   ` [bug#60480] [PATCH 1/2] gnu: plover: Wrap so that icons can be found Parnikkapore via Guix-patches via
@ 2023-01-02  1:08   ` Parnikkapore via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: Parnikkapore via Guix-patches via @ 2023-01-02  1:08 UTC (permalink / raw)
  To: 60480

* gnu/packages/stenography.scm (plover): Add dbus to inputs and LD_LIBRARY_PATH
  Plover tries to load dbus during startup (visible with --log-level debug).
  This will allow it to find it.
---
 gnu/packages/stenography.scm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/stenography.scm b/gnu/packages/stenography.scm
index 3249ee4c4f..e4617031fd 100644
--- a/gnu/packages/stenography.scm
+++ b/gnu/packages/stenography.scm
@@ -27,6 +27,7 @@ (define-module (gnu packages stenography)
   #:use-module (guix packages)
   #:use-module (gnu packages)
   #:use-module (gnu packages bash)
+  #:use-module (gnu packages glib)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages check)
   #:use-module (gnu packages libusb)
@@ -87,10 +88,15 @@ (define-public plover
                                               ,(list (string-append (assoc-ref
                                                                      inputs
                                                                      "qtsvg")
-                                                      "/lib/qt5/plugins/"))))))))))
+                                                      "/lib/qt5/plugins/")))
+                                            `("LD_LIBRARY_PATH" prefix
+                                              (,(string-append (assoc-ref
+                                                                inputs "dbus")
+                                                               "/lib/"))))))))))
     (native-inputs (list python-babel python-mock python-pytest
                          python-pytest-qt python-pytest-xvfb))
     (inputs (list bash-minimal
+                  dbus
                   python-appdirs
                   python-dbus
                   python-hidapi
-- 
2.38.1





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

* bug#60480: [PATCH 1/2] gnu: plover: Wrap so that icons can be found
  2023-01-02  1:08   ` [bug#60480] [PATCH 1/2] gnu: plover: Wrap so that icons can be found Parnikkapore via Guix-patches via
@ 2023-01-03 21:00     ` Nicolas Goaziou
  0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2023-01-03 21:00 UTC (permalink / raw)
  To: Parnikkapore via Guix-patches via; +Cc: Parnikkapore, 60480-done

Hello,

Parnikkapore via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/stenography.scm (plover): Wrap and add qtsvg to QT_PLUGIN_PATH
>   This is needed for the icons in Plover's UI to appear.

Applied both patches. Thank you.

Ialso made use of G-expressions, added a copyright line for you, and
added to the commit message the changes made to inputs.

Regards,
-- 
Nicolas Goaziou




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

end of thread, other threads:[~2023-01-03 21:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <cover.1672504941.git.poomklao.ref@yahoo.com>
2023-01-01 16:47 ` [bug#60480] [PATCH 0/2] gnu: plover: Fix missing icons + dbus Parnikkapore via Guix-patches via
2023-01-02  1:08   ` [bug#60480] [PATCH 1/2] gnu: plover: Wrap so that icons can be found Parnikkapore via Guix-patches via
2023-01-03 21:00     ` bug#60480: " Nicolas Goaziou
2023-01-02  1:08   ` [bug#60480] [PATCH 2/2] gnu: plover: Add dbus to inputs Parnikkapore via Guix-patches via

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