mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Changelog: ============ -Added support for java.lang.Class arrays -Fixed marshalling of JavaByteArrays -Tests ran with pytest manually on Python 2.7, 3.6-3.12 License-Update: type of LICENSE changed to "ASCII text, with CRLF line terminators" Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
20 lines
735 B
BlitzBasic
20 lines
735 B
BlitzBasic
SUMMARY = "Module for serializing and de-serializing Java objects."
|
|
DESCRIPTION = "python-javaobj is a python library that provides functions\
|
|
for reading and writing (writing is WIP currently) Java objects serialized\
|
|
or will be deserialized by ObjectOutputStream. This form of object\
|
|
representation is a standard data interchange format in Java world."
|
|
HOMEPAGE = "https://github.com/tcalmant/python-javaobj"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=d273d63619c9aeaf15cdaf76422c4f87"
|
|
|
|
SRC_URI[sha256sum] = "e4e3257ef2cf81a3339787a4d5cf924e54c91f095a723f6d2584dae61d4396ed"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-compression \
|
|
python3-logging \
|
|
"
|