pigmonkey/spark

Wormhole: missed AUR dependencies

petRUShka opened this issue · 1 comments

It seems like AUR dependencies cannot be installed (or detected) via ansible-aur module.

Possible solutions:

  1. (dirty but easy one) list in ansible role all aur dependencies (at the moment) of wormhole by hands like this:
  2 - name: Install magic-wormhole
  3   aur: name={{ item }} user={{ user.name }}
  4   with_items:
  5     - python-tqdm
  6     - python-hkdf
  7     - python-pynacl
  8     - python-spake2
  9     - magic-wormhole
  1. make ansible-aur module to use yaourt (or something like this) which is capable to install AUR dependencies

Error itself:

< TASK [wormhole : Install magic-wormhole] >
 ------------------------------------------
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||

fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "msg": "failed to install package magic-wormhole, because: ==> Making package: magic-wormhole 0.8.1-3 (Wed Dec 28 19:27:56 AEDT 2016)\n==> Checkin
g runtime dependencies...\n==> Installing missing dependencies...\nerror: target not found: python-tqdm\nerror: target not found: python-hkdf\nerror: target not found: python-pynacl\nerror: target not found: pyth
on-spake2\n==> ERROR: 'pacman' failed to install missing dependencies.\n"}

I forgot it didn't handle dependencies. Thanks.