all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Broken Calibre package
@ 2016-07-25 20:15 Roel Janssen
  2016-07-25 20:42 ` Andreas Enge
  0 siblings, 1 reply; 4+ messages in thread
From: Roel Janssen @ 2016-07-25 20:15 UTC (permalink / raw)
  To: guix-devel

Dear Guix,

Thanks for the recent upgrade to version 2.62.0 of Calibre.  I encounter
the following problem after completing the setup dialog:

Traceback (most recent call last):
  File "/gnu/store/zyxad0fziqvyf28x0ibwgp9xgqdzizn0-calibre-2.62.0/bin/.calibre-real", line 20, in <module>
    sys.exit(calibre())
  File "/gnu/store/zyxad0fziqvyf28x0ibwgp9xgqdzizn0-calibre-2.62.0/lib/calibre/calibre/gui_launch.py", line 63, in calibre
    main(args)
  File "/gnu/store/zyxad0fziqvyf28x0ibwgp9xgqdzizn0-calibre-2.62.0/lib/calibre/calibre/gui2/main.py", line 525, in main
    gui_debug=gui_debug)
  File "/gnu/store/zyxad0fziqvyf28x0ibwgp9xgqdzizn0-calibre-2.62.0/lib/calibre/calibre/gui2/main.py", line 371, in run_gui
    from calibre.gui2.ui import Main
  File "/gnu/store/zyxad0fziqvyf28x0ibwgp9xgqdzizn0-calibre-2.62.0/lib/calibre/calibre/gui2/ui.py", line 42, in <module>
    from calibre.gui2.init import LibraryViewMixin, LayoutMixin
  File "/gnu/store/zyxad0fziqvyf28x0ibwgp9xgqdzizn0-calibre-2.62.0/lib/calibre/calibre/gui2/init.py", line 19, in <module>
    from calibre.gui2.library.views import BooksView, DeviceBooksView
  File "/gnu/store/zyxad0fziqvyf28x0ibwgp9xgqdzizn0-calibre-2.62.0/lib/calibre/calibre/gui2/library/views.py", line 19, in <module>
    from calibre.gui2.library.delegates import (RatingDelegate, PubDateDelegate,
  File "/gnu/store/zyxad0fziqvyf28x0ibwgp9xgqdzizn0-calibre-2.62.0/lib/calibre/calibre/gui2/library/delegates.py", line 23, in <module>
    from calibre.gui2.dialogs.comments_dialog import CommentsDialog
  File "/gnu/store/zyxad0fziqvyf28x0ibwgp9xgqdzizn0-calibre-2.62.0/lib/calibre/calibre/gui2/dialogs/comments_dialog.py", line 9, in <module>
    from calibre.gui2.dialogs.comments_dialog_ui import Ui_CommentsDialog
  File "/gnu/store/zyxad0fziqvyf28x0ibwgp9xgqdzizn0-calibre-2.62.0/lib/calibre/calibre/gui2/dialogs/comments_dialog_ui.py", line 41, in <module>
    from calibre.gui2.comments_editor import Editor
  File "/gnu/store/zyxad0fziqvyf28x0ibwgp9xgqdzizn0-calibre-2.62.0/lib/calibre/calibre/gui2/comments_editor.py", line 18, in <module>
    from PyQt5.QtWebKitWidgets import QWebView, QWebPage
ImportError: No module named QtWebKitWidgets


Are we missing a qtwebkit package?

Kind regards,
Roel Janssen

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

* Re: Broken Calibre package
  2016-07-25 20:15 Broken Calibre package Roel Janssen
@ 2016-07-25 20:42 ` Andreas Enge
  2016-07-25 21:51   ` Andreas Enge
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Enge @ 2016-07-25 20:42 UTC (permalink / raw)
  To: Roel Janssen; +Cc: guix-devel

On Mon, Jul 25, 2016 at 10:15:08PM +0200, Roel Janssen wrote:
> Thanks for the recent upgrade to version 2.62.0 of Calibre.  I encounter
> the following problem after completing the setup dialog:
> Are we missing a qtwebkit package?

Yes. It is not the calibre upgrade that poses problems, but the switch
to the modular qt. This was apparently done without testing the package -
I noticed a similar problem when trying to use qtbase instead of qt in
bitcoin-core: The package compiles, but does not work; probably it tries
to dlopen a library that does not exist.

As a first fix, we should revert and replace qtbase by qt in the package.
I will give it a try and push if this works.

Then it would be good to add a qtwebkit package. Are there any takers?

Andreas

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

* Re: Broken Calibre package
  2016-07-25 20:42 ` Andreas Enge
@ 2016-07-25 21:51   ` Andreas Enge
  2016-07-25 22:11     ` Roel Janssen
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Enge @ 2016-07-25 21:51 UTC (permalink / raw)
  To: Roel Janssen; +Cc: guix-devel

On Mon, Jul 25, 2016 at 10:42:16PM +0200, Andreas Enge wrote:
> As a first fix, we should revert and replace qtbase by qt in the package.

Things were a bit more complex; I also needed to build the python bindings
in python2-pyqt with the non-modular Qt. So I re-added the previous version
as python2-pyqt-5.5. I am going to push in a moment.

Thanks for the report!

Andreas

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

* Re: Broken Calibre package
  2016-07-25 21:51   ` Andreas Enge
@ 2016-07-25 22:11     ` Roel Janssen
  0 siblings, 0 replies; 4+ messages in thread
From: Roel Janssen @ 2016-07-25 22:11 UTC (permalink / raw)
  To: Andreas Enge; +Cc: guix-devel


Andreas Enge writes:

> On Mon, Jul 25, 2016 at 10:42:16PM +0200, Andreas Enge wrote:
>> As a first fix, we should revert and replace qtbase by qt in the package.
>
> Things were a bit more complex; I also needed to build the python bindings
> in python2-pyqt with the non-modular Qt. So I re-added the previous version
> as python2-pyqt-5.5. I am going to push in a moment.

Thanks for your very quick response and solution!

Kind regards,
Roel Janssen

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

end of thread, other threads:[~2016-07-25 22:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-25 20:15 Broken Calibre package Roel Janssen
2016-07-25 20:42 ` Andreas Enge
2016-07-25 21:51   ` Andreas Enge
2016-07-25 22:11     ` Roel Janssen

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.