Received: by mail.netbsd.org (Postfix, from userid 605) id 41ED884EDC; Thu, 18 May 2023 13:05:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7335A84EBE for ; Thu, 18 May 2023 13:05:48 +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 O6whSlAG0qcR for ; Thu, 18 May 2023 13:05:47 +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 DACF384D28 for ; Thu, 18 May 2023 13:05:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D851FFA87; Thu, 18 May 2023 13:05:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168441514775480" MIME-Version: 1.0 Date: Thu, 18 May 2023 13:05:47 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/sysutils/py-ansible-compat To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230518130547.D851FFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168441514775480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu May 18 13:05:47 UTC 2023 Modified Files: pkgsrc/sysutils/py-ansible-compat: Makefile distinfo Log Message: py-ansible-compat: updated to 4.0.4 v4.0.4 Bugfixes Allow use of * version on dependencies v4.0.3 Bugfixes Automatically install tests/requirements.yml when found Also install requirements from galaxy.yml files Include original message in AnsibleWarning To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/sysutils/py-ansible-compat/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/sysutils/py-ansible-compat/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168441514775480 Content-Disposition: inline Content-Length: 2058 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/py-ansible-compat/Makefile diff -u pkgsrc/sysutils/py-ansible-compat/Makefile:1.13 pkgsrc/sysutils/py-ansible-compat/Makefile:1.14 --- pkgsrc/sysutils/py-ansible-compat/Makefile:1.13 Wed May 10 12:13:34 2023 +++ pkgsrc/sysutils/py-ansible-compat/Makefile Thu May 18 13:05:47 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.13 2023/05/10 12:13:34 adam Exp $ +# $NetBSD: Makefile,v 1.14 2023/05/18 13:05:47 adam Exp $ -DISTNAME= ansible-compat-4.0.2 +DISTNAME= ansible-compat-4.0.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= sysutils python MASTER_SITES= ${MASTER_SITE_PYPI:=a/ansible-compat/} @@ -27,6 +27,11 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 37 38 +.include "../../lang/python/pyversion.mk" +.if ${PYTHON_VERSION} < 310 +DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=4.5.0:../../devel/py-typing-extensions +.endif + do-test: cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} test Index: pkgsrc/sysutils/py-ansible-compat/distinfo diff -u pkgsrc/sysutils/py-ansible-compat/distinfo:1.12 pkgsrc/sysutils/py-ansible-compat/distinfo:1.13 --- pkgsrc/sysutils/py-ansible-compat/distinfo:1.12 Wed May 10 12:13:34 2023 +++ pkgsrc/sysutils/py-ansible-compat/distinfo Thu May 18 13:05:47 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.12 2023/05/10 12:13:34 adam Exp $ +$NetBSD: distinfo,v 1.13 2023/05/18 13:05:47 adam Exp $ -BLAKE2s (ansible-compat-4.0.2.tar.gz) = c3a3768d9ea80e1cc516a34cc93317013a8cef6ef56c0eb4cd40757522105b87 -SHA512 (ansible-compat-4.0.2.tar.gz) = 6332e12dc123bea6307a5306bb44357507e8c60f5699e8a09a39f9cfe44c649cfd8150b3a4687b47bc62bd95a7bdc4801cac01e10870df451f23ac2e278414e5 -Size (ansible-compat-4.0.2.tar.gz) = 63771 bytes +BLAKE2s (ansible-compat-4.0.4.tar.gz) = 4c11a83ff5640ccb1e29f6065f2b43f9b5984e377a32771e6e913f7ff8cf026f +SHA512 (ansible-compat-4.0.4.tar.gz) = b13bc3d7a29b2caebfddb7a2311bfb8ad94062019238ed5a8a22fe9de1c00d25426694755cdbf289094db7fdfd88248fcf3e17e9aef9601046ef33c25d6894e6 +Size (ansible-compat-4.0.4.tar.gz) = 65116 bytes --_----------=_168441514775480--