Received: by mail.netbsd.org (Postfix, from userid 605) id D306F84DB1; Tue, 21 Jul 2020 21:19:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 59E2284D9D for ; Tue, 21 Jul 2020 21:19:02 +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 ojYXnXtRC4Bw for ; Tue, 21 Jul 2020 21:19:01 +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 D116184D9C for ; Tue, 21 Jul 2020 21:19:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CB650FB28; Tue, 21 Jul 2020 21:19:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1595366341141680" MIME-Version: 1.0 Date: Tue, 21 Jul 2020 21:19:01 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/security/py-aes To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200721211901.CB650FB28@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. --_----------=_1595366341141680 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Jul 21 21:19:01 UTC 2020 Modified Files: pkgsrc/security/py-aes: Makefile distinfo Log Message: py-aes: updated to 1.6.1 1.6.1: Fixed Blockfeeder incorrectly accepted empty string as input termiations Fixed typos in docs To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/py-aes/Makefile \ pkgsrc/security/py-aes/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1595366341141680 Content-Disposition: inline Content-Length: 2169 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-aes/Makefile diff -u pkgsrc/security/py-aes/Makefile:1.1 pkgsrc/security/py-aes/Makefile:1.2 --- pkgsrc/security/py-aes/Makefile:1.1 Tue Jun 14 07:58:40 2016 +++ pkgsrc/security/py-aes/Makefile Tue Jul 21 21:19:01 2020 @@ -1,18 +1,21 @@ -# $NetBSD: Makefile,v 1.1 2016/06/14 07:58:40 kamil Exp $ +# $NetBSD: Makefile,v 1.2 2020/07/21 21:19:01 adam Exp $ -DISTNAME= pyaes-1.6.0 +DISTNAME= pyaes-1.6.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} CATEGORIES= security python -MASTER_SITES= ${MASTER_SITE_GITHUB:=ricmoo/} -GITHUB_PROJECT= pyaes -GITHUB_TAG= v${PKGVERSION_NOREV} +MASTER_SITES= ${MASTER_SITE_PYPI:=p/pyaes/} MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= https://github.com/ricmoo/pyaes/ +HOMEPAGE= https://github.com/ricmoo/pyaes COMMENT= Pure-Python implementation of AES block-cipher LICENSE= mit +TEST_DEPENDS+= ${PYPKGPREFIX}-cryptodome-[0-9]*:../../security/py-cryptodome + USE_LANGUAGES= # none +do-test: + cd ${WRKSRC} && ${PYTHONBIN} tests/test-aes.py + .include "../../lang/python/distutils.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/security/py-aes/distinfo diff -u pkgsrc/security/py-aes/distinfo:1.1 pkgsrc/security/py-aes/distinfo:1.2 --- pkgsrc/security/py-aes/distinfo:1.1 Tue Jun 14 07:58:40 2016 +++ pkgsrc/security/py-aes/distinfo Tue Jul 21 21:19:01 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2016/06/14 07:58:40 kamil Exp $ +$NetBSD: distinfo,v 1.2 2020/07/21 21:19:01 adam Exp $ -SHA1 (pyaes-1.6.0.tar.gz) = 9068e3e30e4ecc6dd91c96a4251fda810a2249c2 -RMD160 (pyaes-1.6.0.tar.gz) = c77341f48d8210fe4078f76aa062835802cc13ae -SHA512 (pyaes-1.6.0.tar.gz) = e9886cd09e9c803ecd71d72716c33b2721daab940356300726e34951cae945c995b3057e9574299585b77a0bd96058b505a07bfd146dcaf04db63c0ac251d454 -Size (pyaes-1.6.0.tar.gz) = 28855 bytes +SHA1 (pyaes-1.6.1.tar.gz) = a9be2ddd89737a7e98e42e20ca918c8d22b9da92 +RMD160 (pyaes-1.6.1.tar.gz) = ff5f3a5caf31f20cd451464eac3fb6831b8713e8 +SHA512 (pyaes-1.6.1.tar.gz) = 00ce3babf72ea18b0de369860cd884058c7c6f3bd8b961c3ff591ef7d3dc0a69fabad5311f61c9f91d2f1a480c8512e34eeced5ec7145ed9f963bf91c5f8838a +Size (pyaes-1.6.1.tar.gz) = 28536 bytes --_----------=_1595366341141680--