Package Details: polkit-explorer-git 15.fac8d70-4

Git Clone URL: https://aur.archlinux.org/polkit-explorer-git.git (read-only, click to copy)
Package Base: polkit-explorer-git
Description: Present PolicyKit information in a human-readable form.
Upstream URL: https://github.com/scarygliders/polkit-explorer
Keywords: polkit python qt5
Licenses: ISC
Conflicts: polkit-explorer
Provides: polkit-explorer
Submitter: SunRed
Maintainer: SunRed
Last Packager: SunRed
Votes: 32
Popularity: 0.006348
First Submitted: 2021-10-17 08:23 (UTC)
Last Updated: 2024-04-11 22:00 (UTC)

Latest Comments

1 2 Next › Last »

SunRed commented on 2022-03-05 14:55 (UTC)

@whi-tw It ends up building the exact same package, people who run into this error should naturally try to clean their cache. People who have it already installed should not have to rebuild this package.

Also for this reason I like to move my build directory for yay/paru to /tmp. :)

whi-tw commented on 2022-03-03 09:47 (UTC)

@SunRed It might still be worth bumping the pkgrel (yay doesn't pick up the change without a cache clean, as build files exist for that pkgrel)

SunRed commented on 2022-03-02 14:46 (UTC)

@whi-tw @tigerjack Thanks for pointing this out. That must have happened when I renamed the package to the -git suffix. I could have sworn I tested the package build process back then but apparently I did not. A pkgrel bump should not be required as the package stays the same otherwise.

Cheers.

whi-tw commented on 2022-03-01 12:40 (UTC) (edited on 2022-03-01 12:41 (UTC) by whi-tw)

A 'better' patch for this is:

diff --git a/PKGBUILD b/PKGBUILD
index 79e9b8a..792c176 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -15,12 +15,12 @@ source=("git://github.com/scarygliders/${pkgname//-git}.git")
 sha256sums=('SKIP')

 pkgver() {
-       cd "${srcdir}/${pkgname}"
+       cd "${srcdir}/${pkgname//-git}"
        printf '%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
 }

 package() {
-       cd "${srcdir}/${pkgname}"
+       cd "${srcdir}/${pkgname//-git}"

        install -d -m755 "${pkgdir}"/{usr/bin,opt/$pkgname}
        install -m644 Ui_*.py "${pkgdir}/opt/${pkgname}/"

I've emailed the maintainer

tigerjack commented on 2022-01-25 08:29 (UTC) (edited on 2022-01-25 08:31 (UTC) by tigerjack)

The only way for me to install the package was by modifying the PKGBUILD file. You have to replace lines 18 and 24, changing

cd "${srcdir}/${pkgname}"

to

cd "${srcdir}/polkit-explorer"

mkkot commented on 2019-11-02 17:38 (UTC)

I don't have patience to configure git push, but here's what you need to change in PKGBUILD:

depends=('python2' 'python2-pyqt5' 'python2-lxml' 'qt5-base')

flipmess commented on 2018-12-31 00:45 (UTC) (edited on 2018-12-31 00:50 (UTC) by flipmess)

i get this when trying to start polkitex

Traceback (most recent call last): File "/usr/sbin/polkitex", line 27, in <module> from PyQt4 import QtCore, QtGui ImportError: No module named sip

after installing python2-sip-pyqt4 it works...

ullebe1 commented on 2018-06-20 11:56 (UTC)

Seems like 'git' is missing as a make-dependency.

Alad commented on 2015-07-24 23:14 (UTC)

Updated, please check again.