From owner-svn-ports-head@freebsd.org Wed Oct 31 18:54:28 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 AA94610E231D; Wed, 31 Oct 2018 18:54:28 +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 5F80F83AC9; Wed, 31 Oct 2018 18:54:28 +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 409C3107E9; Wed, 31 Oct 2018 18:54:28 +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 w9VIsSCs075769; Wed, 31 Oct 2018 18:54:28 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9VIsR4P075765; Wed, 31 Oct 2018 18:54:27 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201810311854.w9VIsR4P075765@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 31 Oct 2018 18:54:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483605 - in head/devel: . py-fypp X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-fypp X-SVN-Commit-Revision: 483605 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Wed, 31 Oct 2018 18:54:28 -0000 Author: yuri Date: Wed Oct 31 18:54:27 2018 New Revision: 483605 URL: https://svnweb.freebsd.org/changeset/ports/483605 Log: New port: devel/py-fypp: Python powered preprocessor Added: head/devel/py-fypp/ head/devel/py-fypp/Makefile (contents, props changed) head/devel/py-fypp/distinfo (contents, props changed) head/devel/py-fypp/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Oct 31 18:49:20 2018 (r483604) +++ head/devel/Makefile Wed Oct 31 18:54:27 2018 (r483605) @@ -4594,6 +4594,7 @@ SUBDIR += py-futures SUBDIR += py-futurist SUBDIR += py-fuzzywuzzy + SUBDIR += py-fypp SUBDIR += py-game SUBDIR += py-game_sdl2 SUBDIR += py-gamin Added: head/devel/py-fypp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fypp/Makefile Wed Oct 31 18:54:27 2018 (r483605) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= fypp +PORTVERSION= 2.1.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python powered preprocessor + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= python +USE_PYTHON= distutils concurrent autoplist + +.include Added: head/devel/py-fypp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fypp/distinfo Wed Oct 31 18:54:27 2018 (r483605) @@ -0,0 +1,3 @@ +TIMESTAMP = 1541006395 +SHA256 (fypp-2.1.1.tar.gz) = a0dad193bce4420927953dbd2068cb9fbfdb0bc0a161bafca366b1ed87cb954c +SIZE (fypp-2.1.1.tar.gz) = 65021 Added: head/devel/py-fypp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fypp/pkg-descr Wed Oct 31 18:54:27 2018 (r483605) @@ -0,0 +1,9 @@ +Fypp is a Python powered preprocessor. It can be used for any programming +languages but its primary aim is to offer a Fortran preprocessor, which helps +to extend Fortran with condititional compiling and template metaprogramming +capabilities. Instead of introducing its own expression syntax, it uses Python +expressions in its preprocessor directives, offering the consistency and +versatility of Python when formulating metaprogramming tasks. It puts strong +emphasis on robustness and on neat integration into developing toolchains. + +WWW: https://github.com/aradi/fypp