Package Details: iwdgui 0.3.0-3

Git Clone URL: https://aur.archlinux.org/iwdgui.git (read-only, click to copy)
Package Base: iwdgui
Description: A graphical frontend for IWD, Intel's iNet Wireless Daemon
Upstream URL: https://gitlab.com/hfernh/iwdgui
Keywords: iwd
Licenses: BSD
Submitter: hfern
Maintainer: That1Calculator
Last Packager: That1Calculator
Votes: 3
Popularity: 1.13
First Submitted: 2021-07-15 09:47 (UTC)
Last Updated: 2025-01-10 22:05 (UTC)

Latest Comments

That1Calculator commented on 2025-01-10 22:05 (UTC)

@demetri @Mr.Tao added!

Mr.Tao commented on 2025-01-08 16:22 (UTC)

I just hit the same missing python-build in the depends array issue.

demetri commented on 2024-12-27 23:48 (UTC)

Please add python-build to the makedepends(). I guess it used to be included in python however now it must be explicitly installed via python -m pip install build, or in this case from pacman -S python-build:

# Maintainer: Kainoa Kanter <kainoa@t1c.dev> 
# Original author: Johannes Willem (Hans) Fernhout <hfern@fernhout.info>
pkgname="iwdgui"
pkgver="0.3.0"
pkgrel=2
pkgdesc="A graphical frontend for IWD, Intel's iNet Wireless Daemon"
arch=("any")
url="https://gitlab.com/hfernh/iwdgui"
license=("BSD")
depends=("python>=3.10" "python-gobject" "gtk3" "python-netifaces" "dbus-python")
makedepends=('python-setuptools' 'python-pip' 'python-build')
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz")
sha256sums=('fd4f02a778d2edf3f9d6552744a5d2427fb45f78ff0ed8eb15654b5fdb2a3ef2')

build() {
    cd  "${pkgname}-${pkgver}"
    python -m build
}

package() {
    cd "${pkgname}-${pkgver}"
    python -m pip install --root="$pkgdir" --no-deps --ignore-installed .
    install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}

purpleleaf commented on 2024-10-18 21:39 (UTC) (edited on 2024-10-18 21:41 (UTC) by purpleleaf)

trying to build the package i receive this error:

==> Starting build()...

/usr/bin/python: No module named build.main; 'build' is a package and cannot be directly executed

==> ERROR: A failure occurred in build().

Aborting...

-> error making: iwdgui-exit status 4

-> Failed to install the following packages. Manual intervention is required:

iwdgui - exit status 4

countercraft commented on 2024-09-29 17:11 (UTC)

Hello, please add python-pip to makedepends :)

That1Calculator commented on 2024-09-25 17:26 (UTC)

@purpleleaf Adopted and updated :)

That1Calculator commented on 2024-09-13 16:34 (UTC) (edited on 2024-09-13 16:35 (UTC) by That1Calculator)

Up-to-date PKGBUILD:

pkgname="iwdgui"
pkgver="0.3.0"
pkgrel=1
pkgdesc="A graphical frontend for IWD, Intel's iNet Wireless Daemon"
arch=("any")
url="https://gitlab.com/hfernh/iwdgui"
license=("BSD")
depends=("python>=3.10" "python-gobject" "gtk3" "python-netifaces" "dbus-python")
makedepends=('python-setuptools')
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz")
sha256sums=('fd4f02a778d2edf3f9d6552744a5d2427fb45f78ff0ed8eb15654b5fdb2a3ef2')

build() {
    cd  "${pkgname}-${pkgver}"
    python -m build
}

package() {
    cd "${pkgname}-${pkgver}"
    python -m pip install --root="$pkgdir" --no-deps --ignore-installed .
    install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}

purpleleaf commented on 2023-12-18 12:39 (UTC)

Please update the package to 0.3.0 iwdgui release.