Package Details: python-pymavlink-git r2452.a1c7106-1

Git Clone URL: https://aur.archlinux.org/python-pymavlink-git.git (read-only, click to copy)
Package Base: python-pymavlink-git
Description: python MAVLink interface and utilities
Upstream URL: https://github.com/ArduPilot/pymavlink/
Licenses: LGPL v3
Conflicts: python-pymavlink, python2-pymavlink, python2-pymavlink-git
Provides: python-pymavlink
Submitter: bobpaul
Maintainer: bobpaul
Last Packager: bobpaul
Votes: 0
Popularity: 0.000000
First Submitted: 2019-09-11 19:00 (UTC)
Last Updated: 2019-09-13 01:29 (UTC)

Dependencies (3)

Required by (5)

Sources (1)

Latest Comments

acxz commented on 2020-03-20 05:30 (UTC) (edited on 2020-03-20 05:33 (UTC) by acxz)

@bobpaul thx for the fast response! I am getting the following issue when installing mavlink from the AUR. (I just recently created it.)

https://github.com/acxz/pkgbuilds/issues/19

It could be the release of mavlink is so old that it assumes mavgen is in tools. Let me try with mavlink-git.

EDIT: Yeah mavlink-git worked just fine for me, sorry to bother you!

bobpaul commented on 2020-03-20 04:23 (UTC)

Are you sure that's the correct module path? The standalone mavgen.py script gets mavgen from generator, not tools:

$ cat $(which mavgen.py )
#!/usr/bin/python

'''
parse a MAVLink protocol XML file and generate a python implementation

Copyright Andrew Tridgell 2011
Released under GNU GPL version 3 or later

'''

# allow running mavgen from within the tree without installing
if __name__ == "__main__" and __package__ is None:
    from os import sys, path
    sys.path.insert(0, path.dirname(path.dirname(path.dirname(path.abspath(__file__)))))

from pymavlink.generator import mavgen
from pymavlink.generator import mavparse

acxz commented on 2020-03-19 23:48 (UTC)

While this package does build for me, it seems like it is not installing the `pymavlink.tools.mavgen' module. Can you take a look into this?