summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel M. Capella2015-10-02 16:39:35 -0400
committerDaniel M. Capella2015-10-02 16:39:35 -0400
commitd771478ea2f5657ba2559963bbc47a09a4056855 (patch)
tree6e3da106189417acd47372d770bbce2267fc049e
parent2aefeac00ad76caf534157503a27705a4e277e7b (diff)
downloadaur-d771478ea2f5657ba2559963bbc47a09a4056855.tar.gz
workaround run() deprecation in oauth2client 1.5.1
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index cbcb0cbfff56..01aab11c1f19 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,14 @@
pkgbase = gcalcli
pkgdesc = Google Calendar Command Line Interface
pkgver = 3.3.2
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/insanum/gcalcli
arch = any
license = MIT
depends = python2-google-api-python-client
depends = python2-dateutil
depends = python2-gflags
- depends = python2-oauth2client<=1.4.12
+ depends = python2-oauth2client
optdepends = python2-vobject: for ics/vcal importing
optdepends = python2-parsedatetime: for fuzzy dates/times like "now", "today", "eod tomorrow", etc.
source = gcalcli-3.3.2::https://raw.githubusercontent.com/insanum/gcalcli/v3.3.2/gcalcli
diff --git a/PKGBUILD b/PKGBUILD
index 980e7524fa15..3c19774e74ec 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,12 +6,12 @@
pkgname=gcalcli
pkgver=3.3.2
-pkgrel=1
+pkgrel=2
pkgdesc='Google Calendar Command Line Interface'
arch=('any')
url=https://github.com/insanum/gcalcli
license=('MIT')
-depends=('python2-google-api-python-client' 'python2-dateutil' 'python2-gflags' 'python2-oauth2client<=1.4.12')
+depends=('python2-google-api-python-client' 'python2-dateutil' 'python2-gflags' 'python2-oauth2client')
optdepends=('python2-vobject: for ics/vcal importing'
'python2-parsedatetime: for fuzzy dates/times like "now", "today",
"eod tomorrow", etc.')
@@ -19,7 +19,7 @@ source=("gcalcli-$pkgver::https://raw.githubusercontent.com/insanum/gcalcli/v$pk
sha256sums=('b3b1946136e140fed457778802329af7ce936da052688365e23ecb4b37e5dbe8')
prepare() {
- sed -i -e "1s/$/2/" gcalcli-$pkgver
+ sed -i -e '1s/$/2/' -e 's/import run/import run_flow as run/' gcalcli-$pkgver
}
package() {