From owner-svn-ports-all@freebsd.org Wed Sep 19 23:38:59 2018 Return-Path: Delivered-To: svn-ports-all@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 7A76910AA58C; Wed, 19 Sep 2018 23:38:59 +0000 (UTC) (envelope-from yuri@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 2E93C97EB1; Wed, 19 Sep 2018 23:38:59 +0000 (UTC) (envelope-from yuri@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 0B54F15D42; Wed, 19 Sep 2018 23:38:59 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8JNcwiI078756; Wed, 19 Sep 2018 23:38:58 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8JNcwQl078752; Wed, 19 Sep 2018 23:38:58 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201809192338.w8JNcwQl078752@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 19 Sep 2018 23:38:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480124 - in head/devel: . py-pycompilation X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-pycompilation X-SVN-Commit-Revision: 480124 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.27 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: Wed, 19 Sep 2018 23:38:59 -0000 Author: yuri Date: Wed Sep 19 23:38:57 2018 New Revision: 480124 URL: https://svnweb.freebsd.org/changeset/ports/480124 Log: New port: devel/py-pycompilation: Package for compilation (meta programming) Added: head/devel/py-pycompilation/ head/devel/py-pycompilation/Makefile (contents, props changed) head/devel/py-pycompilation/distinfo (contents, props changed) head/devel/py-pycompilation/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Sep 19 23:37:16 2018 (r480123) +++ head/devel/Makefile Wed Sep 19 23:38:57 2018 (r480124) @@ -4877,6 +4877,7 @@ SUBDIR += py-pycerberus SUBDIR += py-pycmd SUBDIR += py-pycodestyle + SUBDIR += py-pycompilation SUBDIR += py-pycparser SUBDIR += py-pydenticon SUBDIR += py-pydevd Added: head/devel/py-pycompilation/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pycompilation/Makefile Wed Sep 19 23:38:57 2018 (r480124) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= pycompilation +DISTVERSION= 0.4.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Package for compilation (meta programming) + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}appdirs>0:devel/py-appdirs@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils cython_run autoplist + +.include Added: head/devel/py-pycompilation/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pycompilation/distinfo Wed Sep 19 23:38:57 2018 (r480124) @@ -0,0 +1,3 @@ +TIMESTAMP = 1537399582 +SHA256 (pycompilation-0.4.3.tar.gz) = 3d574b931780d9a4fd343b72872a2a0a7dff2a7c74612b4c2bf25910f2fa2e99 +SIZE (pycompilation-0.4.3.tar.gz) = 19035 Added: head/devel/py-pycompilation/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pycompilation/pkg-descr Wed Sep 19 23:38:57 2018 (r480124) @@ -0,0 +1,5 @@ +pycompilation bundles python convenience classes and functions for performing +compilation and linking on the fly from python. Developed to simplify working +with code-generation, compilation and import (meta-programming) from Python. + +WWW: https://github.com/bjodah/pycompilation