Package Details: python-gtkspellcheck 5.0.1-3

Git Clone URL: https://aur.archlinux.org/python-gtkspellcheck.git (read-only, click to copy)
Package Base: python-gtkspellcheck
Description: Spell-checking library written in Python for Gtk based on Enchant
Upstream URL: https://github.com/koehlma/pygtkspellcheck
Licenses: GPL
Provides: python-gtkspell
Submitter: foutrelis
Maintainer: gilcu3
Last Packager: gilcu3
Votes: 5
Popularity: 0.000364
First Submitted: 2019-04-21 09:48 (UTC)
Last Updated: 2022-09-20 13:01 (UTC)

Latest Comments

1 2 Next › Last »

gilcu3 commented on 2022-06-29 08:26 (UTC)

@yochananmarqos fixed

yochananmarqos commented on 2022-06-28 14:56 (UTC) (edited on 2022-06-28 14:57 (UTC) by yochananmarqos)

@gilcu3: This builds fine in a clean chroot without gtk3 & gtk4, not sure where you got that from. It also builds fine using the PyPI tarball.

gilcu3 commented on 2022-06-28 11:47 (UTC) (edited on 2022-06-28 11:57 (UTC) by gilcu3)

@risto3 which one? PS: I see, poetry itself, it is added now.

risto3 commented on 2022-06-28 11:44 (UTC)

seems a dependency for python-poetry is missing, needed to install it for a successful build.

gilcu3 commented on 2022-06-28 07:01 (UTC) (edited on 2022-06-28 07:02 (UTC) by gilcu3)

Notice: The package python2-gtkspellcheck has become deprecated. Version 5 dropped support for python2

MarsSeed commented on 2022-06-11 09:46 (UTC)

I don't think sphinx libraries are needed as optdepends, since sphinx is a build-time documentation generator (a.k.a. a makedepend). If it is not used during the build, it should not be declared as depends or optdepends.

gilcu3 commented on 2020-12-15 15:30 (UTC)

sphinx libraries should be declared optional, this would fix current error while building.

optdepends=('python2-sphinx' 'python-sphinx')

emak commented on 2020-11-02 10:00 (UTC)

Build fails as a dependency is not available anymore:

 -> Could not find all required packages:
    python2-sphinx (Wanted by: python-gtkspellcheck)

kendfinger commented on 2020-02-11 17:15 (UTC)

@PiterDeVries @mokkurkalve: I have fixed the issue. Sorry about that.

PiterDeVries commented on 2020-02-11 14:27 (UTC)

As mokkurkalve pointed out, the build fails. Reason: when changing directory to the source, the version is not included as part of the directory name - meaning that package is trying to access directory "src/pygtkspellcheck" instead of the only existing "src/pygtkspellcheck-4.0.5"

Solution: replace the line: cd "$srcdir/pygtkspellcheck-$pkgver" for this one "cd "$srcdir/pygtkspellcheck-$pkgver"

in current PKGBUILD, these are lines 18 and 28