mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-09-01 16:10:25 +00:00
Changelog: =========== * added support for an additional AIS Application Specific Message (Message Type 8) * US environmental reports (DAC = 367 FID = 33) * significantly improved decoding performance * optimized AIS payload decoding using a base64-backed bit unpacker * reduced NMEA parsing overhead through caching and parser optimizations * improved enum lookup performance * added support for additional AIS Application Specific Messages (Message Type 8) * environmental reports (DAC = 1 FID = 26) * area notices (DAC = 1 FID = 22/23) * route information (DAC = 1 FID = 27/28) * VTS and synthetic target reports * added new enums for SOLAS equipment status and vessel ice class * improved support for decoding application-specific AIS payloads Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
29 lines
850 B
BlitzBasic
29 lines
850 B
BlitzBasic
SUMMARY = "AIS message decoding"
|
|
HOMEPAGE = "https://github.com/M0r13n/pyais"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=79d9e278b76e3e5b3358cd70b328173c"
|
|
|
|
SRC_URI = "git://github.com/M0r13n/pyais;protocol=https;branch=main;tag=v${PV}"
|
|
|
|
SRCREV = "e69a48b31f04ff1bb8c3abb24a311b558a329944"
|
|
|
|
inherit python_setuptools_build_meta ptest-python-pytest
|
|
|
|
DEPENDS += "python3-wheel-native"
|
|
|
|
PYPI_PACKAGE = "pyais"
|
|
|
|
do_install_ptest:append() {
|
|
install -d ${D}${PTEST_PATH}/examples/
|
|
install -Dm 0644 ${S}/examples/*.py ${D}${PTEST_PATH}/examples/
|
|
install -Dm 0644 ${S}/examples/*.nmea ${D}${PTEST_PATH}/examples/
|
|
install -Dm 0644 ${S}/examples/*.ais ${D}${PTEST_PATH}/examples/
|
|
}
|
|
|
|
RDEPENDS:${PN} = "python3-attrs python3-bitarray"
|
|
RDEPENDS:${PN}-ptest += "\
|
|
python3-coverage \
|
|
python3-mypy \
|
|
python3-pytest-cov \
|
|
"
|