Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DD44984F42 for ; Tue, 28 Nov 2023 17:05:28 +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 UF7ya3mwcjJ5 for ; Tue, 28 Nov 2023 17:05:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2B07184F36 for ; Tue, 28 Nov 2023 17:05:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 242C6FA40; Tue, 28 Nov 2023 17:05:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1701191128130370" MIME-Version: 1.0 Date: Tue, 28 Nov 2023 17:05:28 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231128170528.242C6FA40@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1701191128130370 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Nov 28 17:05:28 UTC 2023 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/py-test-freezer: DESCR Makefile PLIST distinfo Log Message: py-test-freezer: updated to 0.4.8 Pytest plugin providing a fixture interface for freezegun. To generate a diff of this commit: cvs rdiff -u -r1.4135 -r1.4136 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-test-freezer/DESCR \ pkgsrc/devel/py-test-freezer/Makefile pkgsrc/devel/py-test-freezer/PLIST \ pkgsrc/devel/py-test-freezer/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1701191128130370 Content-Disposition: inline Content-Length: 3076 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.4135 pkgsrc/devel/Makefile:1.4136 --- pkgsrc/devel/Makefile:1.4135 Mon Nov 27 09:56:47 2023 +++ pkgsrc/devel/Makefile Tue Nov 28 17:05:27 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4135 2023/11/27 09:56:47 adam Exp $ +# $NetBSD: Makefile,v 1.4136 2023/11/28 17:05:27 adam Exp $ # COMMENT= Development utilities @@ -3012,6 +3012,7 @@ SUBDIR+= py-test-fixture-config SUBDIR+= py-test-flake8 SUBDIR+= py-test-forked SUBDIR+= py-test-freezegun +SUBDIR+= py-test-freezer SUBDIR+= py-test-httpserver SUBDIR+= py-test-isort SUBDIR+= py-test-lazy-fixture Added files: Index: pkgsrc/devel/py-test-freezer/DESCR diff -u /dev/null pkgsrc/devel/py-test-freezer/DESCR:1.1 --- /dev/null Tue Nov 28 17:05:28 2023 +++ pkgsrc/devel/py-test-freezer/DESCR Tue Nov 28 17:05:27 2023 @@ -0,0 +1 @@ +Pytest plugin providing a fixture interface for freezegun. Index: pkgsrc/devel/py-test-freezer/Makefile diff -u /dev/null pkgsrc/devel/py-test-freezer/Makefile:1.1 --- /dev/null Tue Nov 28 17:05:28 2023 +++ pkgsrc/devel/py-test-freezer/Makefile Tue Nov 28 17:05:27 2023 @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1 2023/11/28 17:05:27 adam Exp $ + +DISTNAME= pytest_freezer-0.4.8 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//:S/_/-/} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest-freezer/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/pytest-dev/pytest-freezer +COMMENT= Pytest plugin providing a fixture interface for freezegun +LICENSE= mit + +TOOL_DEPENDS+= ${PYPKGPREFIX}-flit_core>=3.2:../../devel/py-flit_core +DEPENDS+= ${PYPKGPREFIX}-freezegun>=1.0:../../devel/py-freezegun +DEPENDS+= ${PYPKGPREFIX}-test>=3.6:../../devel/py-test + +USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +.include "../../lang/python/wheel.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-test-freezer/PLIST diff -u /dev/null pkgsrc/devel/py-test-freezer/PLIST:1.1 --- /dev/null Tue Nov 28 17:05:28 2023 +++ pkgsrc/devel/py-test-freezer/PLIST Tue Nov 28 17:05:27 2023 @@ -0,0 +1,9 @@ +@comment $NetBSD: PLIST,v 1.1 2023/11/28 17:05:27 adam Exp $ +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt +${PYSITELIB}/pytest_freezer.py +${PYSITELIB}/pytest_freezer.pyc +${PYSITELIB}/pytest_freezer.pyo Index: pkgsrc/devel/py-test-freezer/distinfo diff -u /dev/null pkgsrc/devel/py-test-freezer/distinfo:1.1 --- /dev/null Tue Nov 28 17:05:28 2023 +++ pkgsrc/devel/py-test-freezer/distinfo Tue Nov 28 17:05:27 2023 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2023/11/28 17:05:27 adam Exp $ + +BLAKE2s (pytest_freezer-0.4.8.tar.gz) = cc844581b7ae28713348f2f473da683dbeeb59da9ea6bac0f428907eda2bdff0 +SHA512 (pytest_freezer-0.4.8.tar.gz) = b5b3665dcc0400787ea61be3ea59437e126325697874e4190abd9821f9c5a5620ca6af3602721fb7b777037fc191aef6aac37be5d00cc38e7c2de808cdf5bf67 +Size (pytest_freezer-0.4.8.tar.gz) = 3212 bytes --_----------=_1701191128130370--