svn commit: r437223 - in head/devel: . py3-meson

Steve Wills swills at FreeBSD.org
Wed Mar 29 18:43:21 UTC 2017


Author: swills
Date: Wed Mar 29 18:43:19 2017
New Revision: 437223
URL: https://svnweb.freebsd.org/changeset/ports/437223

Log:
  devel/py3-meson: create port
  
  Meson is a cross-platform build system designed to be both as fast and as user
  friendly as possible. It supports many languages and compilers, including GCC,
  Clang and Visual Studio. Its build definitions are written in a simple
  non-turing complete DSL.
  
  WWW: http://mesonbuild.com/

Added:
  head/devel/py3-meson/
  head/devel/py3-meson/Makefile   (contents, props changed)
  head/devel/py3-meson/distinfo   (contents, props changed)
  head/devel/py3-meson/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Mar 29 18:30:43 2017	(r437222)
+++ head/devel/Makefile	Wed Mar 29 18:43:19 2017	(r437223)
@@ -4924,6 +4924,7 @@
     SUBDIR += py3-libzfs
     SUBDIR += py3-lxml
     SUBDIR += py3-mccabe
+    SUBDIR += py3-meson
     SUBDIR += py3-nose
     SUBDIR += py3-ply
     SUBDIR += py3-prompt_toolkit

Added: head/devel/py3-meson/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py3-meson/Makefile	Wed Mar 29 18:43:19 2017	(r437223)
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME=	meson
+PORTVERSION=	0.39.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+PKGNAMESUFFIX?=
+
+MAINTAINER=	swills at FreeBSD.org
+COMMENT=	High performance build system
+
+USES=		python:3.5+
+USE_PYTHON=	autoplist distutils
+
+RUN_DEPENDS=	python3:lang/python3
+
+.include <bsd.port.mk>

Added: head/devel/py3-meson/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py3-meson/distinfo	Wed Mar 29 18:43:19 2017	(r437223)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1490675281
+SHA256 (meson-0.39.1.tar.gz) = 67bf5876d69730dfe031907314a61fdbec0c5c723c79a8093eb64ae2ebcd2650
+SIZE (meson-0.39.1.tar.gz) = 558928

Added: head/devel/py3-meson/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py3-meson/pkg-descr	Wed Mar 29 18:43:19 2017	(r437223)
@@ -0,0 +1,6 @@
+Meson is a cross-platform build system designed to be both as fast and as user
+friendly as possible. It supports many languages and compilers, including GCC,
+Clang and Visual Studio. Its build definitions are written in a simple
+non-turing complete DSL.
+
+WWW: http://mesonbuild.com/


More information about the svn-ports-all mailing list