Received: by mail.netbsd.org (Postfix, from userid 605) id 8BE6B84D41; Wed, 29 Jul 2020 12:10:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1635184D28 for ; Wed, 29 Jul 2020 12:10:47 +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 G0cijrkxFI5G for ; Wed, 29 Jul 2020 12:10:46 +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 86C1F84CE7 for ; Wed, 29 Jul 2020 12:10:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 80765FB28; Wed, 29 Jul 2020 12:10:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1596024646274050" MIME-Version: 1.0 Date: Wed, 29 Jul 2020 12:10:46 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/archivers/py-rarfile To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200729121046.80765FB28@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. --_----------=_1596024646274050 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Jul 29 12:10:46 UTC 2020 Modified Files: pkgsrc/archivers/py-rarfile: Makefile distinfo Log Message: py-rarfile: updated to 3.3 rarfile v3.3 Fixes: Add the .sfx test files to MANIFEST.in for inclusion in pypi tarball. Add all files in git to tarball. rarfile v3.2 New features: Support unar as decompression backend. It has much better support for RAR features than bsdtar. Support SFX archives - archive header is searched in first 2MB of the file. Add HACK_TMP_DIR option, to force temp files into specific directory. Fixes: Always use "/" for path separator in command-line, gives better results on Windows. Cleanups: Drop module-level options from docs, they create confusion. Drop support for Python 2 and 3.5 and earlier. Python 2 is dead and requiring Python 3.6 gives blake2s, stdlib that supports pathlib, and ordered dict without compat hacks. Replace PyCrypto with PyCryptodome in tests. Use Github Actions for CI. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/archivers/py-rarfile/Makefile \ pkgsrc/archivers/py-rarfile/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1596024646274050 Content-Disposition: inline Content-Length: 1670 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/py-rarfile/Makefile diff -u pkgsrc/archivers/py-rarfile/Makefile:1.2 pkgsrc/archivers/py-rarfile/Makefile:1.3 --- pkgsrc/archivers/py-rarfile/Makefile:1.2 Mon Sep 16 08:56:17 2019 +++ pkgsrc/archivers/py-rarfile/Makefile Wed Jul 29 12:10:46 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2019/09/16 08:56:17 adam Exp $ +# $NetBSD: Makefile,v 1.3 2020/07/29 12:10:46 adam Exp $ -DISTNAME= rarfile-3.1 +DISTNAME= rarfile-3.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= archivers python MASTER_SITES= ${MASTER_SITE_PYPI:=r/rarfile/} Index: pkgsrc/archivers/py-rarfile/distinfo diff -u pkgsrc/archivers/py-rarfile/distinfo:1.2 pkgsrc/archivers/py-rarfile/distinfo:1.3 --- pkgsrc/archivers/py-rarfile/distinfo:1.2 Mon Sep 16 08:56:17 2019 +++ pkgsrc/archivers/py-rarfile/distinfo Wed Jul 29 12:10:46 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2019/09/16 08:56:17 adam Exp $ +$NetBSD: distinfo,v 1.3 2020/07/29 12:10:46 adam Exp $ -SHA1 (rarfile-3.1.tar.gz) = c3ef753642e5e75b84c21752f215e65815992df8 -RMD160 (rarfile-3.1.tar.gz) = fcc9a2cb8208bd5d5545eaefcb4d2637260d906b -SHA512 (rarfile-3.1.tar.gz) = eb910b0adfd1f28497163aa7994ab268d7780707e09931cb01014ffa51d985410b0bc17e5fb9ca133992b28115a0b5f443d01215624145d280f29e7065abb9d9 -Size (rarfile-3.1.tar.gz) = 121579 bytes +SHA1 (rarfile-3.3.tar.gz) = ef46f9c38ef5afb749c7f8a3def36d4dcfb98447 +RMD160 (rarfile-3.3.tar.gz) = f44e5f0eff975cd64eae4494071b44c99b8473d5 +SHA512 (rarfile-3.3.tar.gz) = 6c66efae84d960bdda09e4d379744ebca7f5e280dcdc287183e22e7e633bbfd9b25f0672910e0ae80f4434b336aee6aa1036325786cbf82639bcff11ee34a02d +Size (rarfile-3.3.tar.gz) = 135373 bytes --_----------=_1596024646274050--