svn commit: r523975 - in head/devel: . cereal
Eugene Grosbein
eugen at FreeBSD.org
Fri Jan 24 17:38:05 UTC 2020
Author: eugen
Date: Fri Jan 24 17:38:04 2020
New Revision: 523975
URL: https://svnweb.freebsd.org/changeset/ports/523975
Log:
New port: devel/cereal
cereal is a header-only C++11 serialization library. cereal takes arbitrary
data types and reversibly turns them into different representations, such as
compact binary encodings, XML, or JSON. cereal was designed to be fast,
light-weight, and easy to extend - it has no external dependencies and
can be easily bundled with other code or used standalone.
This port is a dependency for upcoming port for PrusaSlicer.
PR: 243528
Submitted by: Teodor Sigaev <teodor at sigaev.ru>
Added:
head/devel/cereal/
head/devel/cereal/Makefile (contents, props changed)
head/devel/cereal/distinfo (contents, props changed)
head/devel/cereal/pkg-descr (contents, props changed)
head/devel/cereal/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Fri Jan 24 17:11:00 2020 (r523974)
+++ head/devel/Makefile Fri Jan 24 17:38:04 2020 (r523975)
@@ -305,6 +305,7 @@
SUBDIR += cdecl
SUBDIR += cdialog
SUBDIR += cdk
+ SUBDIR += cereal
SUBDIR += cervisia
SUBDIR += cflow
SUBDIR += cflow2vcg
Added: head/devel/cereal/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/cereal/Makefile Fri Jan 24 17:38:04 2020 (r523975)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME= cereal
+DISTVERSIONPREFIX= v
+DISTVERSION= 1.3.0
+CATEGORIES= devel
+
+MAINTAINER= teodor at sigaev.ru
+COMMENT= C++11 library for serialization
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+LIB_DEPENDS= libboost_system.so:devel/boost-libs
+BUILD_DEPENDS= boost-libs>=1.69:devel/boost-libs \
+ cmake>=2.6.2:devel/cmake \
+ ninja>=1.8.2:devel/ninja
+
+USES= cmake
+USE_GITHUB= yes
+GH_ACCOUNT= USCiLab
+
+CFLAGS+= -Wno-unused-private-field
+
+.include <bsd.port.mk>
Added: head/devel/cereal/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/cereal/distinfo Fri Jan 24 17:38:04 2020 (r523975)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1573867507
+SHA256 (USCiLab-cereal-v1.3.0_GH0.tar.gz) = 329ea3e3130b026c03a4acc50e168e7daff4e6e661bc6a7dfec0d77b570851d5
+SIZE (USCiLab-cereal-v1.3.0_GH0.tar.gz) = 374585
Added: head/devel/cereal/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/cereal/pkg-descr Fri Jan 24 17:38:04 2020 (r523975)
@@ -0,0 +1,7 @@
+cereal is a header-only C++11 serialization library. cereal takes arbitrary
+data types and reversibly turns them into different representations, such as
+compact binary encodings, XML, or JSON. cereal was designed to be fast,
+light-weight, and easy to extend - it has no external dependencies and can be
+easily bundled with other code or used standalone.
+
+WWW: https://github.com/USCiLab/cereal
Added: head/devel/cereal/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/cereal/pkg-plist Fri Jan 24 17:38:04 2020 (r523975)
@@ -0,0 +1,88 @@
+include/cereal/access.hpp
+include/cereal/archives/adapters.hpp
+include/cereal/archives/binary.hpp
+include/cereal/archives/json.hpp
+include/cereal/archives/portable_binary.hpp
+include/cereal/archives/xml.hpp
+include/cereal/cereal.hpp
+include/cereal/details/helpers.hpp
+include/cereal/details/polymorphic_impl.hpp
+include/cereal/details/polymorphic_impl_fwd.hpp
+include/cereal/details/static_object.hpp
+include/cereal/details/traits.hpp
+include/cereal/details/util.hpp
+include/cereal/external/base64.hpp
+include/cereal/external/rapidjson/allocators.h
+include/cereal/external/rapidjson/cursorstreamwrapper.h
+include/cereal/external/rapidjson/document.h
+include/cereal/external/rapidjson/encodedstream.h
+include/cereal/external/rapidjson/encodings.h
+include/cereal/external/rapidjson/error/en.h
+include/cereal/external/rapidjson/error/error.h
+include/cereal/external/rapidjson/filereadstream.h
+include/cereal/external/rapidjson/filewritestream.h
+include/cereal/external/rapidjson/fwd.h
+include/cereal/external/rapidjson/internal/biginteger.h
+include/cereal/external/rapidjson/internal/diyfp.h
+include/cereal/external/rapidjson/internal/dtoa.h
+include/cereal/external/rapidjson/internal/ieee754.h
+include/cereal/external/rapidjson/internal/itoa.h
+include/cereal/external/rapidjson/internal/meta.h
+include/cereal/external/rapidjson/internal/pow10.h
+include/cereal/external/rapidjson/internal/regex.h
+include/cereal/external/rapidjson/internal/stack.h
+include/cereal/external/rapidjson/internal/strfunc.h
+include/cereal/external/rapidjson/internal/strtod.h
+include/cereal/external/rapidjson/internal/swap.h
+include/cereal/external/rapidjson/istreamwrapper.h
+include/cereal/external/rapidjson/memorybuffer.h
+include/cereal/external/rapidjson/memorystream.h
+include/cereal/external/rapidjson/msinttypes/inttypes.h
+include/cereal/external/rapidjson/msinttypes/stdint.h
+include/cereal/external/rapidjson/ostreamwrapper.h
+include/cereal/external/rapidjson/pointer.h
+include/cereal/external/rapidjson/prettywriter.h
+include/cereal/external/rapidjson/rapidjson.h
+include/cereal/external/rapidjson/reader.h
+include/cereal/external/rapidjson/schema.h
+include/cereal/external/rapidjson/stream.h
+include/cereal/external/rapidjson/stringbuffer.h
+include/cereal/external/rapidjson/writer.h
+include/cereal/external/rapidxml/license.txt
+include/cereal/external/rapidxml/manual.html
+include/cereal/external/rapidxml/rapidxml.hpp
+include/cereal/external/rapidxml/rapidxml_iterators.hpp
+include/cereal/external/rapidxml/rapidxml_print.hpp
+include/cereal/external/rapidxml/rapidxml_utils.hpp
+include/cereal/macros.hpp
+include/cereal/specialize.hpp
+include/cereal/types/array.hpp
+include/cereal/types/atomic.hpp
+include/cereal/types/base_class.hpp
+include/cereal/types/bitset.hpp
+include/cereal/types/boost_variant.hpp
+include/cereal/types/chrono.hpp
+include/cereal/types/common.hpp
+include/cereal/types/complex.hpp
+include/cereal/types/concepts/pair_associative_container.hpp
+include/cereal/types/deque.hpp
+include/cereal/types/forward_list.hpp
+include/cereal/types/functional.hpp
+include/cereal/types/list.hpp
+include/cereal/types/map.hpp
+include/cereal/types/memory.hpp
+include/cereal/types/optional.hpp
+include/cereal/types/polymorphic.hpp
+include/cereal/types/queue.hpp
+include/cereal/types/set.hpp
+include/cereal/types/stack.hpp
+include/cereal/types/string.hpp
+include/cereal/types/tuple.hpp
+include/cereal/types/unordered_map.hpp
+include/cereal/types/unordered_set.hpp
+include/cereal/types/utility.hpp
+include/cereal/types/valarray.hpp
+include/cereal/types/variant.hpp
+include/cereal/types/vector.hpp
+include/cereal/version.hpp
+share/cmake/cereal/cereal-config.cmake
More information about the svn-ports-all
mailing list