Package Details: gcalcli 4.3.0-2

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
Last Packager: ainola
Votes: 121
Popularity: 0.000001
First Submitted: 2007-10-03 21:45 (UTC)
Last Updated: 2021-01-30 23:12 (UTC)

Latest Comments

« First ‹ Previous 1 .. 3 4 5 6 7 8 9 Next › Last »

<deleted-account> commented on 2012-05-11 03:39 (UTC)

gcalcli has been moved to github. https://github.com/insanum/gcalcli

petelewis commented on 2012-05-10 09:38 (UTC)

Hi, this also should depend on python2-vobject, so that .ics files can be imported. Thanks!

<deleted-account> commented on 2011-11-21 16:11 (UTC)

If you want to use this with the notification daemon: 260c260,262 < 'gxmessage -display :0 -center -title "Ding, Ding, Ding!" %s' --- > 'notify-send "Google Calendar Reminder:" "%s" --icon=dialog-information' > # command = \ > # 'gxmessage -display :0 -center -title "Ding, Ding, Ding!" %s' 1047c1049 < message = "Google Calendar Reminder:\n" + message --- > #message = "Google Calendar Reminder:\n" + message

<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