Date: Wed, 31 Oct 2018 18:54:27 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483605 - in head/devel: . py-fypp Message-ID: <201810311854.w9VIsR4P075765@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810311854.w9VIsR4P075765>