git: 965d752301fd - main - devel/bitsery: New port: Binary serialization library
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 31 Dec 2023 08:25:25 UTC
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=965d752301fd5bbe033010a8c911dfedfdb2a170 commit 965d752301fd5bbe033010a8c911dfedfdb2a170 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2023-12-31 07:26:06 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2023-12-31 08:25:20 +0000 devel/bitsery: New port: Binary serialization library --- devel/Makefile | 1 + devel/bitsery/Makefile | 23 ++++++++++++++++++ devel/bitsery/distinfo | 3 +++ devel/bitsery/pkg-descr | 5 ++++ devel/bitsery/pkg-plist | 62 +++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 94 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index f6db9714f24d..feeb6dfdd492 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -294,6 +294,7 @@ SUBDIR += bison SUBDIR += bit SUBDIR += bitkeeper + SUBDIR += bitsery SUBDIR += blame SUBDIR += blitz SUBDIR += bloaty diff --git a/devel/bitsery/Makefile b/devel/bitsery/Makefile new file mode 100644 index 000000000000..0496ba36b0fd --- /dev/null +++ b/devel/bitsery/Makefile @@ -0,0 +1,23 @@ +PORTNAME= bitsery +DISTVERSIONPREFIX= v +DISTVERSION= 5.2.3-3 +DISTVERSIONSUFFIX= -g94f7ada +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Binary serialization library +WWW= https://github.com/fraillt/bitsery + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake:testing compiler:c++14-lang + +USE_GITHUB= yes +GH_ACCOUNT= fraillt + +CMAKE_TESTING_ON= BITSERY_BUILD_TESTS # tests fail to compile, see https://github.com/fraillt/bitsery/issues/111 + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/bitsery/distinfo b/devel/bitsery/distinfo new file mode 100644 index 000000000000..a4a22fbe8475 --- /dev/null +++ b/devel/bitsery/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1704004908 +SHA256 (fraillt-bitsery-v5.2.3-3-g94f7ada_GH0.tar.gz) = eb0b584a34e092f2d37706fc091726446686e1d5bef8549bbb9fff1dfb38d6da +SIZE (fraillt-bitsery-v5.2.3-3-g94f7ada_GH0.tar.gz) = 117221 diff --git a/devel/bitsery/pkg-descr b/devel/bitsery/pkg-descr new file mode 100644 index 000000000000..5c154ec86fdd --- /dev/null +++ b/devel/bitsery/pkg-descr @@ -0,0 +1,5 @@ +Bitsery is a header only C++ binary serialization library. It is designed around +the networking requirements for real-time data delivery, especially for games. + +All cross-platform requirements are enforced at compile time, so serialized data +do not store any meta-data information and is as small as possible. diff --git a/devel/bitsery/pkg-plist b/devel/bitsery/pkg-plist new file mode 100644 index 000000000000..7e8b24f31c99 --- /dev/null +++ b/devel/bitsery/pkg-plist @@ -0,0 +1,62 @@ +include/bitsery/adapter/buffer.h +include/bitsery/adapter/measure_size.h +include/bitsery/adapter/stream.h +include/bitsery/bitsery.h +include/bitsery/brief_syntax.h +include/bitsery/brief_syntax/array.h +include/bitsery/brief_syntax/atomic.h +include/bitsery/brief_syntax/chrono.h +include/bitsery/brief_syntax/deque.h +include/bitsery/brief_syntax/forward_list.h +include/bitsery/brief_syntax/list.h +include/bitsery/brief_syntax/map.h +include/bitsery/brief_syntax/memory.h +include/bitsery/brief_syntax/queue.h +include/bitsery/brief_syntax/set.h +include/bitsery/brief_syntax/stack.h +include/bitsery/brief_syntax/string.h +include/bitsery/brief_syntax/tuple.h +include/bitsery/brief_syntax/unordered_map.h +include/bitsery/brief_syntax/unordered_set.h +include/bitsery/brief_syntax/variant.h +include/bitsery/brief_syntax/vector.h +include/bitsery/common.h +include/bitsery/deserializer.h +include/bitsery/details/adapter_bit_packing.h +include/bitsery/details/adapter_common.h +include/bitsery/details/brief_syntax_common.h +include/bitsery/details/not_defined_type.h +include/bitsery/details/serialization_common.h +include/bitsery/ext/compact_value.h +include/bitsery/ext/entropy.h +include/bitsery/ext/growable.h +include/bitsery/ext/inheritance.h +include/bitsery/ext/pointer.h +include/bitsery/ext/std_atomic.h +include/bitsery/ext/std_bitset.h +include/bitsery/ext/std_chrono.h +include/bitsery/ext/std_map.h +include/bitsery/ext/std_optional.h +include/bitsery/ext/std_queue.h +include/bitsery/ext/std_set.h +include/bitsery/ext/std_smart_ptr.h +include/bitsery/ext/std_stack.h +include/bitsery/ext/std_tuple.h +include/bitsery/ext/std_variant.h +include/bitsery/ext/utils/composite_type_overloads.h +include/bitsery/ext/utils/memory_resource.h +include/bitsery/ext/utils/pointer_utils.h +include/bitsery/ext/utils/polymorphism_utils.h +include/bitsery/ext/utils/rtti_utils.h +include/bitsery/ext/value_range.h +include/bitsery/serializer.h +include/bitsery/traits/array.h +include/bitsery/traits/core/std_defaults.h +include/bitsery/traits/core/traits.h +include/bitsery/traits/deque.h +include/bitsery/traits/forward_list.h +include/bitsery/traits/list.h +include/bitsery/traits/string.h +include/bitsery/traits/vector.h +lib/cmake/bitsery/BitseryConfig.cmake +lib/cmake/bitsery/BitseryConfigVersion.cmake