From owner-svn-ports-all@freebsd.org Wed Sep 16 01:20:59 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id CF62A3E8FDB; Wed, 16 Sep 2020 01:20:59 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Brj3H59d5z414f; Wed, 16 Sep 2020 01:20:59 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 94E6E113DE; Wed, 16 Sep 2020 01:20:59 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08G1Kxor076741; Wed, 16 Sep 2020 01:20:59 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08G1Kw4C076736; Wed, 16 Sep 2020 01:20:58 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202009160120.08G1Kw4C076736@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 16 Sep 2020 01:20:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548754 - in head/devel: . fatal X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . fatal X-SVN-Commit-Revision: 548754 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Sep 2020 01:20:59 -0000 Author: yuri Date: Wed Sep 16 01:20:58 2020 New Revision: 548754 URL: https://svnweb.freebsd.org/changeset/ports/548754 Log: New port: devel/fatal: Library for fast software prototyping in modern C++ Added: head/devel/fatal/ head/devel/fatal/Makefile (contents, props changed) head/devel/fatal/distinfo (contents, props changed) head/devel/fatal/pkg-descr (contents, props changed) head/devel/fatal/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Sep 15 23:52:47 2020 (r548753) +++ head/devel/Makefile Wed Sep 16 01:20:58 2020 (r548754) @@ -636,6 +636,7 @@ SUBDIR += f77flow SUBDIR += fam SUBDIR += fastcrc + SUBDIR += fatal SUBDIR += fb-adb SUBDIR += fbthrift SUBDIR += fc++ Added: head/devel/fatal/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/fatal/Makefile Wed Sep 16 01:20:58 2020 (r548754) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= fatal +DISTVERSIONPREFIX= v +DISTVERSION= 2020.09.14.00 +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Library for fast software prototyping in modern C++ + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= facebook + +NO_BUILD= yes +NO_ARCH= yes + +do-install: + cd ${WRKSRC} && ${COPYTREE_SHARE} ${PORTNAME} ${STAGEDIR}${PREFIX}/include + ${FIND} ${STAGEDIR}${PREFIX}/include -name "*.cpp" -delete + ${FIND} ${STAGEDIR}${PREFIX}/include -type d -empty -delete + +.include Added: head/devel/fatal/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/fatal/distinfo Wed Sep 16 01:20:58 2020 (r548754) @@ -0,0 +1,3 @@ +TIMESTAMP = 1600218037 +SHA256 (facebook-fatal-v2020.09.14.00_GH0.tar.gz) = 2df5e88219ce42485d65615ba1f70768016954e3c99c18579a3861e4100d41b8 +SIZE (facebook-fatal-v2020.09.14.00_GH0.tar.gz) = 655068 Added: head/devel/fatal/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/fatal/pkg-descr Wed Sep 16 01:20:58 2020 (r548754) @@ -0,0 +1,13 @@ +Fatal (Facebook Template Library) is a library for fast prototyping software in +modern C++. + +It provides facilities heavily based on template meta-programming, while keeping +most of the complexity under-the-hood, to enhance the expressive power of C++. + +Fatal also provides lessons on how to write meta-programs, as well as on how to +make the best use of the library, starting at beginner levels. + +The goal is make its benefits available to a wider audience other than just +hard-core library writers. + +WWW: https://github.com/facebook/fatal Added: head/devel/fatal/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/fatal/pkg-plist Wed Sep 16 01:20:58 2020 (r548754) @@ -0,0 +1,156 @@ +include/fatal/benchmark/benchmark.h +include/fatal/benchmark/cases.h +include/fatal/benchmark/driver.h +include/fatal/benchmark/prevent_optimization.h +include/fatal/codec/varint.h +include/fatal/container/circular_queue.h +include/fatal/container/flag_set.h +include/fatal/container/legacy_variant.h +include/fatal/container/normalized_wrapper.h +include/fatal/container/optional.h +include/fatal/container/random_access_iterator.h +include/fatal/container/runtime_array.h +include/fatal/container/tuple.h +include/fatal/container/tuple_tags.h +include/fatal/container/uninitialized.h +include/fatal/container/unitary_union.h +include/fatal/container/variadic_union.h +include/fatal/container/variant.h +include/fatal/debug/assume.h +include/fatal/debug/debug.h +include/fatal/functional/functional.h +include/fatal/functional/identity.h +include/fatal/functional/no_op.h +include/fatal/lesson/driver.h +include/fatal/lesson/lesson.h +include/fatal/log/log.h +include/fatal/math/compile_time_rng.h +include/fatal/math/hash.h +include/fatal/math/impl/numerics.h +include/fatal/math/numerics.h +include/fatal/math/statistical_moments.h +include/fatal/portability.h +include/fatal/preprocessor.h +include/fatal/string/rope.h +include/fatal/string/string_view.h +include/fatal/string/tokenizer.h +include/fatal/test/args.h +include/fatal/test/compatibility.h +include/fatal/test/driver.h +include/fatal/test/random_data.h +include/fatal/test/ref_counter.h +include/fatal/test/string.h +include/fatal/test/test.h +include/fatal/test/tools.h +include/fatal/test/type.h +include/fatal/test/words.h +include/fatal/time/time.h +include/fatal/type/accumulate.h +include/fatal/type/apply.h +include/fatal/type/arithmetic.h +include/fatal/type/array.h +include/fatal/type/benchmark/trie/trie_benchmark.h +include/fatal/type/bitwise.h +include/fatal/type/call_traits.h +include/fatal/type/cartesian_product.h +include/fatal/type/cat.h +include/fatal/type/compare.h +include/fatal/type/compilability.h +include/fatal/type/conditional.h +include/fatal/type/constant.h +include/fatal/type/constify.h +include/fatal/type/constify_from.h +include/fatal/type/convert.h +include/fatal/type/data_member_getter.h +include/fatal/type/debug.h +include/fatal/type/deprecated/apply.h +include/fatal/type/deprecated/flatten.h +include/fatal/type/deprecated/transform.h +include/fatal/type/deprecated/type_list.h +include/fatal/type/deprecated/type_map.h +include/fatal/type/deprecated/type_pair.h +include/fatal/type/deprecated/type_tag.h +include/fatal/type/enum.h +include/fatal/type/fast_pass.h +include/fatal/type/find.h +include/fatal/type/fold.h +include/fatal/type/foreach.h +include/fatal/type/get.h +include/fatal/type/get_type.h +include/fatal/type/group_by.h +include/fatal/type/has_type.h +include/fatal/type/identity.h +include/fatal/type/impl/accumulate.h +include/fatal/type/impl/apply.h +include/fatal/type/impl/arithmetic.h +include/fatal/type/impl/array.h +include/fatal/type/impl/bitwise.h +include/fatal/type/impl/cartesian_product.h +include/fatal/type/impl/cat.h +include/fatal/type/impl/compare.h +include/fatal/type/impl/compilability.h +include/fatal/type/impl/conditional.h +include/fatal/type/impl/convert.h +include/fatal/type/impl/find.h +include/fatal/type/impl/fold.h +include/fatal/type/impl/foreach.h +include/fatal/type/impl/get.h +include/fatal/type/impl/group_by.h +include/fatal/type/impl/is_complete.h +include/fatal/type/impl/logical.h +include/fatal/type/impl/longest_common_prefix.h +include/fatal/type/impl/push.h +include/fatal/type/impl/replace.h +include/fatal/type/impl/reverse.h +include/fatal/type/impl/safe_overload.h +include/fatal/type/impl/search.h +include/fatal/type/impl/select.h +include/fatal/type/impl/sequence.h +include/fatal/type/impl/size.h +include/fatal/type/impl/slice.h +include/fatal/type/impl/sort.h +include/fatal/type/impl/transform.h +include/fatal/type/impl/trie.h +include/fatal/type/impl/type.h +include/fatal/type/impl/unique.h +include/fatal/type/impl/void.h +include/fatal/type/impl/zip.h +include/fatal/type/inherit.h +include/fatal/type/is_complete.h +include/fatal/type/list.h +include/fatal/type/logical.h +include/fatal/type/longest_common_prefix.h +include/fatal/type/maybe.h +include/fatal/type/operation.h +include/fatal/type/pair.h +include/fatal/type/pointer_selector.h +include/fatal/type/push.h +include/fatal/type/qualifier.h +include/fatal/type/reflect_function.h +include/fatal/type/reflect_member_function.h +include/fatal/type/reflect_template.h +include/fatal/type/reflection.h +include/fatal/type/registry.h +include/fatal/type/remove_rvalue_reference.h +include/fatal/type/replace.h +include/fatal/type/reverse.h +include/fatal/type/safe_overload.h +include/fatal/type/same_reference_as.h +include/fatal/type/scalar.h +include/fatal/type/search.h +include/fatal/type/select.h +include/fatal/type/sequence.h +include/fatal/type/size.h +include/fatal/type/slice.h +include/fatal/type/sort.h +include/fatal/type/split.h +include/fatal/type/tag.h +include/fatal/type/traits.h +include/fatal/type/transform.h +include/fatal/type/trie.h +include/fatal/type/type.h +include/fatal/type/unique.h +include/fatal/type/variant_traits.h +include/fatal/type/void.h +include/fatal/type/zip.h +include/fatal/utility/timed_iterations.h