Date: Tue, 11 Aug 2020 16:53:31 +0000 (UTC) From: Danilo Egea Gondolfo <danilo@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r544696 - in head/games: . py-pysol-cards Message-ID: <202008111653.07BGrV2K020018@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danilo Date: Tue Aug 11 16:53:31 2020 New Revision: 544696 URL: https://svnweb.freebsd.org/changeset/ports/544696 Log: - Add new port games/py-pysol-cards The pysol-cards python modules allow the python developer to generate the initial deals of some PySol FC games. It also supports PySol legacy deals and Microsoft FreeCell / Freecell Pro deals. Added: head/games/py-pysol-cards/ head/games/py-pysol-cards/Makefile (contents, props changed) head/games/py-pysol-cards/distinfo (contents, props changed) head/games/py-pysol-cards/pkg-descr (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Tue Aug 11 16:53:04 2020 (r544695) +++ head/games/Makefile Tue Aug 11 16:53:31 2020 (r544696) @@ -773,6 +773,7 @@ SUBDIR += py-fife SUBDIR += py-mnemosyne SUBDIR += py-pychess + SUBDIR += py-pysol-cards SUBDIR += py-sgflib SUBDIR += py-sgfsummary SUBDIR += pyfa Added: head/games/py-pysol-cards/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/py-pysol-cards/Makefile Tue Aug 11 16:53:31 2020 (r544696) @@ -0,0 +1,24 @@ +# Created by: Danilo Egea Gondolfo <danilo@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pysol-cards +PORTVERSION= 0.10.1 +CATEGORIES= games python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= pysol_cards-${PORTVERSION} + +MAINTAINER= danilo@FreeBSD.org +COMMENT= Deal PySol FC Cards + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>0:devel/py-pbr@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}random2>=0:math/py-random2@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> Added: head/games/py-pysol-cards/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/py-pysol-cards/distinfo Tue Aug 11 16:53:31 2020 (r544696) @@ -0,0 +1,3 @@ +TIMESTAMP = 1597067247 +SHA256 (pysol_cards-0.10.1.tar.gz) = ea6ac7e5849d0002cc880868f3a82a84332d5bbb79eb6496ed9676a104046297 +SIZE (pysol_cards-0.10.1.tar.gz) = 20670 Added: head/games/py-pysol-cards/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/py-pysol-cards/pkg-descr Tue Aug 11 16:53:31 2020 (r544696) @@ -0,0 +1,5 @@ +The pysol-cards python modules allow the python developer to generate +the initial deals of some PySol FC games. It also supports PySol +legacy deals and Microsoft FreeCell / Freecell Pro deals. + +WWW: https://pypi.org/project/pysol-cards/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008111653.07BGrV2K020018>