From owner-svn-ports-head@freebsd.org Tue Nov 20 02:41:08 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E98B3113A1B3; Tue, 20 Nov 2018 02:41:07 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 901F573FB7; Tue, 20 Nov 2018 02:41:07 +0000 (UTC) (envelope-from acm@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 712E32EAE; Tue, 20 Nov 2018 02:41:07 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wAK2f7rb051577; Tue, 20 Nov 2018 02:41:07 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wAK2f6qE051572; Tue, 20 Nov 2018 02:41:06 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201811200241.wAK2f6qE051572@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Tue, 20 Nov 2018 02:41:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485383 - in head/devel: . mir-core X-SVN-Group: ports-head X-SVN-Commit-Author: acm X-SVN-Commit-Paths: in head/devel: . mir-core X-SVN-Commit-Revision: 485383 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 901F573FB7 X-Spamd-Result: default: False [0.55 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_LONG(0.00)[0.001,0]; NEURAL_SPAM_MEDIUM(0.03)[0.027,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_SPAM_SHORT(0.52)[0.520,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Nov 2018 02:41:08 -0000 Author: acm Date: Tue Nov 20 02:41:06 2018 New Revision: 485383 URL: https://svnweb.freebsd.org/changeset/ports/485383 Log: - New port: devel/mir-core Base software building blocks and conventions. Code Constraints - generic code only - no runtime dependency (betterC compatible) - no iteration in algorithms (no loops at all) - no complex algorithms WWW: https://github.com/libmir/mir-core Added: head/devel/mir-core/ head/devel/mir-core/Makefile (contents, props changed) head/devel/mir-core/distinfo (contents, props changed) head/devel/mir-core/pkg-descr (contents, props changed) head/devel/mir-core/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Nov 20 02:38:06 2018 (r485382) +++ head/devel/Makefile Tue Nov 20 02:41:06 2018 (r485383) @@ -1788,6 +1788,7 @@ SUBDIR += mips64-binutils SUBDIR += mips64-gcc SUBDIR += mips64-xtoolchain-gcc + SUBDIR += mir-core SUBDIR += mk-configure SUBDIR += mkcmd SUBDIR += mm Added: head/devel/mir-core/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mir-core/Makefile Tue Nov 20 02:41:06 2018 (r485383) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= mir-core +PORTVERSION= 0.0.7 +DISTVERSIONPREFIX= v +CATEGORIES= devel + +MAINTAINER= acm@FreeBSD.org +COMMENT= base software building blocks and conventions + +LICENSE= BSL + +BUILD_DEPENDS= ldmd2:lang/ldc \ + dub:devel/dub + +USE_GITHUB= yes +GH_ACCOUNT= libmir + +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}/libmir-core.a ${STAGEDIR}${D_LIB_DIR} + cd ${WRKSRC}/source && ${COPYTREE_SHARE} . ${STAGEDIR}${D_INCLUDE_DIR} "-name *\.d" + +.include Added: head/devel/mir-core/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mir-core/distinfo Tue Nov 20 02:41:06 2018 (r485383) @@ -0,0 +1,3 @@ +TIMESTAMP = 1541397718 +SHA256 (libmir-mir-core-v0.0.7_GH0.tar.gz) = 929a76c668cadb6d472aa807d5c3f20084d8abcbf47fb848bc03a94279bcd884 +SIZE (libmir-mir-core-v0.0.7_GH0.tar.gz) = 148748 Added: head/devel/mir-core/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mir-core/pkg-descr Tue Nov 20 02:41:06 2018 (r485383) @@ -0,0 +1,10 @@ +Base software building blocks and conventions. + +Code Constraints + +- generic code only +- no runtime dependency (betterC compatible) +- no iteration in algorithms (no loops at all) +- no complex algorithms + +WWW: https://github.com/libmir/mir-core Added: head/devel/mir-core/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mir-core/pkg-plist Tue Nov 20 02:41:06 2018 (r485383) @@ -0,0 +1,14 @@ +include/d/mir/bitmanip.d +include/d/mir/bitop.d +include/d/mir/conv.d +include/d/mir/functional.d +include/d/mir/internal/memory.d +include/d/mir/internal/utility.d +include/d/mir/math/common.d +include/d/mir/math/constant.d +include/d/mir/math/package.d +include/d/mir/primitives.d +include/d/mir/qualifier.d +include/d/mir/utility.d +include/d/std/backdoor.d +lib/d/libmir-core.a