Package Details: mlat-client-git 0.2.13.r0.gfe70767-3

Git Clone URL: https://aur.archlinux.org/mlat-client-git.git (read-only, click to copy)
Package Base: mlat-client-git
Description: Mode S multilateration client by Mutability
Upstream URL: https://github.com/mutability/mlat-client
Keywords: FlighAware mlat mlat-client multilateration mutability piaware
Licenses: GPL-3.0-or-later
Conflicts: fa-mlat-client, mlat-client
Provides: fa-mlat-client, mlat-client
Submitter: None
Maintainer: PanisSupraOmnia
Last Packager: PanisSupraOmnia
Votes: 5
Popularity: 0.005913
First Submitted: 2015-07-23 08:10 (UTC)
Last Updated: 2024-07-16 17:41 (UTC)

Required by (2)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

meijin commented on 2023-09-21 09:20 (UTC)

latest is failing to build:

==> Starting prepare()...
patching file modes_reader.c
Hunk #1 FAILED at 503.
Hunk #2 succeeded at 524 with fuzz 1 (offset 10 lines).
1 out of 2 hunks FAILED -- saving rejects to file modes_reader.c.rej
==> ERROR: A failure occurred in prepare().
    Aborting...
 -> error making: mlat-client-git-exit status 4
 -> Failed to install the following packages. Manual intervention is required:

PanisSupraOmnia commented on 2023-07-30 01:56 (UTC)

Alright, I've gone ahead and added that patch, let me know if it resolves the issue. You may see some build warnings, I started to look into it and will update again when I've got it solved.

PanisSupraOmnia commented on 2023-07-27 13:57 (UTC)

I see, I'll take a look and get this updated in the next few days.

test0 commented on 2023-07-23 16:46 (UTC) (edited on 2023-07-23 16:47 (UTC) by test0)

@PanisSupraOmnia: since python 3.11 mlat-client is not working anymore, I guess the patch reference here could be applied, hoping to fix the issue: https://github.com/mutability/mlat-client/issues/35

mlat-client(2044): Traceback (most recent call last):
mlat-client(2044): File "/usr/lib/piaware/helpers/fa-mlat-client", line 10, in <module>
mlat-client(2044): from mlat.client.coordinator import Coordinator
mlat-client(2044): File "/usr/lib/python3.11/site-packages/mlat/client/coordinator.py", line 26, in <module>
mlat-client(2044): import _modes
mlat-client(2044): ImportError: /usr/lib/python3.11/site-packages/_modes.cpython-311-arm-linux-gnueabihf.so: undefined symbol: _PyFloat_Unpack4

PanisSupraOmnia commented on 2022-01-14 20:49 (UTC)

@test0 Definitely, I'll get that pushed later today.

test0 commented on 2022-01-13 21:26 (UTC)

@PanisSupraOmnia could you please switch the PKGBUILD tothe "dev" branch? it contains more up-to-date code (version 0.2.12) and is being used by default also in piaware.

https://github.com/mutability/mlat-client/commits/dev

fryfrog commented on 2020-02-27 06:56 (UTC)

https://aur.archlinux.org/packages/readsb-git/

https://aur.archlinux.org/packages/adsbexchange-stats-git/

https://aur.archlinux.org/packages/dump978-fa-git/

^ I've made these 3 AUR packages so far in my quest to get adsbx working on a Pi running Arch.

fryfrog commented on 2020-02-27 06:55 (UTC)

I've been thinking about how to make it more generic... I'm also still learning this whole adsb eco system. I wouldn't just drop in what I'm using, but it could be a start.

# /etc/systemd/system/mlat-client.service

[Unit]
Description=mlat client
Documentation=https://github.com/mutability/mlat-client
Wants=network.target readsb.service
After=network.target readsb.service

[Service]
EnvironmentFile=/etc/default/mlat
User=mlat
RuntimeDirectory=mlat
RuntimeDirectoryMode=0755
ExecStart=/usr/bin/mlat-client $USER_OPTIONS

Type=simple
Restart=on-failure
RestartSec=30
Nice=-5

[Install]
WantedBy=default.target
/etc/default/mlat
USER_OPTIONS="--user username --lat 123 --lon 321 --alt 111ft --input-type dump1090 --input-connect localhost:30005 --server feed.adsbexchange.com:31090 --no-udp --results beast,connect,localhost:30004"

PanisSupraOmnia commented on 2020-02-27 06:40 (UTC)

No, that would make a lot of sense. I can probably add one tomorrow. Do you have one you're already using?

fryfrog commented on 2020-02-26 18:22 (UTC)

Would it be crazy to add a .service file?