Package Details: gcalcli 4.3.0-3

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: 122
Popularity: 0.89
First Submitted: 2007-10-03 21:45 (UTC)
Last Updated: 2024-05-11 15:23 (UTC)

Latest Comments

« First ‹ Previous 1 .. 4 5 6 7 8 9

<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') .

<deleted-account> commented on 2010-07-26 19:34 (UTC)

Updated with fix, so it works again

<deleted-account> commented on 2010-07-26 11:06 (UTC)

Fixing this problem within the build function I'd recommend adding one line build() { cd ${srcdir} sed 's|http://www.google.com/calendar/feeds/|https?://www.google.com/calendar/feeds/|g' -i ${pkgname} install -D -m755 ${srcdir}/${pkgname} ${pkgdir}/usr/bin/${pkgname} } Works perfectly afterwards

pnutzh4x0r commented on 2010-07-01 13:37 (UTC)

The new version of python-gdata broke gcalcli. I had to change feedPrefix under the GoogleCalendar class from http://www.google.com/calendar/feeds/ to https://www.google.com/calendar/feeds/ (note the use of https rather than http) to fix the problem.