From owner-svn-ports-all@freebsd.org Mon Mar 2 10:08:52 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 1633C1A938A; Mon, 2 Mar 2020 10:08:52 +0000 (UTC) (envelope-from 0mp@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) server-signature RSA-PSS (4096 bits) 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 48WG7k68Jxz4GL1; Mon, 2 Mar 2020 10:08:50 +0000 (UTC) (envelope-from 0mp@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 729581AB95; Mon, 2 Mar 2020 10:08:49 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 022A8nnU084723; Mon, 2 Mar 2020 10:08:49 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 022A8mdk084718; Mon, 2 Mar 2020 10:08:48 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <202003021008.022A8mdk084718@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Mon, 2 Mar 2020 10:08:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r527623 - in head/devel: . microsoft-gsl X-SVN-Group: ports-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: in head/devel: . microsoft-gsl X-SVN-Commit-Revision: 527623 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.29 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: Mon, 02 Mar 2020 10:08:52 -0000 Author: 0mp Date: Mon Mar 2 10:08:48 2020 New Revision: 527623 URL: https://svnweb.freebsd.org/changeset/ports/527623 Log: New port: devel/microsoft-gsl The Guidelines Support Library (GSL) contains functions and types that are suggested for use by the C++ Core Guidelines maintained by the Standard C++ Foundation. This repo contains Microsoft's implementation of GSL. The library includes types like span, string_span, owner<> and others. The entire implementation is provided inline in the headers under the gsl directory. The implementation generally assumes a platform that implements C++14 support. There are specific workarounds to support MSVC 2015. WWW: https://github.com/microsoft/GSL PR: 244551 Submitted by: Henry Hu Added: head/devel/microsoft-gsl/ head/devel/microsoft-gsl/Makefile (contents, props changed) head/devel/microsoft-gsl/distinfo (contents, props changed) head/devel/microsoft-gsl/pkg-descr (contents, props changed) head/devel/microsoft-gsl/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 2 09:53:29 2020 (r527622) +++ head/devel/Makefile Mon Mar 2 10:08:48 2020 (r527623) @@ -1503,6 +1503,7 @@ SUBDIR += mercurialeclipse SUBDIR += mergify SUBDIR += meson + SUBDIR += microsoft-gsl SUBDIR += mill SUBDIR += mimalloc SUBDIR += mime Added: head/devel/microsoft-gsl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/microsoft-gsl/Makefile Mon Mar 2 10:08:48 2020 (r527623) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= microsoft-gsl +DISTVERSIONPREFIX= v +DISTVERSION= 2.1.0 +CATEGORIES= devel + +MAINTAINER= henry.hu.sh@gmail.com +COMMENT= Guidelines Support Library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake +USE_GITHUB= yes +GH_ACCOUNT= microsoft +GH_PROJECT= GSL +CMAKE_OFF= GSL_TEST +NO_ARCH= yes + +.include Added: head/devel/microsoft-gsl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/microsoft-gsl/distinfo Mon Mar 2 10:08:48 2020 (r527623) @@ -0,0 +1,3 @@ +TIMESTAMP = 1583121165 +SHA256 (microsoft-GSL-v2.1.0_GH0.tar.gz) = ef73814657b073e1be86c8f7353718771bf4149b482b6cb54f99e79b23ff899d +SIZE (microsoft-GSL-v2.1.0_GH0.tar.gz) = 67289 Added: head/devel/microsoft-gsl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/microsoft-gsl/pkg-descr Mon Mar 2 10:08:48 2020 (r527623) @@ -0,0 +1,11 @@ +The Guidelines Support Library (GSL) contains functions and types that are +suggested for use by the C++ Core Guidelines maintained by the Standard C++ +Foundation. This repo contains Microsoft's implementation of GSL. + +The library includes types like span, string_span, owner<> and others. + +The entire implementation is provided inline in the headers under the gsl +directory. The implementation generally assumes a platform that implements +C++14 support. There are specific workarounds to support MSVC 2015. + +WWW: https://github.com/microsoft/GSL Added: head/devel/microsoft-gsl/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/microsoft-gsl/pkg-plist Mon Mar 2 10:08:48 2020 (r527623) @@ -0,0 +1,9 @@ +include/gsl/gsl +include/gsl/gsl_algorithm +include/gsl/gsl_assert +include/gsl/gsl_byte +include/gsl/gsl_util +include/gsl/multi_span +include/gsl/pointers +include/gsl/span +include/gsl/string_span