Package Details: gtg-git 0.6.r515.g6ea94b99-1

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)

Dependencies (20)

Required by (0)

Sources (1)

Pinned Comments

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 Next › Last »

AdisonCavani commented on 2021-02-15 22:46 (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.

yochananmarqos commented on 2021-01-13 02:47 (UTC)

I'm now the Maintainer of python-liblarch-git and dependencies are sorted now.

Popolon commented on 2021-01-07 00:12 (UTC)

I already have python-liblarch-git, but needed to update it to be able to compile gtg-git

yochananmarqos commented on 2021-01-06 17:08 (UTC)

@fchyzak: Which liblarch package did you install? See the pinned comment.

fchyzak commented on 2021-01-06 08:20 (UTC)

python-cairo is a missing dependency: gtg installed well without it, but refused to start.

pztrn commented on 2020-12-19 22:51 (UTC)

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
}

NoobAlice commented on 2020-12-02 05:48 (UTC)

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.

hertog commented on 2020-08-07 13:09 (UTC)

@gtsiam Thanks for reporting this issue. I just pushed a newer version of the PKGBUILD which depends on python-lxml :)

gtsiam commented on 2020-08-07 12:04 (UTC) (edited on 2020-08-07 12:06 (UTC) by gtsiam)

Installed it on my spare laptop, but didn't start because lxml was missing. Should probably add python-lxml to the dependency list.