svn commit: r560745 - in head/devel: . functionalplus

Yuri Victorovich yuri at FreeBSD.org
Fri Jan 8 01:30:59 UTC 2021


Author: yuri
Date: Fri Jan  8 01:30:58 2021
New Revision: 560745
URL: https://svnweb.freebsd.org/changeset/ports/560745

Log:
  New port: devel/functionalplus: C++ header-only library that helps write concise and readable C++ code

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Jan  8 01:20:54 2021	(r560744)
+++ head/devel/Makefile	Fri Jan  8 01:30:58 2021	(r560745)
@@ -708,6 +708,7 @@
     SUBDIR += ftjam
     SUBDIR += ftnchek
     SUBDIR += fuel
+    SUBDIR += functionalplus
     SUBDIR += fuzzylite
     SUBDIR += fxdiv
     SUBDIR += g-wrap

Added: head/devel/functionalplus/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/functionalplus/Makefile	Fri Jan  8 01:30:58 2021	(r560745)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	functionalplu
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.2.13-p0
+CATEGORIES=	devel
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	C++ header-only library that helps write concise and readable C++ code
+
+LICENSE=	BSL
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		cmake
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	Dobiasd
+GH_PROJECT=	FunctionalPlus
+
+NO_BUILD=	yes
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/functionalplus/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/functionalplus/distinfo	Fri Jan  8 01:30:58 2021	(r560745)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1610069263
+SHA256 (Dobiasd-FunctionalPlus-v0.2.13-p0_GH0.tar.gz) = 62f61ce6500859f0d77306b1644b5c6992287688de38e170b17b8a66b2448b54
+SIZE (Dobiasd-FunctionalPlus-v0.2.13-p0_GH0.tar.gz) = 279867

Added: head/devel/functionalplus/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/functionalplus/pkg-descr	Fri Jan  8 01:30:58 2021	(r560745)
@@ -0,0 +1,8 @@
+FunctionalPlus is a small header-only library supporting you in reducing code
+noise and in dealing with only one single level of abstraction at a time. By
+increasing brevity and maintainability of your code it can improve productivity
+in the long run. It pursues these goals by providing pure and easy-to-use
+functions that free you from implementing commonly used flows of control over
+and over again.
+
+WWW: https://github.com/Dobiasd/FunctionalPlus

Added: head/devel/functionalplus/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/functionalplus/pkg-plist	Fri Jan  8 01:30:58 2021	(r560745)
@@ -0,0 +1,52 @@
+include/fplus/benchmark_session.hpp
+include/fplus/compare.hpp
+include/fplus/composition.hpp
+include/fplus/container_common.hpp
+include/fplus/container_properties.hpp
+include/fplus/container_traits.hpp
+include/fplus/curry.hpp
+include/fplus/curry_instances.autogenerated_defines
+include/fplus/extrapolate.hpp
+include/fplus/filter.hpp
+include/fplus/fplus.hpp
+include/fplus/function_traits.hpp
+include/fplus/fwd.hpp
+include/fplus/fwd_instances.autogenerated_defines
+include/fplus/generate.hpp
+include/fplus/internal/apply.hpp
+include/fplus/internal/asserts/composition.hpp
+include/fplus/internal/asserts/functions.hpp
+include/fplus/internal/asserts/pairs.hpp
+include/fplus/internal/compare.hpp
+include/fplus/internal/composition.hpp
+include/fplus/internal/container_common.hpp
+include/fplus/internal/function_traits_asserts.hpp
+include/fplus/internal/invoke.hpp
+include/fplus/internal/meta.hpp
+include/fplus/internal/split.hpp
+include/fplus/interpolate.hpp
+include/fplus/maps.hpp
+include/fplus/maybe.hpp
+include/fplus/numeric.hpp
+include/fplus/optimize.hpp
+include/fplus/pairs.hpp
+include/fplus/queue.hpp
+include/fplus/raii.hpp
+include/fplus/read.hpp
+include/fplus/replace.hpp
+include/fplus/result.hpp
+include/fplus/search.hpp
+include/fplus/sets.hpp
+include/fplus/shared_ref.hpp
+include/fplus/show.hpp
+include/fplus/side_effects.hpp
+include/fplus/split.hpp
+include/fplus/stopwatch.hpp
+include/fplus/string_tools.hpp
+include/fplus/timed.hpp
+include/fplus/transform.hpp
+include/fplus/tree.hpp
+include/fplus/variant.hpp
+lib/cmake/FunctionalPlus/FunctionalPlusConfig.cmake
+lib/cmake/FunctionalPlus/FunctionalPlusConfigVersion.cmake
+lib/cmake/FunctionalPlus/FunctionalPlusTargets.cmake


More information about the svn-ports-all mailing list