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 471411A9239 for ; Sun, 23 Jan 2022 19:13:19 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 5370D84DBD; Sun, 23 Jan 2022 19:13:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8C20084D67 for ; Sun, 23 Jan 2022 19:13:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id kOgzvNGklJSG for ; Sun, 23 Jan 2022 19:13:17 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0514E84D21 for ; Sun, 23 Jan 2022 19:13:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F312AFB24; Sun, 23 Jan 2022 19:13:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164296519619840" MIME-Version: 1.0 Date: Sun, 23 Jan 2022 19:13:16 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/math/py-simpleeval To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220123191316.F312AFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164296519619840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Jan 23 19:13:16 UTC 2022 Modified Files: pkgsrc/math/py-simpleeval: Makefile distinfo Log Message: py-simpleeval: updated to 0.9.12 0.9.12 KInd of hoping this is the last 0.9 release, and I find time to stablize as 1.0, and start the 2.0 work some time soon... Changelog: Remove Cyclic references (memory leak) Add left & right shift operations (<< and >>) Switch to GH actions & CodeCov.io for CI tests Add extra contributors details Reformat w/ Black + isort, and have linting of those in CI To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/math/py-simpleeval/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/math/py-simpleeval/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164296519619840 Content-Disposition: inline Content-Length: 1811 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-simpleeval/Makefile diff -u pkgsrc/math/py-simpleeval/Makefile:1.12 pkgsrc/math/py-simpleeval/Makefile:1.13 --- pkgsrc/math/py-simpleeval/Makefile:1.12 Tue Jan 4 20:54:17 2022 +++ pkgsrc/math/py-simpleeval/Makefile Sun Jan 23 19:13:16 2022 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.12 2022/01/04 20:54:17 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2022/01/23 19:13:16 adam Exp $ -DISTNAME= simpleeval-0.9.11 +DISTNAME= simpleeval-0.9.12 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=s/simpleeval/} @@ -13,7 +12,5 @@ LICENSE= mit USE_LANGUAGES= # none -PYSETUP= -c 'from setuptools import setup; setup()' - .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/py-simpleeval/distinfo diff -u pkgsrc/math/py-simpleeval/distinfo:1.9 pkgsrc/math/py-simpleeval/distinfo:1.10 --- pkgsrc/math/py-simpleeval/distinfo:1.9 Tue Nov 23 09:01:47 2021 +++ pkgsrc/math/py-simpleeval/distinfo Sun Jan 23 19:13:16 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.9 2021/11/23 09:01:47 adam Exp $ +$NetBSD: distinfo,v 1.10 2022/01/23 19:13:16 adam Exp $ -BLAKE2s (simpleeval-0.9.11.tar.gz) = 2dbefb39cd09dd90c2f0c40d482ca8554a27a185955e92b94902b409a783e9e4 -SHA512 (simpleeval-0.9.11.tar.gz) = cfa3f965eb3749a8bdfae93760bdeebcf3b7621ed1aa64b5f267cd8405dbfcd00a1613b6018e49bcf274d18914cec27ecc029f779035b1e8030d0e502f225307 -Size (simpleeval-0.9.11.tar.gz) = 21996 bytes +BLAKE2s (simpleeval-0.9.12.tar.gz) = f9f2630cfdd6b79767fb2c81547a69112b1278c7b0d33f5093aa5ff6aaf93802 +SHA512 (simpleeval-0.9.12.tar.gz) = 9b00bfd13a7c7bd05c1c68c43dcd2b52abe0ea648d640780a05499c95ff96bb4366add1d92086ec7e840075fcbff692e133ddbf4c2b8497dd80e115c24367641 +Size (simpleeval-0.9.12.tar.gz) = 22693 bytes --_----------=_164296519619840--