Package Details: obquit-git r59.f84aa4e-1

Git Clone URL: https://aur.archlinux.org/obquit-git.git (read-only, click to copy)
Package Base: obquit-git
Description: Shutdown/reboot/logout utility script
Upstream URL: https://github.com/dglava/obquit
Keywords: gtk login logout openbox python
Licenses: GPL-3.0-or-later
Submitter: davidbailey00
Maintainer: justasug
Last Packager: justasug
Votes: 2
Popularity: 0.000000
First Submitted: 2015-08-01 20:55 (UTC)
Last Updated: 2024-08-10 21:24 (UTC)

Latest Comments

micwoj92 commented on 2024-08-06 22:29 (UTC)

Last small things: use spdx identifier for license, update package guidelines https://wiki.archlinux.org/title/Python_package_guidelines#Standards_based_(PEP_517)

diff --git a/PKGBUILD b/PKGBUILD
index 49def70..77a402c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,15 +5,15 @@ pkgrel=1
 pkgdesc="Shutdown/reboot/logout utility script"
 arch=('any')
 url="https://github.com/dglava/obquit"
-license=('GPL3')
+license=('GPL-3.0-or-later')
 depends=('python' 'python-gobject' 'python-cairo' 'gtk3')
-makedepends=('git' 'python-setuptools' 'python-installer' 'python-build')
+makedepends=('git' 'python-setuptools' 'python-installer' 'python-build' 'python-wheel')
 source=('git+https://github.com/dglava/obquit.git')
 md5sums=('SKIP')

 build() {
   cd "$srcdir/${pkgname%-git}"
-  python -m build
+  python -m build --wheel --no-isolation
 }

 package() {

bardamu commented on 2017-01-11 20:45 (UTC)

Found it: just rebuild the package in the new python-environment.

bardamu commented on 2017-01-11 20:28 (UTC)

Obquit stopped to execute since the upgrade to python 3.6. Console-output is: $ obquit Traceback (most recent call last): File "/usr/bin/obquit", line 39, in <module> import obquit ModuleNotFoundError: No module named 'obquit' The exception is introduced in python 3.6. I'd appreciate pointers on how to make it work again.