Date: Sun, 3 Jun 2018 06:38:06 +0000 (UTC) From: Jose Alonso Cardenas Marquez <acm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471454 - in head/devel: . stdx-allocator Message-ID: <201806030638.w536c6QI082508@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: acm Date: Sun Jun 3 06:38:05 2018 New Revision: 471454 URL: https://svnweb.freebsd.org/changeset/ports/471454 Log: - New port: devel/stdx-allocator Extracted std.experimental.allocator for usage via DUB WWW: https://github.com/dlang-community/stdx-allocator Added: head/devel/stdx-allocator/ head/devel/stdx-allocator/Makefile (contents, props changed) head/devel/stdx-allocator/distinfo (contents, props changed) head/devel/stdx-allocator/pkg-descr (contents, props changed) head/devel/stdx-allocator/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 3 06:32:26 2018 (r471453) +++ head/devel/Makefile Sun Jun 3 06:38:05 2018 (r471454) @@ -6089,6 +6089,7 @@ SUBDIR += statcvs SUBDIR += statik SUBDIR += statsvn + SUBDIR += stdx-allocator SUBDIR += stfl SUBDIR += stlfilt SUBDIR += stlink Added: head/devel/stdx-allocator/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/stdx-allocator/Makefile Sun Jun 3 06:38:05 2018 (r471454) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= stdx-allocator +PORTVERSION= 2.77.1.1 +DISTVERSIONPREFIX= v +CATEGORIES= devel + +MAINTAINER= acm@FreeBSD.org +COMMENT= Containers backed on dlang by std.experimental.allocator + +LICENSE= BSL + +BUILD_DEPENDS= ldmd2:lang/ldc \ + dub:devel/dub + +USE_GITHUB= yes +GH_ACCOUNT= dlang-community + +DUB_CMD= ${LOCALBASE}/bin/dub build --build=release +D_INCLUDE_DIR= ${PREFIX}/include/d +D_LIB_DIR= ${PREFIX}/lib/d + +do-build: + @cd ${WRKSRC} && ${DUB_CMD} + +do-install: + @${MKDIR} ${STAGEDIR}${D_INCLUDE_DIR} + @${MKDIR} ${STAGEDIR}${D_LIB_DIR} + ${INSTALL_DATA} ${WRKSRC}/libstdx-allocator.a ${STAGEDIR}${D_LIB_DIR} + cd ${WRKSRC}/source && ${COPYTREE_SHARE} . ${STAGEDIR}${D_INCLUDE_DIR} "-name *\.d" + +.include <bsd.port.mk> Added: head/devel/stdx-allocator/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/stdx-allocator/distinfo Sun Jun 3 06:38:05 2018 (r471454) @@ -0,0 +1,3 @@ +TIMESTAMP = 1525930234 +SHA256 (dlang-community-stdx-allocator-v2.77.1.1_GH0.tar.gz) = 9d9b897e67b9d7c2eea9144f8f4e50eb2f8d49e30d587416c1750403a84a6f91 +SIZE (dlang-community-stdx-allocator-v2.77.1.1_GH0.tar.gz) = 103466 Added: head/devel/stdx-allocator/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/stdx-allocator/pkg-descr Sun Jun 3 06:38:05 2018 (r471454) @@ -0,0 +1,3 @@ +Extracted std.experimental.allocator for usage via DUB + +WWW: https://github.com/dlang-community/stdx-allocator Added: head/devel/stdx-allocator/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/stdx-allocator/pkg-plist Sun Jun 3 06:38:05 2018 (r471454) @@ -0,0 +1,24 @@ +include/d/stdx/allocator/building_blocks/affix_allocator.d +include/d/stdx/allocator/building_blocks/allocator_list.d +include/d/stdx/allocator/building_blocks/bitmapped_block.d +include/d/stdx/allocator/building_blocks/bucketizer.d +include/d/stdx/allocator/building_blocks/fallback_allocator.d +include/d/stdx/allocator/building_blocks/free_list.d +include/d/stdx/allocator/building_blocks/free_tree.d +include/d/stdx/allocator/building_blocks/kernighan_ritchie.d +include/d/stdx/allocator/building_blocks/null_allocator.d +include/d/stdx/allocator/building_blocks/package.d +include/d/stdx/allocator/building_blocks/quantizer.d +include/d/stdx/allocator/building_blocks/region.d +include/d/stdx/allocator/building_blocks/scoped_allocator.d +include/d/stdx/allocator/building_blocks/segregator.d +include/d/stdx/allocator/building_blocks/stats_collector.d +include/d/stdx/allocator/common.d +include/d/stdx/allocator/gc_allocator.d +include/d/stdx/allocator/internal.d +include/d/stdx/allocator/mallocator.d +include/d/stdx/allocator/mmap_allocator.d +include/d/stdx/allocator/package.d +include/d/stdx/allocator/showcase.d +include/d/stdx/allocator/typed.d +lib/d/libstdx-allocator.a
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806030638.w536c6QI082508>