Package Details: pygubu-designer 0.39.3-1

Git Clone URL: https://aur.archlinux.org/pygubu-designer.git (read-only, click to copy)
Package Base: pygubu-designer
Description: A simple GUI designer for the python tkinter module
Upstream URL: https://github.com/alejandroautalan/pygubu-designer
Keywords: gui pygubu pygubu-designer rad tkinter
Licenses: GPL
Submitter: itoffshore
Maintainer: itoffshore
Last Packager: itoffshore
Votes: 0
Popularity: 0.000000
First Submitted: 2022-09-04 09:36 (UTC)
Last Updated: 2025-01-03 21:02 (UTC)

Latest Comments

Jona commented on 2025-01-31 18:15 (UTC) (edited on 2025-01-31 18:20 (UTC) by Jona)

I'm having troubles building this package, autopep8 is not included as dependency and when running with an aur helper like pikaur it complains about not having permissions to write on /usr/bin (even when compiling with makepkg). Please consider changing PKGBUILD to the following (note that I followed python package guidelines from the archwiki):

# Maintainer: Stuart Cardall <developer at it-offshore.co.uk>
pkgname=pygubu-designer
pkgver=0.39.3
pkgrel=1
pkgdesc="A simple GUI designer for the python tkinter module"
url="https://github.com/alejandroautalan/pygubu-designer"
arch=('i686' 'x86_64')
license=('GPL')
makedepends=('python-pygubu')
depends=('python' 'python-mako' 'python-black' 'python-screeninfo' 'tk' 'python-appdirs' 'autopep8')
source=("${pkgname}-${pkgver}::https://github.com/alejandroautalan/${pkgname}/archive/v${pkgver}.tar.gz"
        "tk-logo.svg"
        "pygubu-designer.desktop")
md5sums=('42591d6a0cdcdfc94b9e62a47121b921'
         'f60d13e5f87d15d764276387fc4627c2'
         'e745be7853e0343ff34e97d17607ec18')

build() {
    cd $pkgname-$pkgver
    python -m build --wheel --no-isolation
}

package() {
    cd $pkgname-$pkgver
    python -m installer --destdir="$pkgdir" dist/*.whl
    install -Dm755 "$srcdir/tk-logo.svg" "$pkgdir/usr/share/icons/pygubu.svg"
    install -Dm755 "$srcdir/pygubu-designer.desktop" "$pkgdir/usr/share/applications/pygubu-designer.desktop"
}

itoffshore commented on 2025-01-03 21:07 (UTC) (edited on 2025-01-03 21:07 (UTC) by itoffshore)

@morsmortium - should be fixed in 39-1 I just pushed to AUR (by removing python-pygubu as a depends)

morsmortium commented on 2025-01-03 14:12 (UTC)

I get these conflicts when trying to install the package: https://0x0.st/8izC.txt I tried removing both pygubu-designer and python-pygubu and removing the yay cache folders, neither solved it