Package Details: i3-workspace-groups-git r166.36abe38-1

Git Clone URL: https://aur.archlinux.org/i3-workspace-groups-git.git (read-only, click to copy)
Package Base: i3-workspace-groups-git
Description: Manage i3wm workspaces in groups you control
Upstream URL: https://github.com/infokiller/i3-workspace-groups
Keywords: i3
Licenses: MIT
Conflicts: i3-workspace-groups
Provides: i3-workspace-groups
Submitter: wheatdog
Maintainer: wheatdog
Last Packager: wheatdog
Votes: 1
Popularity: 0.000000
First Submitted: 2019-03-14 11:06 (UTC)
Last Updated: 2019-11-08 15:01 (UTC)

Latest Comments

orhun commented on 2024-01-14 15:02 (UTC)

Needs the following patch to build:

diff --git a/PKGBUILD b/PKGBUILD
index cadfb53..d887ca5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer: Tim Liou <wheatdoge at gmail dot com>
 _pkgname="i3-workspace-groups"
 pkgname="${_pkgname}-git"
-pkgver=r166.36abe38
+pkgver=r544.2fdcf3b
 pkgrel=1
 pkgdesc='Manage i3wm workspaces in groups you control'
 url='https://github.com/infokiller/i3-workspace-groups'
@@ -10,7 +10,7 @@ license=('MIT')
 source=("git+https://github.com/infokiller/i3-workspace-groups")
 sha256sums=('SKIP')
 depends=('python' 'i3-wm' 'python-i3ipc' 'python-toml')
-makedepends=('python-setuptools' 'git')
+makedepends=('python-setuptools' 'python-setuptools-scm' 'python-build' 'python-installer' 'python-wheel' 'git')
 provides=('i3-workspace-groups')
 conflicts=('i3-workspace-groups')
 install="${pkgname}.install"
@@ -25,10 +25,10 @@ pkgver() {

 build() {
     cd "$_pkgname"
-    python setup.py build
+    python -m build --wheel --no-isolation
 }

 package() {
     cd "$_pkgname"
-    python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+    python -m installer --destdir="$pkgdir" dist/*.whl
 }