libnop 0.0~git20200728.45dfe0f-4 source package in Ubuntu

Changelog

libnop (0.0~git20200728.45dfe0f-4) unstable; urgency=medium

  * Cherry-pick upstream commit to fix GCC-11 FTBFS. (Closes: #984190)
  * Add d/watch file to track upstream changes.

 -- Mo Zhou <email address hidden>  Sat, 13 Nov 2021 15:08:42 -0500

Upload details

Uploaded by:
Debian Deep Learning Team
Uploaded to:
Sid
Original maintainer:
Debian Deep Learning Team
Architectures:
any
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
Jammy release universe misc

Downloads

File Size SHA-256 Checksum
libnop_0.0~git20200728.45dfe0f-4.dsc 2.0 KiB 6f7443baa5b45007db5dff754898c57ac2de010e8def781c5bdded9c3317bc88
libnop_0.0~git20200728.45dfe0f.orig.tar.xz 94.6 KiB 21ae6863067e76aca989941d932e5c9d55ecd44ce349c72d23be219a66b975be
libnop_0.0~git20200728.45dfe0f-4.debian.tar.xz 3.2 KiB eee3ed42e927955dfd0e2e5685435c0b47d14f2f7d69115fa720a7e18a7cd29c

No changes file available.

Binary packages built by this source

libnop-dev: C++ Native Object Protocols

 libnop is a header-only library for serializing and deserializing C++ data
 types without external code generators or runtime support libraries. The only
 mandatory requirement is a compiler that supports the C++14 standard.
 .
 libnop has the following goals:
 .
   * Make simple serialization tasks easy and complex tasks tractable.
   * Remove the need to use code generators and schema files to describe
     data types, formats, and protocols: perform these tasks naturally
     within the C++ language.
   * Avoid additional runtime support requirements for serialization.
   * Provide contemporary features such as bidirectional binary
     compatibility, data validation, type safety, and type fungibility.
   * Handle intrinsic types, common STL types and containers, and
     user-defined types with a minimum of effort.
   * Produce optimized code that is easy to analyze and profile.
   * Avoid internal dynamic memory allocation when possible.