Received: by mail.netbsd.org (Postfix, from userid 605) id DCE8384E03; Thu, 21 Feb 2019 10:23:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 64F8284D9C for ; Thu, 21 Feb 2019 10:23:40 +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 tiBux3UTLOSc for ; Thu, 21 Feb 2019 10:23:39 +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 D135A84CEE for ; Thu, 21 Feb 2019 10:23:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C42BDFB16; Thu, 21 Feb 2019 10:23:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155074461986190" MIME-Version: 1.0 Date: Thu, 21 Feb 2019 10:23:39 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/misc/py-tqdm To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190221102339.C42BDFB16@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. --_----------=_155074461986190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Feb 21 10:23:39 UTC 2019 Modified Files: pkgsrc/misc/py-tqdm: Makefile distinfo Log Message: py-tqdm: updated to 4.31.1 v4.31.1: fix file.encoding==None add tests tidy code, update authors and tests add setup.py test to CI v4.31.0: Write bytes to stdout/stderr in py2 Add write_bytes parameter for py2/3 default override support custom bar characters vias ascii parameter implement, document and test custom bar spinners support custom bar_format with unknown total fix TypeError when unit_scale and unknown total document format_dict expose elapsed_s, remaining_s to bar_format add unit option to bar_format auto README.rst generation framework add notes in CONTRIBUTING.md update tests update documentation misc code tidy To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/misc/py-tqdm/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/misc/py-tqdm/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155074461986190 Content-Disposition: inline Content-Length: 1818 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/py-tqdm/Makefile diff -u pkgsrc/misc/py-tqdm/Makefile:1.3 pkgsrc/misc/py-tqdm/Makefile:1.4 --- pkgsrc/misc/py-tqdm/Makefile:1.3 Mon Jan 28 14:13:50 2019 +++ pkgsrc/misc/py-tqdm/Makefile Thu Feb 21 10:23:39 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2019/01/28 14:13:50 adam Exp $ +# $NetBSD: Makefile,v 1.4 2019/02/21 10:23:39 adam Exp $ -DISTNAME= tqdm-4.30.0 +DISTNAME= tqdm-4.31.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= misc python MASTER_SITES= ${MASTER_SITE_PYPI:=t/tqdm/} @@ -16,10 +16,6 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9] USE_LANGUAGES= # none -# for UTF-8 in README.md -#ALL_ENV+= LC_CTYPE=en_US.UTF-8 -#ALL_ENV+= LC_ALL=en_US.UTF-8 - INSTALLATION_DIRS+= ${PKGMANDIR}/man1 post-install: Index: pkgsrc/misc/py-tqdm/distinfo diff -u pkgsrc/misc/py-tqdm/distinfo:1.2 pkgsrc/misc/py-tqdm/distinfo:1.3 --- pkgsrc/misc/py-tqdm/distinfo:1.2 Mon Jan 28 14:13:50 2019 +++ pkgsrc/misc/py-tqdm/distinfo Thu Feb 21 10:23:39 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2019/01/28 14:13:50 adam Exp $ +$NetBSD: distinfo,v 1.3 2019/02/21 10:23:39 adam Exp $ -SHA1 (tqdm-4.30.0.tar.gz) = 6fc043eac1b0f3e664af2e821f2dca9b9b6b6186 -RMD160 (tqdm-4.30.0.tar.gz) = 424c0cabb4ce9cf20fbd487b2658e019163f7138 -SHA512 (tqdm-4.30.0.tar.gz) = 0ab0cba796d449d6a4a8237d52516d3d35bdc7c249c544c79bb11b2b29da5007861946866cf540a507e319eea715a5549429394dd98608ac2b36312ed48b0266 -Size (tqdm-4.30.0.tar.gz) = 120513 bytes +SHA1 (tqdm-4.31.1.tar.gz) = 6aa8fc07e65ccb3f02a20c40228424581efd49cc +RMD160 (tqdm-4.31.1.tar.gz) = 49345d27642d321c4bde1f3e5afd16387b1724d4 +SHA512 (tqdm-4.31.1.tar.gz) = 895d8cfc8cd9bde9cc388649df23e921e15ae9cf015cff444e30900d3d9610ae435f4db830b9a81b246f20699f14d56dbf496a774a3201de8e1a4e2d23de74f3 +Size (tqdm-4.31.1.tar.gz) = 117178 bytes --_----------=_155074461986190--