Received: by mail.netbsd.org (Postfix, from userid 605) id 9C13284D9B; Wed, 27 Sep 2017 20:21:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2F7A284D83 for ; Wed, 27 Sep 2017 20:21:55 +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 L7Y0I600HHqF for ; Wed, 27 Sep 2017 20:21:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id AD10A84D5F for ; Wed, 27 Sep 2017 20:21:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A845FFA9C; Wed, 27 Sep 2017 20:21:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150654371477770" MIME-Version: 1.0 Date: Wed, 27 Sep 2017 20:21:54 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/math/py-infinity To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170927202154.A845FFA9C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_150654371477770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Sep 27 20:21:54 UTC 2017 Modified Files: pkgsrc/math/py-infinity: Makefile distinfo Removed Files: pkgsrc/math/py-infinity: options.mk Log Message: py-infinity: update to 1.4 1.4: - Added __hash__ method To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/math/py-infinity/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/math/py-infinity/distinfo cvs rdiff -u -r1.1 -r0 pkgsrc/math/py-infinity/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150654371477770 Content-Disposition: inline Content-Length: 2337 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-infinity/Makefile diff -u pkgsrc/math/py-infinity/Makefile:1.3 pkgsrc/math/py-infinity/Makefile:1.4 --- pkgsrc/math/py-infinity/Makefile:1.3 Sat Sep 16 19:26:59 2017 +++ pkgsrc/math/py-infinity/Makefile Wed Sep 27 20:21:54 2017 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.3 2017/09/16 19:26:59 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2017/09/27 20:21:54 adam Exp $ -DISTNAME= infinity-1.3 +DISTNAME= infinity-1.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -CATEGORIES= devel math python +CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=i/infinity/} MAINTAINER= pkgsrc-users@NetBSD.org @@ -10,9 +10,16 @@ HOMEPAGE= https://github.com/kvesteri/in COMMENT= All-in-one infinity value for Python LICENSE= modified-bsd +BUILD_DEPENDS+= ${PYPKGPREFIX}-flake8>=2.4.0:../../devel/py-flake8 +BUILD_DEPENDS+= ${PYPKGPREFIX}-isort>=4.2.2:../../devel/py-isort +BUILD_DEPENDS+= ${PYPKGPREFIX}-pygments>=1.2:../../textproc/py-pygments +BUILD_DEPENDS+= ${PYPKGPREFIX}-six>=1.4.1:../../lang/py-six +BUILD_DEPENDS+= ${PYPKGPREFIX}-test>=2.2.3:../../devel/py-test + USE_LANGUAGES= # none -.include "options.mk" +do-test: + cd ${WRKSRC} && pytest-${PYVERSSUFFIX} .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/py-infinity/distinfo diff -u pkgsrc/math/py-infinity/distinfo:1.2 pkgsrc/math/py-infinity/distinfo:1.3 --- pkgsrc/math/py-infinity/distinfo:1.2 Tue Nov 3 23:33:42 2015 +++ pkgsrc/math/py-infinity/distinfo Wed Sep 27 20:21:54 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2015/11/03 23:33:42 agc Exp $ +$NetBSD: distinfo,v 1.3 2017/09/27 20:21:54 adam Exp $ -SHA1 (infinity-1.3.tar.gz) = 5cfc9dcfa0ed447d433b69558cbbb3f9042d36ca -RMD160 (infinity-1.3.tar.gz) = 5715bc4d4f38332b90068309cbc591a5b0459681 -SHA512 (infinity-1.3.tar.gz) = 2f4832dddec9357dfb6f40ed338aedd297990f3ac9ff9f289d6340dce1375984022d754b3d432b6729cd6222a50c2441e277fe7cefbf7d5c15240399ae78b99d -Size (infinity-1.3.tar.gz) = 4649 bytes +SHA1 (infinity-1.4.tar.gz) = 4041bf5620bbb4e80feeecc18fabf16e917be82a +RMD160 (infinity-1.4.tar.gz) = b9822c0d2148c3211ba27f199412b1b69af25f46 +SHA512 (infinity-1.4.tar.gz) = 57ce539d861a47d02b570f997a0b1ee6c631a1d9825b68692e9edfac789ec3069b754abb64bb4128dbfcf2eea231067c61a287315ec130a301f18c0e65387acb +Size (infinity-1.4.tar.gz) = 5410 bytes --_----------=_150654371477770--