Received: by mail.netbsd.org (Postfix, from userid 605) id 3E9B484EC4; Wed, 14 Feb 2024 16:26:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707927969; bh=jRtHvYvxRbGKgAAfOwUWqqi6XetTZOzN/0E49awzIYQ=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=fLCYDS2TRGi+NKATf7wmLU+b9VnDABWr7yIbqSOp1IpAMkXqfjzUq59OhAQMOFrkH /4F6Q6xGAU+XRqJMuT03sXvWHpMDUtmeybafQlE2kfG9XOEB8DPe1bnQMPsDXnuDAq 5KAIazclDHQ3e72u4ZS75z1jmyLTEq9mbohi5gDA= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2FBEC84EA0 for ; Wed, 14 Feb 2024 16:26:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id M7Ezijb9ZvJc for ; Wed, 14 Feb 2024 16:26:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7E1FE84CF8 for ; Wed, 14 Feb 2024 16:26:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707927967; bh=jRtHvYvxRbGKgAAfOwUWqqi6XetTZOzN/0E49awzIYQ=; h=Date:From:Subject:To:Reply-To; b=vzrHF/pOAyCeJfmELpNKG4YZ3cT1TulInAbZPS7tJsBl9gi5h9IGbesKGlpLABORh EbGUODAtTIInBdLqkfdxb686D8+3oXl/VrHr2xU8fO/SILio1rp/RYiffzPR5AN44m Kmh7ix5BjntnYfR+667xxEZP8961WbLwXXySErG4= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 79DFDF9ED; Wed, 14 Feb 2024 16:26:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1707927967216660" MIME-Version: 1.0 Date: Wed, 14 Feb 2024 16:26:07 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-test-httpserver To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240214162607.79DFDF9ED@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1707927967216660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Feb 14 16:26:07 UTC 2024 Modified Files: pkgsrc/devel/py-test-httpserver: Makefile PLIST distinfo Log Message: py-test-httpserver: updated to 1.0.9 1.0.9 New Features - Add ``__repr__`` to ``RequestHandler`` object so when it is compared (eg. with the ``log`` attribute of the server) it will show the matcher parameters. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-test-httpserver/Makefile \ pkgsrc/devel/py-test-httpserver/distinfo cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-test-httpserver/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1707927967216660 Content-Disposition: inline Content-Length: 3770 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test-httpserver/Makefile diff -u pkgsrc/devel/py-test-httpserver/Makefile:1.3 pkgsrc/devel/py-test-httpserver/Makefile:1.4 --- pkgsrc/devel/py-test-httpserver/Makefile:1.3 Mon May 29 12:27:52 2023 +++ pkgsrc/devel/py-test-httpserver/Makefile Wed Feb 14 16:26:07 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2023/05/29 12:27:52 adam Exp $ +# $NetBSD: Makefile,v 1.4 2024/02/14 16:26:07 adam Exp $ -DISTNAME= pytest_httpserver-1.0.8 +DISTNAME= pytest_httpserver-1.0.9 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//:S/_/-/} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest_httpserver/} @@ -10,21 +10,17 @@ HOMEPAGE= https://github.com/csernazs/py COMMENT= HTTP server for pytest LICENSE= mit +TOOL_DEPENDS+= ${PYPKGPREFIX}-poetry-core>=1.0.0:../../devel/py-poetry-core DEPENDS+= ${PYPKGPREFIX}-werkzeug>=2.0.0:../../www/py-werkzeug +TEST_DEPENDS+= ${PYPKGPREFIX}-mypy>=0.971:../../lang/py-mypy TEST_DEPENDS+= ${PYPKGPREFIX}-requests>=2.28.1:../../devel/py-requests TEST_DEPENDS+= ${PYPKGPREFIX}-toml>=0.10.2:../../textproc/py-toml -TEST_DEPENDS+= ${PYPKGPREFIX}-test>=7.1.3:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=3:../../devel/py-test-cov TEST_DEPENDS+= ${PYPKGPREFIX}-types-toml-[0-9]*:../../devel/py-types-toml -PYTHON_VERSIONS_INCOMPATIBLE= 27 - USE_LANGUAGES= # none -# needs to be installed for testing -#TEST_ENV+= PYTHONPATH=${WRKSRC}/build/lib -do-test: - cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests +PYTHON_VERSIONS_INCOMPATIBLE= 27 -.include "../../lang/python/egg.mk" +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-test-httpserver/distinfo diff -u pkgsrc/devel/py-test-httpserver/distinfo:1.3 pkgsrc/devel/py-test-httpserver/distinfo:1.4 --- pkgsrc/devel/py-test-httpserver/distinfo:1.3 Mon May 29 12:27:52 2023 +++ pkgsrc/devel/py-test-httpserver/distinfo Wed Feb 14 16:26:07 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2023/05/29 12:27:52 adam Exp $ +$NetBSD: distinfo,v 1.4 2024/02/14 16:26:07 adam Exp $ -BLAKE2s (pytest_httpserver-1.0.8.tar.gz) = bf4fffb4c4b182944b0fc9f7e69a0abdb54908dfdc17448c72e025ab7c59a18f -SHA512 (pytest_httpserver-1.0.8.tar.gz) = 5acff56b1c250c190da6466d398c10f206a24fe4112628ba4ec56bb2e23e21408b13d22ab6ad428e7ad7e685d7f2e73d5fc4b7afe86e7cb88d844a6e8e1a6bb4 -Size (pytest_httpserver-1.0.8.tar.gz) = 60126 bytes +BLAKE2s (pytest_httpserver-1.0.9.tar.gz) = 3e7726b8ad9f1054c386514eb4489c107096a4ed9e588abea953660d8cb7ddfb +SHA512 (pytest_httpserver-1.0.9.tar.gz) = 64d9ac47de264b0c151b17a52c904451f59e4035ad87b16a534fcccf7725b82d343736366ee3f5be03947c2f05dfb0a52bb7148014aa1a3d179748a6870e49c7 +Size (pytest_httpserver-1.0.9.tar.gz) = 60048 bytes Index: pkgsrc/devel/py-test-httpserver/PLIST diff -u pkgsrc/devel/py-test-httpserver/PLIST:1.1 pkgsrc/devel/py-test-httpserver/PLIST:1.2 --- pkgsrc/devel/py-test-httpserver/PLIST:1.1 Tue Dec 6 20:34:05 2022 +++ pkgsrc/devel/py-test-httpserver/PLIST Wed Feb 14 16:26:07 2024 @@ -1,10 +1,9 @@ -@comment $NetBSD: PLIST,v 1.1 2022/12/06 20:34:05 wiz Exp $ -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/entry_points.txt -${PYSITELIB}/${EGG_INFODIR}/requires.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt +@comment $NetBSD: PLIST,v 1.2 2024/02/14 16:26:07 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_httpserver/__init__.py ${PYSITELIB}/pytest_httpserver/__init__.pyc ${PYSITELIB}/pytest_httpserver/__init__.pyo --_----------=_1707927967216660--