Package Details: gcalcli 4.5.1-1

Git Clone URL: https://aur.archlinux.org/gcalcli.git (read-only, click to copy)
Package Base: gcalcli
Description: Google calendar command line interface
Upstream URL: https://github.com/insanum/gcalcli
Licenses: MIT
Submitter: None
Maintainer: ainola (mu_mind)
Last Packager: mu_mind
Votes: 124
Popularity: 0.76
First Submitted: 2007-10-03 21:45 (UTC)
Last Updated: 2024-10-09 03:23 (UTC)

Latest Comments

« First ‹ Previous 1 .. 5 6 7 8 9 10 11 Next › Last »

<deleted-account> commented on 2011-10-27 18:12 (UTC)

Flagged out-of-date. However CheariX's PKGBUILD seems to work just fine. Thanks!

CheariX commented on 2011-08-14 12:59 (UTC)

Finally with UTF-8 Support (German Umlauts). I used this PKGBUILD: pkgname=gcalcli pkgver=2.1 pkgrel=1 pkgdesc="Allows you to access you Google Calendar from a command line" arch=('any') url="http://code.google.com/p/gcalcli/" license=('MIT') depends=('python-gdata' 'python-dateutil') source=(http://${pkgname}.googlecode.com/files/${pkgname}-${pkgver}.tgz) build() { cd ${srcdir} # HTTPs on by default sed 's|https=False,|https=True,|g' -i ${pkgname} # Change Shebang sed 's|#!/usr/bin/python2|#!/usr/bin/env python2|g' -i ${pkgname} install -D -m755 ${srcdir}/${pkgname} ${pkgdir}/usr/bin/${pkgname} } md5sums=('eb7bda97c7e30dffc05c3d8bb4dda094')

<deleted-account> commented on 2011-08-11 05:45 (UTC)

v2.1 of gcalcli has been released. Fixes many issues and has some great enhancements. http://code.google.com/p/gcalcli/wiki/Changelog

<deleted-account> commented on 2010-12-23 15:55 (UTC)

Updated, thanks!

<deleted-account> commented on 2010-12-22 18:23 (UTC)

Sent an email, but including here in case someone searches on the error strings: the self.allCals.entry.sort fix addresses this: ERROR: Traceback (most recent call last): File "/usr/local/bin/gcalcli", line 1114, in <module> DoooooItHippieMonster?() File "/usr/local/bin/gcalcli", line 1025, in DoooooItHippieMonster? borderColor=borderColor) File "/usr/local/bin/gcalcli", line 312, in init self.allCals.entry.sort(lambda x, y: File "/usr/local/bin/gcalcli", line 313, in <lambda> cmp(orderx.access_level.value?, KeyError?: 'root' the utf-8 patch addresses errors I've had with chinese calendars, summarized with similar errors at: http://code.google.com/p/gcalcli/issues/detail?id=10

<deleted-account> commented on 2010-12-22 17:54 (UTC)

What's the command line which shows a broken behavior? Everything seems fine here.

<deleted-account> commented on 2010-12-22 08:27 (UTC)

gcalcli recently started acting up for me again. Specifically sorting calendars started to fail, so I have to tweak that. Also, I had some other errors fixed by ensuring it was operating in utf-8 mode. I've found other folks with the same problem but I don't know how wide spread it is. I don't think either of these fixes would negatively impact the utility in general and so would lobby for their inclusion in the PKGBUILD: sed "s|locale.getpreferredencoding()|'utf-8'|g" -i ~/bin/gcalcli sed '/self.allCals.entry.sort/,+2 s/^/#/' -i ~/bin/gcalcli

<deleted-account> commented on 2010-10-19 13:05 (UTC)

Thanks!!! Updated

pnutzh4x0r commented on 2010-10-19 12:22 (UTC)

We can get rid of the python-elementtree dependency, and we need to change to the shebang to point to python2 to make this work with the recent python changes.

haawda commented on 2010-09-09 15:05 (UTC)

It is a python-script, isn't it? So you can use arch=('any') .