Received: by mail.netbsd.org (Postfix, from userid 605) id EF2A085059; Fri, 26 Jan 2024 14:04:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2B2028504A for ; Fri, 26 Jan 2024 14:04:39 +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 QJCQ5DX9ZOSJ for ; Fri, 26 Jan 2024 14:04:38 +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 4116184CD7 for ; Fri, 26 Jan 2024 14:04:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 38019FA42; Fri, 26 Jan 2024 14:04:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170627787884670" MIME-Version: 1.0 Date: Fri, 26 Jan 2024 14:04:38 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-PasteScript To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240126140438.38019FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170627787884670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Fri Jan 26 14:04:38 UTC 2024 Modified Files: pkgsrc/www/py-PasteScript: Makefile PLIST distinfo Added Files: pkgsrc/www/py-PasteScript: ALTERNATIVES Log Message: py-PasteScript: updated to 3.4.0 3.4.0 (2024-01-22) * Correct working with PasteDeploy >=3. Thanks brondsem. 3.3.0 (2023-01-03) * Remove support for Python 2 in tests. It may still work outside tests. * Fix homepage link. Thanks to Guillaume Gauvrit (mardiros). * Stop using nose to run tests. * Run tests in GitHub actions instead of travis CI. 3.2.1 (2021-04-27) * Require ``setuptools`` in ``install_requires``. Thanks to Tomáš Hrnčiar (hrnciar) * Fix tests to run again. 3.2.0 (2019-09-24) * Use wsgiserver.WSGIServer instead of wsgiutils.wsgiServer.WSGIServer for Python 3 compatibility. 3.1.0 (2019-03-04) * Remove dependency on ``unittest2``. 3.0.0 (2018-11-26) * Moved to `GitHub `_. * Put into maintenance mode, meaning: critical bugs will be fixed, and support for new versions of Python will be handled, but new features are not being considered. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/www/py-PasteScript/ALTERNATIVES cvs rdiff -u -r1.7 -r1.8 pkgsrc/www/py-PasteScript/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/www/py-PasteScript/PLIST cvs rdiff -u -r1.4 -r1.5 pkgsrc/www/py-PasteScript/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170627787884670 Content-Disposition: inline Content-Length: 4145 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-PasteScript/Makefile diff -u pkgsrc/www/py-PasteScript/Makefile:1.7 pkgsrc/www/py-PasteScript/Makefile:1.8 --- pkgsrc/www/py-PasteScript/Makefile:1.7 Sun Apr 30 18:53:39 2023 +++ pkgsrc/www/py-PasteScript/Makefile Fri Jan 26 14:04:37 2024 @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.7 2023/04/30 18:53:39 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2024/01/26 14:04:37 adam Exp $ -DISTNAME= PasteScript-2.0.2 +DISTNAME= PasteScript-3.4.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 2 -CATEGORIES= www +CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=P/PasteScript/} MAINTAINER= pkgsrc-users@NetBSD.org @@ -11,15 +10,19 @@ MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= Pluggable command-line frontend for setting up package file layouts LICENSE= mit -DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel DEPENDS+= ${PYPKGPREFIX}-PasteDeploy-[0-9]*:../../www/py-PasteDeploy -DEPENDS+= ${PYPKGPREFIX}-paste-[0-9]*:../../www/py-paste +DEPENDS+= ${PYPKGPREFIX}-paste>=3.0:../../www/py-paste +DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 -USE_PKG_RESOURCES= yes +post-install: + cd ${DESTDIR}${PREFIX}/bin && \ + ${MV} paster paster-${PYVERSSUFFIX} || ${TRUE} -.include "../../lang/python/egg.mk" +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/py-PasteScript/PLIST diff -u pkgsrc/www/py-PasteScript/PLIST:1.1 pkgsrc/www/py-PasteScript/PLIST:1.2 --- pkgsrc/www/py-PasteScript/PLIST:1.1 Thu Jul 16 11:39:56 2015 +++ pkgsrc/www/py-PasteScript/PLIST Fri Jan 26 14:04:37 2024 @@ -1,14 +1,13 @@ -@comment $NetBSD: PLIST,v 1.1 2015/07/16 11:39:56 wiz Exp $ -bin/paster -${PYSITELIB}/${EGG_NAME}-nspkg.pth -${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}/namespace_packages.txt -${PYSITELIB}/${EGG_INFODIR}/not-zip-safe -${PYSITELIB}/${EGG_INFODIR}/requires.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt +@comment $NetBSD: PLIST,v 1.2 2024/01/26 14:04:37 adam Exp $ +bin/paster-${PYVERSSUFFIX} +${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt +${PYSITELIB}/${WHEEL_INFODIR}/namespace_packages.txt +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt +${PYSITELIB}/PasteScript-${PKGVERSION}-py${PYVERSSUFFIX}-nspkg.pth ${PYSITELIB}/paste/script/__init__.py ${PYSITELIB}/paste/script/__init__.pyc ${PYSITELIB}/paste/script/__init__.pyo Index: pkgsrc/www/py-PasteScript/distinfo diff -u pkgsrc/www/py-PasteScript/distinfo:1.4 pkgsrc/www/py-PasteScript/distinfo:1.5 --- pkgsrc/www/py-PasteScript/distinfo:1.4 Tue Oct 26 11:30:27 2021 +++ pkgsrc/www/py-PasteScript/distinfo Fri Jan 26 14:04:37 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2021/10/26 11:30:27 nia Exp $ +$NetBSD: distinfo,v 1.5 2024/01/26 14:04:37 adam Exp $ -BLAKE2s (PasteScript-2.0.2.tar.gz) = 53b8e4f2875b03c3cdad7e6f8c37bfb447a9c0d7a89cf940f01429518446cffe -SHA512 (PasteScript-2.0.2.tar.gz) = 2f093eb982972fed354219c75c2e008931cea553960cea8aaafbe57cde8556de5626e7eb9bb3b9b7328bad3b7d9899f11fc9773a65380396dae506e7531516de -Size (PasteScript-2.0.2.tar.gz) = 117521 bytes +BLAKE2s (PasteScript-3.4.0.tar.gz) = 867e1e5d26ee866ad0fda60afd9c129ce46619b5d94ce57b9fe50184a7f79ec8 +SHA512 (PasteScript-3.4.0.tar.gz) = e18c1442b0c0b606d1ac8c326561e40bbb2d4ac82eaaae408f0b4840a66c2c759c1f0455ea0373be67bbb6d3a6e2acffab629bfe55efbf8e869e44eb1444c298 +Size (PasteScript-3.4.0.tar.gz) = 98984 bytes Added files: Index: pkgsrc/www/py-PasteScript/ALTERNATIVES diff -u /dev/null pkgsrc/www/py-PasteScript/ALTERNATIVES:1.1 --- /dev/null Fri Jan 26 14:04:38 2024 +++ pkgsrc/www/py-PasteScript/ALTERNATIVES Fri Jan 26 14:04:37 2024 @@ -0,0 +1 @@ +bin/paster @PREFIX@/bin/paster-@PYVERSSUFFIX@ --_----------=_170627787884670--