Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 06D5E1A9239 for ; Sun, 2 Jan 2022 23:23:44 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 60CB684EFA; Sun, 2 Jan 2022 23:23:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9B01C84E6B for ; Sun, 2 Jan 2022 23:23:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 1iM-_dVkYVoH for ; Sun, 2 Jan 2022 23:23:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id BC09684CFC for ; Sun, 2 Jan 2022 23:23:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B5740FAEC; Sun, 2 Jan 2022 23:23:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1641165822184760" MIME-Version: 1.0 Date: Sun, 2 Jan 2022 23:23:42 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/games/py-pysol_cards To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220102232342.B5740FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1641165822184760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Jan 2 23:23:42 UTC 2022 Modified Files: pkgsrc/games/py-pysol_cards: Makefile PLIST distinfo Log Message: py-pysol_cards: update to 0.14.2. 0.14.2 ------ * Avoid requiring optional deps - https://github.com/shlomif/pysol_cards/issues/4 . 0.14.1 ------ * Avoid comments in requirements.txt - https://github.com/shlomif/pysol_cards/issues/4 . 0.14.0 ------ * Convert from pbr to https://pypi.org/project/pydistman/ . 0.12.0 ------ * bump ver * enhance the README * 'id' is a builtin * add a test using named arguments * optimize into a class var * optimize * add an integration test 0.10.2 ------ * setup.cfg: use underscores for identifiers 0.10.1 ------ * bump version * allow accepting "ms[0-9]+" game nums 0.10.0 ------ * add single\_deal\_args\_parse 0.8.18 ------ * bump version * optimize * add tests 0.8.17 ------ * better PySol compat: fix reset() 0.8.16 ------ * better PySol compat: str2int+int2str 0.8.15 ------ * bump version * better PySol compat: getstate * Extract a method or a function 0.8.14 ------ * add setstate 0.8.13 ------ * bump version * better PySol compat: getstate * better PySol compat: increaseSeed 0.8.12 ------ * bump version * better PySol compat 0.8.11 ------ * bump ver for real this time 0.8.10 ------ * better PySol compat 0.8.9 ----- * Python2 compatibility: add Game.next() (thanks to Travis-CI) 0.8.8 ----- * Clarified the license and copyright ownership * Add random2 to the requirements 0.8.7 ----- * add more * start adding \_\_init\_\_ * add .reset() To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/py-pysol_cards/Makefile \ pkgsrc/games/py-pysol_cards/PLIST cvs rdiff -u -r1.3 -r1.4 pkgsrc/games/py-pysol_cards/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1641165822184760 Content-Disposition: inline Content-Length: 4546 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/py-pysol_cards/Makefile diff -u pkgsrc/games/py-pysol_cards/Makefile:1.1 pkgsrc/games/py-pysol_cards/Makefile:1.2 --- pkgsrc/games/py-pysol_cards/Makefile:1.1 Tue Nov 26 18:50:59 2019 +++ pkgsrc/games/py-pysol_cards/Makefile Sun Jan 2 23:23:42 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.1 2019/11/26 18:50:59 markd Exp $ +# $NetBSD: Makefile,v 1.2 2022/01/02 23:23:42 wiz Exp $ -DISTNAME= pysol_cards-0.8.6 +DISTNAME= pysol_cards-0.14.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= games python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pysol-cards/} @@ -10,7 +10,7 @@ HOMEPAGE= https://fc-solve.shlomifish.or COMMENT= Deal PySol FC Cards LICENSE= 2-clause-bsd -DEPENDS+= ${PYPKGPREFIX}-pbr>=2.0:../../devel/py-pbr +DEPENDS+= ${PYPKGPREFIX}-random2-[0-9]*:../../devel/py-random2 DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six USE_LANGUAGES= # none Index: pkgsrc/games/py-pysol_cards/PLIST diff -u pkgsrc/games/py-pysol_cards/PLIST:1.1 pkgsrc/games/py-pysol_cards/PLIST:1.2 --- pkgsrc/games/py-pysol_cards/PLIST:1.1 Tue Nov 26 18:50:59 2019 +++ pkgsrc/games/py-pysol_cards/PLIST Sun Jan 2 23:23:42 2022 @@ -1,35 +1,34 @@ -@comment $NetBSD: PLIST,v 1.1 2019/11/26 18:50:59 markd Exp $ +@comment $NetBSD: PLIST,v 1.2 2022/01/02 23:23:42 wiz Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe -${PYSITELIB}/${EGG_INFODIR}/pbr.json ${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/pysol_cards/__init__.py -${PYSITELIB}/pysol_cards/__init__.pyo ${PYSITELIB}/pysol_cards/__init__.pyc -${PYSITELIB}/pysol_cards/cards.pyo -${PYSITELIB}/pysol_cards/cards.pyc -${PYSITELIB}/pysol_cards/deal_game.pyo -${PYSITELIB}/pysol_cards/deal_game.pyc -${PYSITELIB}/pysol_cards/errors.pyo -${PYSITELIB}/pysol_cards/errors.pyc -${PYSITELIB}/pysol_cards/random.pyo -${PYSITELIB}/pysol_cards/random.pyc -${PYSITELIB}/pysol_cards/random_base.pyo -${PYSITELIB}/pysol_cards/random_base.pyc +${PYSITELIB}/pysol_cards/__init__.pyo +${PYSITELIB}/pysol_cards/__main__.py +${PYSITELIB}/pysol_cards/__main__.pyc +${PYSITELIB}/pysol_cards/__main__.pyo ${PYSITELIB}/pysol_cards/cards.py +${PYSITELIB}/pysol_cards/cards.pyc +${PYSITELIB}/pysol_cards/cards.pyo ${PYSITELIB}/pysol_cards/deal_game.py +${PYSITELIB}/pysol_cards/deal_game.pyc +${PYSITELIB}/pysol_cards/deal_game.pyo ${PYSITELIB}/pysol_cards/errors.py +${PYSITELIB}/pysol_cards/errors.pyc +${PYSITELIB}/pysol_cards/errors.pyo ${PYSITELIB}/pysol_cards/random.py +${PYSITELIB}/pysol_cards/random.pyc +${PYSITELIB}/pysol_cards/random.pyo ${PYSITELIB}/pysol_cards/random_base.py -${PYSITELIB}/pysol_cards/tests/__init__.py -${PYSITELIB}/pysol_cards/tests/__init__.pyo -${PYSITELIB}/pysol_cards/tests/__init__.pyc -${PYSITELIB}/pysol_cards/tests/base.pyo -${PYSITELIB}/pysol_cards/tests/base.pyc -${PYSITELIB}/pysol_cards/tests/test_pysol_cards.pyo -${PYSITELIB}/pysol_cards/tests/test_pysol_cards.pyc -${PYSITELIB}/pysol_cards/tests/base.py -${PYSITELIB}/pysol_cards/tests/test_pysol_cards.py +${PYSITELIB}/pysol_cards/random_base.pyc +${PYSITELIB}/pysol_cards/random_base.pyo +${PYSITELIB}/pysol_cards/single_deal_args_parse.py +${PYSITELIB}/pysol_cards/single_deal_args_parse.pyc +${PYSITELIB}/pysol_cards/single_deal_args_parse.pyo +${PYSITELIB}/pysol_cards/template.py +${PYSITELIB}/pysol_cards/template.pyc +${PYSITELIB}/pysol_cards/template.pyo Index: pkgsrc/games/py-pysol_cards/distinfo diff -u pkgsrc/games/py-pysol_cards/distinfo:1.3 pkgsrc/games/py-pysol_cards/distinfo:1.4 --- pkgsrc/games/py-pysol_cards/distinfo:1.3 Tue Oct 26 10:44:21 2021 +++ pkgsrc/games/py-pysol_cards/distinfo Sun Jan 2 23:23:42 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2021/10/26 10:44:21 nia Exp $ +$NetBSD: distinfo,v 1.4 2022/01/02 23:23:42 wiz Exp $ -BLAKE2s (pysol_cards-0.8.6.tar.gz) = 3b63059458527383adf23878478fc08ae4d7c2c594ebdcf04a4dcc0d9effdff2 -SHA512 (pysol_cards-0.8.6.tar.gz) = da446e0deed0f8ff60a4da82a8bce5d1884d35e52ee887a6b07b82fa6fbf04b07d1758b8039532db5163f89395239295f6eec1f278cd183b22e41f1e90416040 -Size (pysol_cards-0.8.6.tar.gz) = 17674 bytes +BLAKE2s (pysol_cards-0.14.2.tar.gz) = 33126723331a499aee2bf53c154c72296f9dce1cefd218cde00a770dfab3c1a5 +SHA512 (pysol_cards-0.14.2.tar.gz) = 5e296819ebd6a874175c098b0000524defeb22456bdce961270ecfe26de48fb0d5f5b56eeb3457a12c51f72c9d90abdd35ebaf91244ceaa7d3034caff2b59386 +Size (pysol_cards-0.14.2.tar.gz) = 18113 bytes --_----------=_1641165822184760--