Search Criteria
Package Details: jasper-voice-control-git 0.0.0-2
Git Clone URL: | https://aur.archlinux.org/jasper-voice-control-git.git (read-only, click to copy) |
---|---|
Package Base: | jasper-voice-control-git |
Description: | Jasper is an open source platform for developing always-on, voice-controlled applications. |
Upstream URL: | https://jasperproject.github.io |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | Holzhaus |
Maintainer: | Holzhaus |
Last Packager: | Holzhaus |
Votes: | 9 |
Popularity: | 0.000000 |
First Submitted: | 2014-10-13 16:44 |
Last Updated: | 2016-05-03 08:13 |
Dependencies (15)
- python2
- python2-apscheduler
- python2-argparse
- python2-mock
- python2-pip
- python2-pyaudio
- python2-requests (python2-requests-git)
- python2-yaml
- git (git-git) (make)
- jasper-plugins (optional) – Jasper standard plugins
- jasper-stt-pocketsphinx (optional) – Pocketsphinx STT engine for Jasper
- jasper-tts-espeak (optional) – espeak TTS engine for Jasper
- jasper-tts-festival (optional) – Festival TTS engine for Jasper
- jasper-tts-google (optional) – Google TTS engine for Jasper
- jasper-tts-pico (optional) – Pico TTS engine for Jasper
Required by (7)
- jasper-stt-pocketsphinx (requires jasper-voice-control)
- jasper-tts-espeak (requires jasper-voice-control)
- jasper-tts-festival (requires jasper-voice-control)
- jasper-tts-flite (requires jasper-voice-control)
- jasper-tts-google (requires jasper-voice-control)
- jasper-tts-ivona (requires jasper-voice-control)
- jasper-tts-pico (requires jasper-voice-control)
Latest Comments
Alkaris commented on 2020-08-18 05:45
This package keeps asking for
python2-tzlocal
when installingpython2-apscheduler
but it doesn't exist and can't be installed, it's justpython-tzlocal
now.Can't even amend the PKGBUILD to tell it to use
python-tzlocal
instead.luntik2012 commented on 2019-04-21 07:09
FlorianJacob commented on 2016-02-17 16:00
My patch using the version recommended it the packaging guidelines for repositories with no tags:
PKGBUILD | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/PKGBUILD b/PKGBUILD
index ee0fd0e..9bbec47 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,8 +1,8 @@
pkgname=jasper-voice-control-git
-pkgver=0.0.0
-pkgrel=2
+pkgver=r447.e6789d7
+pkgrel=3
pkgdesc="Jasper is an open source platform for developing always-on, voice-controlled applications."
arch=('any')
url="https://jasperproject.github.io"
@@ -34,8 +34,9 @@ install='jasper-voice-control.install'
pkgver() {
cd "${srcdir}/jasper-client"
- # Use the tag of the last commit
- git describe --long | sed -E 's/([^-]*-g)/r\1/;s/-/./g'
+ # the git repo has no tags, so use number of revisions since beginning of history
+ # See https://wiki.archlinux.org/index.php/VCS_package_guidelines#Git
+ printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
--
2.7.1
undrwater commented on 2016-02-06 00:28
OK...changed
git describe --long
to
git describe --always
That seemed to work.
undrwater commented on 2016-02-06 00:19
-> Creating working copy of jasper-client git repo...
Reset branch 'makepkg'
==> Starting pkgver()...
fatal: No names found, cannot describe anything.
==> ERROR: pkgver is not allowed to be empty.
==> ERROR: pkgver() generated an invalid version:
==> ERROR: Makepkg was unable to build jasper-voice-control-git.
Fails with the above.
Anthony25 commented on 2016-01-15 09:08
Hello,
You should add "python2-feedreeder" as dependency, as it is needed for the populate script.
kwirkie commented on 2015-03-05 11:19
Added this to remove some files which are git repository related (there may be more files that I've missed):
rm -r "${srcdir}/jasper-client/"{.git,.gitignore,.coveragerc,.travis.yml}
Also added the below to stop it overwriting the configuration when updating:
backup=('var/lib/jasper/.jasper/profile.yml')
Holzhaus commented on 2014-10-25 22:13
Just edit the pyaudio PKGBUILD and add 'armv6h' to the arch=(...) list.
jonaz commented on 2014-10-25 14:49
I have a problem with dependency python2-pyaudio:
==> ERROR: python2-pyaudio is not available for the 'armv6h' architecture.
Note that many packages may need a line added to their PKGBUILD
such as arch=('armv6h').
The build failed.
Dependencies for `jasper-voice-control-git' are not met, not building...