python-javaobj 0.4.3-1 source package in Ubuntu

Changelog

python-javaobj (0.4.3-1) unstable; urgency=medium

  [ Ondřej Nový ]
  * d/control: Update Maintainer field with new Debian Python Team
    contact address.
  * d/control: Update Vcs-* fields with new Debian Python Team Salsa
    layout.

  [ Debian Janitor ]
  * debian/copyright: use spaces rather than tabs to start continuation lines.
  * Set upstream metadata fields: Contact.
  * Fix field name typo in debian/copyright (X-Comment => Comment).
  * Update pattern for GitHub archive URLs from /<org>/<repo>/tags
    page/<org>/<repo>/archive/<tag> -> /<org>/<repo>/archive/refs/tags/<tag>.
  * Set upstream metadata fields: Contact.
  * Fix field name typo in debian/copyright (X-Comment => Comment).
  * Update pattern for GitHub archive URLs from /<org>/<repo>/tags page/<org>/<repo>/archive/<tag> -> /<org>/<repo>/archive/refs/tags/<tag>.

  [ Hans-Christoph Steiner ]
  * New upstream version 0.4.3

 -- Hans-Christoph Steiner <email address hidden>  Mon, 06 Feb 2023 00:42:43 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-javaobj_0.4.3-1.dsc 1.7 KiB 82b2e9c4371a93b31745b57d96a291bf0385b0c1b1e2010fc3e1b4b386a48972
python-javaobj_0.4.3.orig.tar.gz 70.2 KiB 49c1a55228d7709f2c537e6684ebd1a3f8faf25d2fe6979104054f0e811bf452
python-javaobj_0.4.3-1.debian.tar.xz 3.5 KiB 4b595e0e83768e5091e6b32e7667e3bbe255eeb63c09b9ecbdfabfc798bc7caa

Available diffs

No changes file available.

Binary packages built by this source

python3-javaobj: read and write Java objects serialized by ObjectOutputStream

 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.
 .
 The javaobj module exposes an API familiar to users of the standard
 library marshal, pickle and json modules.
 .
  * Java object instance un-marshalling
  * Java classes un-marshalling
  * Primitive values un-marshalling
  * Automatic conversion of Java Collections to Python ones
    (HashMap => dict, ArrayList => list, etc.)
  * Basic marshalling of simple Java objects (v1 implementation only)