diff options
author | Tim Biermann <tbier@posteo.de> | 2020-11-03 18:54:40 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2020-11-03 18:54:40 +0000 |
commit | 413374c40783e284f8201c94ff3bb8355a9b34f7 (patch) | |
tree | c4f1895d94630f569fa060bc5a090522e995e556 /khal | |
parent | afffabc8b809d71ab798d4db24a3e34b8e4d72a4 (diff) | |
download | contrib-413374c40783e284f8201c94ff3bb8355a9b34f7.tar.gz contrib-413374c40783e284f8201c94ff3bb8355a9b34f7.tar.xz |
khal: updated python syntax
Diffstat (limited to 'khal')
-rw-r--r-- | khal/.signature | 4 | ||||
-rw-r--r-- | khal/Pkgfile | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/khal/.signature b/khal/.signature index 78c60f404..8e05225ed 100644 --- a/khal/.signature +++ b/khal/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF39gTDHtRWED58dLlwnvWYaAmJoWwsTf+uUuAcivUeq3DUH9HkVgmwHnNo/TTJoK52fL2Bzk9UpTqOb85HWDmNQE= -SHA256 (Pkgfile) = e3637e030802a45d8c7f486defdc0bf67307fb64107fd3464a39c85b5a57ca70 +RWSagIOpLGJF31GfzqDeiLYaudKXrKu6OX+L8X+xpCThJRAh60m/j5af/JPLbpLVfqe86U1c8tLKvS4j1JRVS4xUNKtwreuJUgk= +SHA256 (Pkgfile) = 247f1bacb628cb3dafcfbdf5980989fd10eb42bbe1b6572aacfb8ec96424c3bf SHA256 (.footprint) = 64ee2b25b47f73bf5a2ea9b68702b2cb777d6673109f696fe80efdefa461cba0 SHA256 (khal-0.10.2.tar.gz) = 494f215c3d1cb7a1f8d756b440809d255bd20e2937f98bd0b5d44e42d4cb1087 diff --git a/khal/Pkgfile b/khal/Pkgfile index 28651da4e..b9f21bb43 100644 --- a/khal/Pkgfile +++ b/khal/Pkgfile @@ -10,13 +10,13 @@ source=(https://files.pythonhosted.org/packages/source/k/$name/$name-$version.ta build() { cd $name-$version - python3 setup.py build - python3 setup.py install \ + /usr/bin/python3 setup.py build + /usr/bin/python3 setup.py install \ --prefix=/usr \ --optimize=1 \ --skip-build \ --root=$PKG - if [ -e /lib/zsh ]; then + if [ -e /lib/zsh || -e /usr/lib/zsh ]; then install -Dm644 misc/__khal $PKG/usr/share/zsh/site-functions/_khal fi } |