Submitted upstream: https://github.com/ibus/ibus-anthy/pull/35 diff --git a/tests/test-build.sh b/tests/test-build.sh index e83b78f..bbfa7e1 100755 --- a/tests/test-build.sh +++ b/tests/test-build.sh @@ -63,26 +63,33 @@ parse_args() done; } +maybe_install_pycotap() { + # Red Hat specific hint. + if test -f /etc/redhat-release ; then + if ! rpm -q --quiet python3-pycotap; then + echo "Please install python3-pycotap" + exit -1 + fi + fi; + + # Check if pycotap is already available. + if ! python3 -m pycotap >/dev/null; then + echo "pycotap not found; installing via pip" + if ! pip install pycotap --user; then + echo "failed to install pycotap" + exit -1 + fi + fi +} + init_environment() { if test x$FORCE_TEST != x ; then RUN_ARGS="$RUN_ARGS --force"; fi; - HAS_TAP=0; - if test -f /etc/redhat-release ; then - rpm -q --quiet python3-pycotap - if test $? -ne 0 ; then - echo "Not found python3-pycotap"; - exit -1; - fi; - HAS_TAP=1; - fi; - TAP_DIR=`python -m site --user-site`/pycotap; - if test $HAS_TAP -ne 1 && \ - test x"$TAP_DIR" != x && test ! -d "$TAP_DIR" ; then - echo "pip install pycotap --user"; - pip install pycotap --user; - fi; + + maybe_install_pycotap + if test ! -f $BUILDDIR/../data/$ANTHY_SCHEMA_FILE ; then echo "Not found $BUILDDIR/../data/$ANTHY_SCHEMA_FILE"; exit -1; orm class='right' method='get' action='/guix/log/gnu/services/spice.scm'>
path: root/gnu/services/spice.scm
AgeCommit message (Expand)Author
2017-01-25services: Fix 'mkdir-p' in activation scripts....* gnu/services/cups.scm (%cups-activation): Import (guix build utils). * gnu/services/mail.scm (opensmtpd-activation): Idem. * gnu/services/networking.scm (ntp-service-activation): Idem. * gnu/services/spice.scm (spice-vdagent-activation): Idem. * gnu/services/ssh.scm (openssh-activation): Idem. (dropbear-activation): Idem. * gnu/services/vpn.scm (%openvpn-activation): Idem. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Clément Lassieur
2016-09-10system: Use 'file-append' to denote file names....* gnu/services/avahi.scm, gnu/services/base.scm, gnu/services/databases.scm, gnu/services/dbus.scm, gnu/services/desktop.scm, gnu/services/dict.scm, gnu/services/mail.scm, gnu/services/networking.scm, gnu/services/sddm.scm, gnu/services/spice.scm, gnu/services/ssh.scm, gnu/services/web.scm, gnu/services/xorg.scm, gnu/system.scm: Replace the #~(string-append #$pkg "/bin/foo") idiom with (file-append pkg "/bin/foo"). Ludovic Courtès
2016-08-05services: Add spice vdagent service....* gnu/services/spice.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * doc/guix.texi (Various Services): New subheading. David Craven