Date: Thu, 3 Oct 2019 07:28:39 +0000 (UTC) From: Emanuel Haupt <ehaupt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513652 - in head/devel: . mimalloc Message-ID: <201910030728.x937SdrV092365@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ehaupt Date: Thu Oct 3 07:28:39 2019 New Revision: 513652 URL: https://svnweb.freebsd.org/changeset/ports/513652 Log: Add mimalloc 1.0.8, general-purpose allocator with excellent performance characteristics. Added: head/devel/mimalloc/ head/devel/mimalloc/Makefile (contents, props changed) head/devel/mimalloc/distinfo (contents, props changed) head/devel/mimalloc/pkg-descr (contents, props changed) head/devel/mimalloc/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 3 06:17:49 2019 (r513651) +++ head/devel/Makefile Thu Oct 3 07:28:39 2019 (r513652) @@ -1553,6 +1553,7 @@ SUBDIR += mergify SUBDIR += meson SUBDIR += mill + SUBDIR += mimalloc SUBDIR += mime SUBDIR += mimir SUBDIR += mingw32-bin-msvcrt Added: head/devel/mimalloc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mimalloc/Makefile Thu Oct 3 07:28:39 2019 (r513652) @@ -0,0 +1,26 @@ +# Created by: Emanuel Haupt <ehaupt@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= mimalloc +PORTVERSION= 1.0.8 +DISTVERSIONPREFIX= v +CATEGORIES= devel +#MASTER_SITES= + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= General-purpose allocator with excellent performance characteristics + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake + +USE_GITHUB= yes +USE_LDCONFIG= yes + +GH_ACCOUNT= microsoft + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmimalloc.so + +.include <bsd.port.mk> Added: head/devel/mimalloc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mimalloc/distinfo Thu Oct 3 07:28:39 2019 (r513652) @@ -0,0 +1,3 @@ +TIMESTAMP = 1570086159 +SHA256 (microsoft-mimalloc-v1.0.8_GH0.tar.gz) = a232d097d17a1afc1573fc2402627c48f519349c1902d4541a54533f63bea3d1 +SIZE (microsoft-mimalloc-v1.0.8_GH0.tar.gz) = 512862 Added: head/devel/mimalloc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mimalloc/pkg-descr Thu Oct 3 07:28:39 2019 (r513652) @@ -0,0 +1,8 @@ +mimalloc (pronounced "me-malloc") is a general purpose allocator with excellent +performance characteristics. Initially developed for the run-time systems of the +Koka and Lean languages. + +It is a drop-in replacement for malloc and can be used in other programs without +code changes. + +WWW: https://github.com/microsoft/mimalloc Added: head/devel/mimalloc/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mimalloc/pkg-plist Thu Oct 3 07:28:39 2019 (r513652) @@ -0,0 +1,10 @@ +lib/libmimalloc.so +lib/mimalloc-1.0/cmake/mimalloc-config-version.cmake +lib/mimalloc-1.0/cmake/mimalloc-config.cmake +lib/mimalloc-1.0/cmake/mimalloc-%%CMAKE_BUILD_TYPE%%.cmake +lib/mimalloc-1.0/cmake/mimalloc.cmake +lib/mimalloc-1.0/include/mimalloc-override.h +lib/mimalloc-1.0/include/mimalloc.h +lib/mimalloc-1.0/libmimalloc.a +lib/mimalloc-1.0/libmimalloc.so +lib/mimalloc-1.0/mimalloc.o
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910030728.x937SdrV092365>