Package Details: gtg-git 0.6.r422.g80b09c84-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://wiki.gnome.org/Apps/GTG
Licenses: GPL-3.0-or-later
Conflicts: gtg
Provides: gtg
Submitter: shtrom
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 39
Popularity: 0.000000
First Submitted: 2014-04-03 06:31 (UTC)
Last Updated: 2024-04-01 21:31 (UTC)

Dependencies (18)

Required by (1)

Sources (1)

Pinned Comments

Latest Comments

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

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.

yochananmarqos commented on 2020-06-17 19:23 (UTC) (edited on 2020-06-17 19:23 (UTC) by yochananmarqos)

@hertog: Not quite. This won't even build as meson is missing from makedepends(). There's still a lot of obsolete dependencies from the old version and some that don't exist or are using the wrong name.

FYI, texlive-core provides pdfjam and texlive-bin provides pdflatex.

I've written and tested my own PKGBUILDs:

hertog commented on 2020-06-13 20:23 (UTC) (edited on 2020-06-16 22:24 (UTC) by hertog)

Hi yochananmarqos, I recently took over maintaining this AUR package. I am currently working on updating it to reflect the latest upstream changes.

Edit: yochananmarqos it's updated :)