Received: by mail.netbsd.org (Postfix, from userid 605) id BF6C884D69; Fri, 5 May 2023 09:07:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EC48484D2C for ; Fri, 5 May 2023 09:07:23 +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 U6LBbG5gUfsN for ; Fri, 5 May 2023 09:07:23 +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 42E5784CCF for ; Fri, 5 May 2023 09:07:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 363C5FA87; Fri, 5 May 2023 09:07:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168327764313390" MIME-Version: 1.0 Date: Fri, 5 May 2023 09:07:23 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/www/py-feedgenerator To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230505090723.363C5FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168327764313390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: wiz Date: Fri May 5 09:07:23 UTC 2023 Modified Files: pkgsrc/www/py-feedgenerator: Makefile PLIST distinfo Log Message: py-feedgenerator: update to 2.1.0. FeedGenerator 2.1.0 Modernize and improve tests (#32 & #34 — thanks to @venthur) Drop support for Python 3.6 and test on 3.10 & 3.11 (#35 — thanks to @hugovk) Exclude tests_feedgenerator/__pycache__ from distribution (#33 — thanks to @BenSturmfels) FeedGenerator 2.0.0 Add preliminary support for adding images to feeds Update code for Python 3.6+ Drop support for Python 2.7 Fix double subtitles if both description & subtitle are provided FeedGenerator 1.9.2 Use description field as subtitle for Atom feeds, if provided (#23) Update list of explicitly-supported Python versions to 3.6 – 3.9 To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/www/py-feedgenerator/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/www/py-feedgenerator/PLIST cvs rdiff -u -r1.7 -r1.8 pkgsrc/www/py-feedgenerator/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168327764313390 Content-Disposition: inline Content-Length: 3252 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-feedgenerator/Makefile diff -u pkgsrc/www/py-feedgenerator/Makefile:1.4 pkgsrc/www/py-feedgenerator/Makefile:1.5 --- pkgsrc/www/py-feedgenerator/Makefile:1.4 Tue Jan 4 20:55:24 2022 +++ pkgsrc/www/py-feedgenerator/Makefile Fri May 5 09:07:23 2023 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2022/01/04 20:55:24 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2023/05/05 09:07:23 wiz Exp $ -DISTNAME= feedgenerator-1.9.1 +DISTNAME= feedgenerator-2.1.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=f/feedgenerator/} @@ -12,9 +11,15 @@ COMMENT= Standalone version of django.ut LICENSE= modified-bsd DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz -DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test +TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov USE_LANGUAGES= # none +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/py-feedgenerator/PLIST diff -u pkgsrc/www/py-feedgenerator/PLIST:1.1 pkgsrc/www/py-feedgenerator/PLIST:1.2 --- pkgsrc/www/py-feedgenerator/PLIST:1.1 Fri Nov 27 16:49:19 2015 +++ pkgsrc/www/py-feedgenerator/PLIST Fri May 5 09:07:23 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2015/11/27 16:49:19 nils Exp $ +@comment $NetBSD: PLIST,v 1.2 2023/05/05 09:07:23 wiz Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -26,9 +26,6 @@ ${PYSITELIB}/feedgenerator/django/utils/ ${PYSITELIB}/feedgenerator/django/utils/functional.py ${PYSITELIB}/feedgenerator/django/utils/functional.pyc ${PYSITELIB}/feedgenerator/django/utils/functional.pyo -${PYSITELIB}/feedgenerator/django/utils/six.py -${PYSITELIB}/feedgenerator/django/utils/six.pyc -${PYSITELIB}/feedgenerator/django/utils/six.pyo ${PYSITELIB}/feedgenerator/django/utils/timezone.py ${PYSITELIB}/feedgenerator/django/utils/timezone.pyc ${PYSITELIB}/feedgenerator/django/utils/timezone.pyo Index: pkgsrc/www/py-feedgenerator/distinfo diff -u pkgsrc/www/py-feedgenerator/distinfo:1.7 pkgsrc/www/py-feedgenerator/distinfo:1.8 --- pkgsrc/www/py-feedgenerator/distinfo:1.7 Fri Jan 14 11:49:44 2022 +++ pkgsrc/www/py-feedgenerator/distinfo Fri May 5 09:07:23 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.7 2022/01/14 11:49:44 wiz Exp $ +$NetBSD: distinfo,v 1.8 2023/05/05 09:07:23 wiz Exp $ -BLAKE2s (feedgenerator-1.9.1.tar.gz) = 96b664dd7824d9b574d825f870c35baadafa02967a21e3e3be933d7c259dca16 -SHA512 (feedgenerator-1.9.1.tar.gz) = db3642acb8f0c9fd692f37a79cf5862e60687a1745afbc6593d37a0372adb994de603238a17a8eae95ffcc993195f63037f16122a3cf8771e6922dea492fb5d5 -Size (feedgenerator-1.9.1.tar.gz) = 25677 bytes +BLAKE2s (feedgenerator-2.1.0.tar.gz) = a2310a591e852c0e1b0113285ef63ec26b80d5cc25287cd2ce00e23579e720a2 +SHA512 (feedgenerator-2.1.0.tar.gz) = b8b41f5b256130166c8dba34dd950782f9acb506e3e37a2fe13b5e1f9d33f7d39b7f862e446f4f6f2f480973617feb70303f78a4fb6741f110166e61b92f0075 +Size (feedgenerator-2.1.0.tar.gz) = 20682 bytes --_----------=_168327764313390--