OK sthen@
Comment:
concise binary object representation
Description:
This module converts Perl data structures to the Concise Binary
Object Representation (CBOR) and vice versa. CBOR is a fast binary
serialisation format that aims to use an (almost) superset of the
JSON data model, i.e. when you can represent something useful in
JSON, you should be able to represent it in CBOR.
OK sthen
Comment:
fast CBOR for everyone
Description:
The Concise Binary Object Representation (CBOR, RFC 8949) is a data
format whose design goals include the possibility of extremely small
code size, fairly small message size, and extensibility without the need
for version negotiation.
This library implements CBOR via XS under a license that permits
commercial usage with no "strings attached".
- Use CFLAGS and CXXFLAGS instead of CMAKE_CXX_FLAGS and CMAKE_C_FLAGS.
- Use MODCMAKE_LDFLAGS instead of CMAKE_EXE_LINKER_FLAGS
- Fix broken builds with CMake 3.23
From Aisha Tammy <openbsd AT aisha DOT cc>
ok sthen@
COMMENT
schema to ldif converter and manager
DESCR
schema2ldif is a tool to convert .schema files to .ldif
files for usage with an OpenLDAP server.
ldap-schema-manager is a tool to manage schemas by
allowing the following functions among other functions:
- insertion
- deletion
- modification
- listing current schemas
Decoding using the -lf option on powerpc made ish freeze. A looped
fgetc(3) call never reached EOF, since the return value was stored
as a char, that is unsigned on powerpc and arm*, instead of int.
OK jca@
if a port needs 2.x then set MODPY_VERSION=${MODPY_DEFAULT_VERSION_2}.
This commit doesn't change any versions currently used; it may be that
some ports have MODPY_DEFAULT_VERSION_2 but don't require it, those
should be cleaned up in the course of updating ports where possible.
Python module ports providing py3-* packages should still use
FLAVOR=python3 so that we don't have a mixture of dependencies some
using ${MODPY_FLAVOR} and others not.