Package Details: pkgbrowser 0.28.1-3

Git Clone URL: https://aur.archlinux.org/pkgbrowser.git (read-only, click to copy)
Package Base: pkgbrowser
Description: A utility for browsing pacman databases and the AUR
Upstream URL: https://codeberg.org/kachelaqa/pkgbrowser
Licenses: GPL2
Submitter: kachelaqa
Maintainer: kachelaqa
Last Packager: kachelaqa
Votes: 282
Popularity: 0.28
First Submitted: 2011-04-20 18:18 (UTC)
Last Updated: 2024-09-16 22:12 (UTC)

Latest Comments

« First ‹ Previous 1 .. 6 7 8 9 10 11 12 13 14 15 16 .. 19 Next › Last »

blackhole commented on 2017-02-01 17:32 (UTC)

But now is compiling fine with qt5

martynjy commented on 2017-02-01 17:23 (UTC) (edited on 2017-02-01 17:23 (UTC) by martynjy)

Ditto @blackhole. Installed 'pkgbrowser-qt4' instead.

kachelaqa commented on 2017-01-07 01:01 (UTC) (edited on 2017-01-07 01:04 (UTC) by kachelaqa)

@cryzed. Yes, every major version change of python can break a wide range of python packages, any one of which may directly or indirectly affect pkgbrowser. At the very least, the libalpm extension module will need to be recompiled (using cython) - that's what caused the import-error referred to in the comment below yours.

cryzed commented on 2017-01-07 00:45 (UTC)

Why are you using dependencies like "python<3.6" and "python<3.7"? Do you expect every new Python version to break backwards-compatibility?

blackhole commented on 2017-01-06 16:04 (UTC)

Maybe the new python was not completely installed. Just now... File "/usr/lib/pkgbrowser/main.py", line 9, in <module> sys.exit(app.run()) File "/usr/lib/pkgbrowser/pkgbrowser/app.py", line 112, in run app.window().setup() File "/usr/lib/pkgbrowser/pkgbrowser/app.py", line 56, in window from pkgbrowser.window import Window File "/usr/lib/pkgbrowser/pkgbrowser/window.py", line 18, in <module> from pkgbrowser.backend import ( File "/usr/lib/pkgbrowser/pkgbrowser/backend.py", line 13, in <module> from pkgbrowser import alpm, conf, utils ImportError: cannot import name 'alpm

OldNuc commented on 2017-01-06 14:16 (UTC)

latest upgrade of python to 3.6.0-1 breaks pkgbrowser dependency 'python<3.6'

biloucat commented on 2017-01-06 09:20 (UTC)

python 3.6 is out so python<3.6 fail

ackalker commented on 2016-08-20 04:05 (UTC) (edited on 2016-08-20 05:07 (UTC) by ackalker)

@kachelaqa Still doesn't explain why something like pyqt's examples/itemviews/dirview.py has no problems but pkgbrowser does. Could it be that of all pkgbrowser's widgets, only the Packages pane QTreeView has a "styleSheet" property? EDIT: Yup :-) removing the "styleSheet" property 'fixes' the problem when using QT_QPA_PLATFORMTHEME="qt5ct". Anyway, I've resolved it (somewhat) by switching from using QT_QPA_PLATFORMTHEME="qt5ct" and setting "gtk2" in qt5ct to using just QT_STYLE_OVERRIDE="gtk2". Why this works is a mystery to me (and qt5ct complains LOUDLY about me using QT_STYLE_OVERRIDE), but anyway, let's savour the great joys of framework API and configuration transitions...