Andrew Geissler | c87764f | 2020-06-27 00:16:32 -0500 | [diff] [blame] | 1 | SUMMARY = "Module for serializing and de-serializing Java objects." |
| 2 | DESCRIPTION = "python-javaobj is a python library that provides functions\ |
| 3 | for reading and writing (writing is WIP currently) Java objects serialized\ |
| 4 | or will be deserialized by ObjectOutputStream. This form of object\ |
| 5 | representation is a standard data interchange format in Java world." |
| 6 | HOMEPAGE = "https://github.com/tcalmant/python-javaobj" |
| 7 | LICENSE = "Apache-2.0" |
William A. Kennington III | b95905d | 2021-06-02 12:40:56 -0700 | [diff] [blame] | 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" |
Andrew Geissler | c87764f | 2020-06-27 00:16:32 -0500 | [diff] [blame] | 9 | |
William A. Kennington III | b95905d | 2021-06-02 12:40:56 -0700 | [diff] [blame] | 10 | SRC_URI[sha256sum] = "38f74db3a57e9998a9774e3614afb95cb396f139f29b3fdb130c5af554435259" |
Andrew Geissler | c87764f | 2020-06-27 00:16:32 -0500 | [diff] [blame] | 11 | |
| 12 | inherit pypi setuptools3 |
| 13 | |
| 14 | BBCLASSEXTEND = "native nativesdk" |
Patrick Williams | b542dec | 2023-06-09 01:26:37 -0500 | [diff] [blame] | 15 | |
| 16 | RDEPENDS:${PN} += " \ |
| 17 | python3-compression \ |
| 18 | python3-logging \ |
| 19 | " |