Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BB1F984EB3 for ; Tue, 29 Aug 2023 06:48:33 +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 zFjrAfr174uu for ; Tue, 29 Aug 2023 06:48:33 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D68A584D46 for ; Tue, 29 Aug 2023 06:48:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CFEDCFBDB; Tue, 29 Aug 2023 06:48:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693291712220920" MIME-Version: 1.0 Date: Tue, 29 Aug 2023 06:48:32 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-httpbin To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230829064832.CFEDCFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693291712220920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Aug 29 06:48:32 UTC 2023 Modified Files: pkgsrc/www/py-httpbin: Makefile PLIST distinfo Log Message: py-httpbin: updated to 0.10.1 v0.10.1 Substantial housekeeping, dependency cleanup, image building, and packaging revamp To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/www/py-httpbin/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/py-httpbin/PLIST cvs rdiff -u -r1.10 -r1.11 pkgsrc/www/py-httpbin/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693291712220920 Content-Disposition: inline Content-Length: 5189 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-httpbin/Makefile diff -u pkgsrc/www/py-httpbin/Makefile:1.13 pkgsrc/www/py-httpbin/Makefile:1.14 --- pkgsrc/www/py-httpbin/Makefile:1.13 Mon Aug 28 09:37:08 2023 +++ pkgsrc/www/py-httpbin/Makefile Tue Aug 29 06:48:32 2023 @@ -1,31 +1,31 @@ -# $NetBSD: Makefile,v 1.13 2023/08/28 09:37:08 adam Exp $ +# $NetBSD: Makefile,v 1.14 2023/08/29 06:48:32 adam Exp $ -DISTNAME= httpbin-0.10.0 +DISTNAME= httpbin-0.10.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=h/httpbin/} MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= https://github.com/postmanlabs/httpbin +HOMEPAGE= https://github.com/psf/httpbin COMMENT= HTTP Request and Response Service LICENSE= mit +TOOLDEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOLDEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel DEPENDS+= ${PYPKGPREFIX}-brotlicffi-[0-9]*:../../archivers/py-brotlicffi DEPENDS+= ${PYPKGPREFIX}-decorator-[0-9]*:../../devel/py-decorator -DEPENDS+= ${PYPKGPREFIX}-gevent-[0-9]*:../../net/py-gevent -DEPENDS+= ${PYPKGPREFIX}-itsdangerous-[0-9]*:../../security/py-itsdangerous -DEPENDS+= ${PYPKGPREFIX}-jinja2-[0-9]*:../../textproc/py-jinja2 +DEPENDS+= ${PYPKGPREFIX}-greenlet-[0-9]*:../../devel/py-greenlet DEPENDS+= ${PYPKGPREFIX}-flasgger-[0-9]*:../../www/py-flasgger DEPENDS+= ${PYPKGPREFIX}-flask-[0-9]*:../../www/py-flask -DEPENDS+= ${PYPKGPREFIX}-markupsafe-[0-9]*:../../textproc/py-markupsafe -DEPENDS+= ${PYPKGPREFIX}-werkzeug-[0-9]*:../../www/py-werkzeug +DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six +DEPENDS+= ${PYPKGPREFIX}-werkzeug>=0.14.1:../../www/py-werkzeug USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 do-test: - cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHONBIN} -m unittest discover -v + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHONBIN} -m unittest tests/test_httpbin.py -.include "../../lang/python/egg.mk" +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/py-httpbin/PLIST diff -u pkgsrc/www/py-httpbin/PLIST:1.2 pkgsrc/www/py-httpbin/PLIST:1.3 --- pkgsrc/www/py-httpbin/PLIST:1.2 Mon Aug 28 09:37:08 2023 +++ pkgsrc/www/py-httpbin/PLIST Tue Aug 29 06:48:32 2023 @@ -1,26 +1,26 @@ -@comment $NetBSD: PLIST,v 1.2 2023/08/28 09:37:08 adam Exp $ -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/requires.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt -${PYSITELIB}/httpbin/VERSION +@comment $NetBSD: PLIST,v 1.3 2023/08/29 06:48:32 adam Exp $ +${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS +${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.ISC +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.MIT +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/REQUESTED +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/direct_url.json +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt ${PYSITELIB}/httpbin/__init__.py ${PYSITELIB}/httpbin/__init__.pyc -${PYSITELIB}/httpbin/__init__.pyo ${PYSITELIB}/httpbin/core.py ${PYSITELIB}/httpbin/core.pyc -${PYSITELIB}/httpbin/core.pyo ${PYSITELIB}/httpbin/filters.py ${PYSITELIB}/httpbin/filters.pyc -${PYSITELIB}/httpbin/filters.pyo ${PYSITELIB}/httpbin/helpers.py ${PYSITELIB}/httpbin/helpers.pyc -${PYSITELIB}/httpbin/helpers.pyo ${PYSITELIB}/httpbin/static/favicon.ico ${PYSITELIB}/httpbin/structures.py ${PYSITELIB}/httpbin/structures.pyc -${PYSITELIB}/httpbin/structures.pyo ${PYSITELIB}/httpbin/templates/UTF-8-demo.txt ${PYSITELIB}/httpbin/templates/flasgger/index.html ${PYSITELIB}/httpbin/templates/footer.html @@ -36,10 +36,3 @@ ${PYSITELIB}/httpbin/templates/sample.xm ${PYSITELIB}/httpbin/templates/trackingscripts.html ${PYSITELIB}/httpbin/utils.py ${PYSITELIB}/httpbin/utils.pyc -${PYSITELIB}/httpbin/utils.pyo -${PYSITELIB}/tests/__init__.py -${PYSITELIB}/tests/__init__.pyc -${PYSITELIB}/tests/__init__.pyo -${PYSITELIB}/tests/test_httpbin.py -${PYSITELIB}/tests/test_httpbin.pyc -${PYSITELIB}/tests/test_httpbin.pyo Index: pkgsrc/www/py-httpbin/distinfo diff -u pkgsrc/www/py-httpbin/distinfo:1.10 pkgsrc/www/py-httpbin/distinfo:1.11 --- pkgsrc/www/py-httpbin/distinfo:1.10 Mon Aug 28 09:37:08 2023 +++ pkgsrc/www/py-httpbin/distinfo Tue Aug 29 06:48:32 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.10 2023/08/28 09:37:08 adam Exp $ +$NetBSD: distinfo,v 1.11 2023/08/29 06:48:32 adam Exp $ -BLAKE2s (httpbin-0.10.0.tar.gz) = 936a59db4a726e7597b09db4f21d67d45b683ed3780a97b7264dd3fde00608f1 -SHA512 (httpbin-0.10.0.tar.gz) = 4fae4fe22cb1870acd31f51c25c1bbe946cfe9be88a63f0ba8d7078d2c48089d794726e86290fc41fa38dcf72f8573f054286cb47ab7518e953b7aafa4518215 -Size (httpbin-0.10.0.tar.gz) = 103729 bytes +BLAKE2s (httpbin-0.10.1.tar.gz) = b2dd7f2d0fe6717f178d6b34a53aea0071193333f74338d3bda3d85718965cca +SHA512 (httpbin-0.10.1.tar.gz) = e3b851253c347893a80e866e7d0188c572f2a87a540125de3d9cbe0b8c3f1ddfab2c60ee3ffde3fd7274fc662294c978c39b1b52acfd92c52fd552966da203be +Size (httpbin-0.10.1.tar.gz) = 107058 bytes --_----------=_1693291712220920--