I already have python-liblarch-git, but needed to update it to be able to compile gtg-git
Search Criteria
Package Details: gtg-git 0.6.r448.gc726c4d7-1
Package Actions
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://github.com/getting-things-gnome/gtg |
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: | 2024-06-20 21:51 (UTC) |
Dependencies (18)
- gtk4 (gtk4-customizableAUR, gtk4-paper-planeAUR, gtk4-gitAUR)
- gtksourceview5 (gtksourceview-gitAUR)
- libsecret
- python-caldavAUR
- python-dbus
- python-gobject (python-gobject-gitAUR)
- python-liblarch-gitAUR
- python-lxml
- git (git-gitAUR, git-glAUR) (make)
- itstool (make)
- meson (meson-gitAUR) (make)
- hamster-time-tracker (hamster-time-tracker-gitAUR) (optional) – send a task to the Hamster time tracking applet
- pdftk (pdftk-gitAUR) (optional) – for the Export and print plugin
- python-cheetah3 (optional) – for the Export and print plugin
- python-setproctitle (optional) – to set the process title when listing processes like ps)
- texlive-bin (texlive-installerAUR, texlive-fullAUR) (optional) – pdflatex, for the Export and print plugin
- texlive-binextra (texlive-installerAUR, texlive-fullAUR, texlive-dummyAUR) (optional) – pdfjam, for the Export and print plugin
- yelp (optional) – view user manual
Required by (0)
Sources (1)
Popolon commented on 2021-01-07 00:12 (UTC)
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:
gtg-git
python-liblarch-git
(AUR package has out of date dependencies, howeverpython-liblarch
is up to date and can be used)
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 :)
Pinned Comments