Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 May 2019 18:43:13 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r501882 - in head/devel: . estd
Message-ID:  <201905171843.x4HIhDSM012599@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Fri May 17 18:43:13 2019
New Revision: 501882
URL: https://svnweb.freebsd.org/changeset/ports/501882

Log:
  New port: devel/estd: Header-only C++ utilities in the style of the standard library

Added:
  head/devel/estd/
  head/devel/estd/Makefile   (contents, props changed)
  head/devel/estd/distinfo   (contents, props changed)
  head/devel/estd/pkg-descr   (contents, props changed)
  head/devel/estd/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri May 17 18:39:32 2019	(r501881)
+++ head/devel/Makefile	Fri May 17 18:43:13 2019	(r501882)
@@ -610,6 +610,7 @@
     SUBDIR += erlang-syslog
     SUBDIR += erlang-unicode_util_compat
     SUBDIR += es-eric6
+    SUBDIR += estd
     SUBDIR += etcd
     SUBDIR += etcd31
     SUBDIR += etcd32

Added: head/devel/estd/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/estd/Makefile	Fri May 17 18:43:13 2019	(r501882)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	estd
+DISTVERSION=	0.3.1
+CATEGORIES=	devel
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Header-only C++ utilities in the style of the standard library
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		cmake
+USE_GITHUB=	yes
+GH_ACCOUNT=	fizyr
+
+NO_ARCH=	yes
+
+do-test: # https://github.com/fizyr/estd/issues/1
+	@cd ${BUILD_WRKSRC} && \
+		${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DBUILD_TESTS:BOOL=ON ${CMAKE_SOURCE_PATH} && \
+		${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \
+		${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} check
+
+.include <bsd.port.mk>

Added: head/devel/estd/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/estd/distinfo	Fri May 17 18:43:13 2019	(r501882)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1558118250
+SHA256 (fizyr-estd-0.3.1_GH0.tar.gz) = c7009c69658ab936522b5f89e14dc3ce51c62edd5d1926af80ee7b8bbfcd6cd6
+SIZE (fizyr-estd-0.3.1_GH0.tar.gz) = 127905

Added: head/devel/estd/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/estd/pkg-descr	Fri May 17 18:43:13 2019	(r501882)
@@ -0,0 +1,8 @@
+estd is a header-only C++ library providing some additional utilities in the
+style of the standard library.
+
+The include files are ordered hierarchically in the style of Boost. You can
+include a whole sublibrary with a single header, or pick only the bits you want
+to use.
+
+WWW: https://github.com/fizyr/estd

Added: head/devel/estd/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/estd/pkg-plist	Fri May 17 18:43:13 2019	(r501882)
@@ -0,0 +1,72 @@
+include/estd/any.hpp
+include/estd/any/any.hpp
+include/estd/convert.hpp
+include/estd/convert/conversion.hpp
+include/estd/convert/convert.hpp
+include/estd/convert/numerical.hpp
+include/estd/convert/stl.hpp
+include/estd/convert/stl/array.hpp
+include/estd/convert/stl/deque.hpp
+include/estd/convert/stl/forward_list.hpp
+include/estd/convert/stl/list.hpp
+include/estd/convert/stl/map.hpp
+include/estd/convert/stl/set.hpp
+include/estd/convert/stl/unordered_map.hpp
+include/estd/convert/stl/unordered_set.hpp
+include/estd/convert/stl/vector.hpp
+include/estd/convert/traits.hpp
+include/estd/heap_array.hpp
+include/estd/heap_array/heap_array.hpp
+include/estd/range.hpp
+include/estd/range/detail/deref_proxy.hpp
+include/estd/range/enumerate.hpp
+include/estd/range/range.hpp
+include/estd/result.hpp
+include/estd/result/detail/copyable.hpp
+include/estd/result/detail/map.hpp
+include/estd/result/detail/result_storage.hpp
+include/estd/result/error.hpp
+include/estd/result/in_place.hpp
+include/estd/result/result.hpp
+include/estd/result/traits.hpp
+include/estd/result/unspecified_category.hpp
+include/estd/scope_guard.hpp
+include/estd/scope_guard/scope_guard.hpp
+include/estd/traits.hpp
+include/estd/traits/containers.hpp
+include/estd/traits/decay_if.hpp
+include/estd/traits/is_comparible.hpp
+include/estd/traits/is_integer_sequence.hpp
+include/estd/traits/is_tuple.hpp
+include/estd/traits/iterator.hpp
+include/estd/traits/replace_type.hpp
+include/estd/traits/type_traits.hpp
+include/estd/tuple.hpp
+include/estd/tuple/fold.hpp
+include/estd/tuple/for_each.hpp
+include/estd/tuple/transform.hpp
+include/estd/tuple/tuple.hpp
+include/estd/tuple/zip.hpp
+include/estd/type_name.hpp
+include/estd/type_name/demangle.hpp
+include/estd/type_name/std.hpp
+include/estd/type_name/std/containers.hpp
+include/estd/type_name/std/containers/array.hpp
+include/estd/type_name/std/containers/deque.hpp
+include/estd/type_name/std/containers/forward_list.hpp
+include/estd/type_name/std/containers/list.hpp
+include/estd/type_name/std/containers/map.hpp
+include/estd/type_name/std/containers/set.hpp
+include/estd/type_name/std/containers/string.hpp
+include/estd/type_name/std/containers/vector.hpp
+include/estd/type_name/type_name.hpp
+include/estd/utility.hpp
+include/estd/utility/integer_sequence.hpp
+include/estd/utility/make_ref.hpp
+include/estd/utility/move_marker.hpp
+include/estd/utility/parameter_pack.hpp
+include/estd/view.hpp
+include/estd/view/view.hpp
+lib/cmake/estd/estd-config-version.cmake
+lib/cmake/estd/estd-config.cmake
+lib/cmake/estd/targets.cmake



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905171843.x4HIhDSM012599>