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; ass='right' method='get' action='/guix/log/gnu/packages/piet.scm'>
path: root/gnu/packages/piet.scm
AgeCommit message (Expand)Author
2023-09-14gnu: npiet: Use gexps....* gnu/packages/piet.scm (npiet): Use Gexp. [arguments]: Use Gexp and remove tail #t. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Zheng Junjie
2023-09-14gnu: npiet: Fix cross-compilation....* gnu/packages/piet.scm (npiet)[arguments]<#:phases>: Use SEARCH-INPUT-FILE replace WHICH. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Zheng Junjie
2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès
2020-11-09gnu: npiet: Edit description....* gnu/packages/piet.scm (npiet)[description]: Capitalise language names and use @command{} mark-up. Tobias Geerinckx-Rice
2020-11-09gnu: Add piet-toolchain....* gnu/packages/piet.scm (piet-toolchain): New public variable. Tobias Geerinckx-Rice
2020-09-05gnu: Add npiet....* gnu/packages/piet.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Jesse Gibbons