Package Details: kalliope 0.7.2-2

Git Clone URL: https://aur.archlinux.org/kalliope.git (read-only, click to copy)
Package Base: kalliope
Description: Modular always-on voice controlled personal assistant designed for home automation
Upstream URL: https://github.com/kalliope-project/kalliope
Licenses: MIT
Submitter: xantares
Maintainer: BrainDamage
Last Packager: BrainDamage
Votes: 3
Popularity: 0.000000
First Submitted: 2016-12-19 10:26 (UTC)
Last Updated: 2022-08-05 05:35 (UTC)

Latest Comments

maurice-mueller commented on 2021-08-05 19:36 (UTC) (edited on 2021-08-05 19:46 (UTC) by maurice-mueller)

Can you update the PKGBUILD as suggested by BrainDamage?

Here would be a copy&paste version. Thanks!

prepare()
{
  cd "$srcdir/kalliope-${pkgver}"
  sed -i "s|Werkzeug==0.16.1|Werkzeug|g" setup.py
  sed -i "s|gevent==1.4.0|gevent|g" setup.py
}


build()
{
  export PYTHON_VERSION_EXEC=`python -c 'import sys; print("python%d.%d" % (sys.version_info.major,sys.version_info.minor))'`
  export PYTHON_VERSION_SHORT=`python -c 'import sys; print("python%d%d" % (sys.version_info.major,sys.version_info.minor))'`
  cd "$srcdir/kalliope-${pkgver}"
  python setup.py build

  # bundle snowboy
  mkdir -p ./build/lib/kalliope/trigger/snowboy/x86_64/python38/
  cp /usr/lib/$PYTHON_VERSION_EXEC/site-packages/snowboy/_snowboydetect.so ./build/lib/kalliope/trigger/snowboy/x86_64/$PYTHON_VERSION_SHORT/
}

package()
{
  cd "$srcdir/kalliope-${pkgver}"
  python setup.py install --root="${pkgdir}" --optimize=1
  rm -r ${pkgdir}/usr/lib/$PYTHON_VERSION_EXEC/site-packages/kalliope/trigger/snowboy/armv*
}

ColonelThirtyTwo commented on 2021-04-25 20:11 (UTC)

Doesn't seem to install. With pikaur:

:: Installing repository dependencies for pocketsphinx:
error: target not found: sphinxbase=5prealpha

Though may be upstream with pocketsphinx

BrainDamage commented on 2021-01-20 01:42 (UTC)

please don't hardcode the python versions in the pkgbuild, you can have python itself give them to you:

python -c 'import site; print(site.getsitepackages()[0])'

for the site-packages path

python -c 'import sys; print("python%d%d" % (sys.version_info.major,sys.version_info.minor))'

for the weird snowboy embedding

cadilhac commented on 2020-04-06 22:37 (UTC)

It seems that extra/python-pyasn1 is missing from the dependencies.

luntik2012 commented on 2019-04-14 09:57 (UTC) (edited on 2019-04-14 10:04 (UTC) by luntik2012)

==> Building and installing package
==> Install or build missing dependencies for kalliope:
[sudo] password for user: 
error: target not found: python-flask_cors
==> Restart building kalliope ? [y/N

there is only python-flask-cors package in our

Frnmst commented on 2017-09-01 12:50 (UTC)

It seems to be an ALSA bug. See: https://github.com/kalliope-project/kalliope/issues/328#issuecomment-326571341 for a temporary fix.

Frnmst commented on 2017-08-31 16:20 (UTC)

I get an Aborted (core dumped) error. See this: https://github.com/kalliope-project/kalliope/issues/328

xantares commented on 2016-12-20 21:43 (UTC)

yes, but I had already these installed prior to packaging so they didn't show up.

<deleted-account> commented on 2016-12-20 20:48 (UTC)

pkg_resources.DistributionNotFound: The 'feedparser==5.2.1' distribution was not found and is required by kalliope pkg_resources.DistributionNotFound: The 'mock==2.0.0' distribution was not found and is required by kalliope Have you tried to install this at all? >.<

<deleted-account> commented on 2016-12-19 11:23 (UTC)

Appears python2-pygmail doesn't exist in the aur atm. There is a -git package however.