The git version is generating an error:
GNOME keyring not found, passwords will be not stored after restarting GTG
I can only start both versions with "sudo gtg", otherwise it'll not open. Once it's opened, the icon is invisible.
Git Clone URL: | https://aur.archlinux.org/gtg-git.git (read-only, click to copy) |
---|---|
Package Base: | gtg-git |
Description: | Getting Things GNOME! is a personal tasks and TODO-list items organizer for GNOME |
Upstream URL: | https://getting-things-gnome.github.io |
Licenses: | GPL-3.0-or-later |
Conflicts: | gtg |
Provides: | gtg |
Submitter: | shtrom |
Maintainer: | yochananmarqos |
Last Packager: | yochananmarqos |
Votes: | 38 |
Popularity: | 0.000000 |
First Submitted: | 2014-04-03 06:31 (UTC) |
Last Updated: | 2025-01-11 21:55 (UTC) |
The git version is generating an error:
GNOME keyring not found, passwords will be not stored after restarting GTG
I can only start both versions with "sudo gtg", otherwise it'll not open. Once it's opened, the icon is invisible.
I'm now the Maintainer of python-liblarch-git
and dependencies are sorted now.
I already have python-liblarch-git, but needed to update it to be able to compile gtg-git
@fchyzak: Which liblarch
package did you install? See the pinned comment.
python-cairo
is a missing dependency: gtg
installed well without it, but refused to start.
Made this PKGBUILD out of gtg one (which is version 0.4.0) which might be a little wrong about dependencies but it at least isn't trying to install python2 dependencies:
pkgname=gtg-git
_pkgname=gtg
pkgver=r5972.e7130c6b
pkgrel=1
pkgdesc='Personal GTD like organizer for the GNOME desktop environment'
url=https://wiki.gnome.org/Apps/GTG
arch=(any)
license=(GPL)
provides=('gtg')
conflicts=('gtg')
depends=(hicolor-icon-theme python-cairo python-gobject
python-liblarch python-pyxdg python-lxml)
checkdepends=(python-mock python-nose)
makedepends=(meson ninja)
optdepends=('pdftk: for the export and print plugin'
'python-cheetah3: for the export and print plugin'
'texlive-bin: for pdflatex, needed by the export and print plugin'
'texlive-core: for pdfjam, needed by the export and print plugin')
source=("git+https://github.com/getting-things-gnome/gtg.git")
sha512sums=("SKIP")
pkgver() {
cd "${srcdir}/${_pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build () {
cd "${srcdir}/${_pkgname}"
rm -rf build
arch-meson -Dprofile=default build .
ninja -C build
}
check () {
cd "${srcdir}/${_pkgname}"
./run-tests
}
package () {
cd "${srcdir}/${_pkgname}"
DESTDIR="${pkgdir}" ninja -C build install
}
This PKGBUILD still has unnecessary dependencies listed. For example, dbus-python was removed as a dependency two months ago. Python2 is not a dependency. Below yochananmarqos has already linked a PKGBUILD; I just installed using it without issues (thank you @yochananmarqos!). Please do extensive correction of this PKGBUILD or orphan it.
@gtsiam Thanks for reporting this issue. I just pushed a newer version of the PKGBUILD which depends on python-lxml :)
Installed it on my spare laptop, but didn't start because lxml was missing. Should probably add python-lxml to the dependency list.
Pinned Comments