Received: by mail.netbsd.org (Postfix, from userid 605) id 353DF84EA4; Mon, 28 Nov 2022 18:26:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 64FD684E9A for ; Mon, 28 Nov 2022 18:26:04 +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 oHk13n5f3r4I for ; Mon, 28 Nov 2022 18:26:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C703D84C2C for ; Mon, 28 Nov 2022 18:26:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C10F2FA90; Mon, 28 Nov 2022 18:26:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1669659963225470" MIME-Version: 1.0 Date: Mon, 28 Nov 2022 18:26:03 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/sysutils/py-pefile To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221128182603.C10F2FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1669659963225470 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Nov 28 18:26:03 UTC 2022 Modified Files: pkgsrc/sysutils/py-pefile: Makefile distinfo Log Message: py-pefile: updated to 2022.5.30 pefile 2022.5.30 Merged pull request 344 from elicn/faster-reloc: Speed up relocation process Merged pull request 175 from tdube/patch-1: Fix catch-all exception clause in parse_resources_directory Turn data into a bytearray to avoid copying data around (from elicn) Merged pull request 343 from mat-gas/master: various performances improvements (30-50% in certain workflows, 15-25% in average) Merged pull request 340 from dinateper/feature/PEfile_context_manager: Update PE to allow with statements Removed legacy Python 2 code Miscellaneous other fixes. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/sysutils/py-pefile/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/sysutils/py-pefile/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1669659963225470 Content-Disposition: inline Content-Length: 2047 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/py-pefile/Makefile diff -u pkgsrc/sysutils/py-pefile/Makefile:1.14 pkgsrc/sysutils/py-pefile/Makefile:1.15 --- pkgsrc/sysutils/py-pefile/Makefile:1.14 Tue Jan 4 20:54:49 2022 +++ pkgsrc/sysutils/py-pefile/Makefile Mon Nov 28 18:26:03 2022 @@ -1,10 +1,8 @@ -# $NetBSD: Makefile,v 1.14 2022/01/04 20:54:49 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2022/11/28 18:26:03 adam Exp $ -PEFILE_VERSION= 2021.5.24 -DISTNAME= pefile-${PEFILE_VERSION} -PKGNAME= ${PYPKGPREFIX}-pefile-${PEFILE_VERSION:S/-/./} -PKGREVISION= 1 -CATEGORIES= sysutils +DISTNAME= pefile-2022.5.30 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= sysutils python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pefile/} MAINTAINER= khorben@defora.org @@ -12,8 +10,6 @@ HOMEPAGE= https://github.com/erocarrera/ COMMENT= Python module to read and work with PE files LICENSE= modified-bsd -EGG_NAME= pefile-${PEFILE_VERSION:S/-/.post/} - DEPENDS+= ${PYPKGPREFIX}-future>=0:../../devel/py-future PYTHON_VERSIONS_INCOMPATIBLE= 27 Index: pkgsrc/sysutils/py-pefile/distinfo diff -u pkgsrc/sysutils/py-pefile/distinfo:1.6 pkgsrc/sysutils/py-pefile/distinfo:1.7 --- pkgsrc/sysutils/py-pefile/distinfo:1.6 Tue Oct 26 11:20:04 2021 +++ pkgsrc/sysutils/py-pefile/distinfo Mon Nov 28 18:26:03 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.6 2021/10/26 11:20:04 nia Exp $ +$NetBSD: distinfo,v 1.7 2022/11/28 18:26:03 adam Exp $ -BLAKE2s (pefile-2021.5.24.tar.gz) = 60a98b6857001a64393d7512d0a36861c5dd8aa1f1eccde6d28fc49061b63d75 -SHA512 (pefile-2021.5.24.tar.gz) = 614332a6009b5a30682b295272aa4d8fa7eb5eb9cc4981dc2c66887ef8ab17af8c463c1490f0df1a37fc4a9a6d3e8c12dd986657260f98e5b60e771244d791a8 -Size (pefile-2021.5.24.tar.gz) = 66130 bytes +BLAKE2s (pefile-2022.5.30.tar.gz) = 66ba3dae1d8ce784a1064ffade13ce306e37ac047e3515b0fef01a3750a96181 +SHA512 (pefile-2022.5.30.tar.gz) = 18f8070bfb13fe9b7005ed55c9d040465d1e4c0ddcc1e8adca9127070f8db7b32272fbe50622c1d5c937d9be3bb110167b6a55502e232e26d7da881a5342a9e3 +Size (pefile-2022.5.30.tar.gz) = 72889 bytes --_----------=_1669659963225470--