Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id DDA7B1A921F for ; Tue, 13 Oct 2020 12:33:11 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 5CA1C84DE3; Tue, 13 Oct 2020 12:33:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C442E84DE1 for ; Tue, 13 Oct 2020 12:33:10 +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 KbyuGu_J4Xup for ; Tue, 13 Oct 2020 12:33:10 +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 E62EC84DE2 for ; Tue, 13 Oct 2020 12:33:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D705CFB28; Tue, 13 Oct 2020 12:33:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1602592389190100" MIME-Version: 1.0 Date: Tue, 13 Oct 2020 12:33:09 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/textproc/py-feedparser To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20201013123309.D705CFB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1602592389190100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Tue Oct 13 12:33:09 UTC 2020 Added Files: pkgsrc/textproc/py-feedparser: DESCR Makefile PLIST distinfo Log Message: Add feedparser 6.0.0, which drops support for Python 2.7 and adds some API changes. To generate a diff of this commit: cvs rdiff -u -r0 -r1.4 pkgsrc/textproc/py-feedparser/DESCR cvs rdiff -u -r0 -r1.29 pkgsrc/textproc/py-feedparser/Makefile cvs rdiff -u -r0 -r1.6 pkgsrc/textproc/py-feedparser/PLIST cvs rdiff -u -r0 -r1.17 pkgsrc/textproc/py-feedparser/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1602592389190100 Content-Disposition: inline Content-Length: 7329 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/textproc/py-feedparser/DESCR diff -u /dev/null pkgsrc/textproc/py-feedparser/DESCR:1.4 --- /dev/null Tue Oct 13 12:33:09 2020 +++ pkgsrc/textproc/py-feedparser/DESCR Tue Oct 13 12:33:09 2020 @@ -0,0 +1,15 @@ +Universal Feed Parser is a Python module for downloading and parsing +syndicated feeds. It can handle RSS 0.90, Netscape RSS 0.91, Userland +RSS 0.91, RSS 0.92, RSS 0.93, RSS 0.94, RSS 1.0, RSS 2.0, Atom 0.3, +Atom 1.0, and CDF feeds. It also parses several popular extension +modules, including Dublin Core and Apple's iTunes extensions. + +To use Universal Feed Parser, you will need Python 2.1 or later. +Universal Feed Parser is not meant to run standalone; it is a module +for you to use as part of a larger Python program. + +Universal Feed Parser is easy to use; the module is self-contained +in a single file, feedparser.py, and it has one primary public +function, parse. parse takes a number of arguments, but only one +is required, and it can be a URL, a local filename, or a raw string +containing feed data in any format. Index: pkgsrc/textproc/py-feedparser/Makefile diff -u /dev/null pkgsrc/textproc/py-feedparser/Makefile:1.29 --- /dev/null Tue Oct 13 12:33:09 2020 +++ pkgsrc/textproc/py-feedparser/Makefile Tue Oct 13 12:33:09 2020 @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.29 2020/10/13 12:33:09 schmonz Exp $ + +DISTNAME= feedparser-6.0.1 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= textproc python +MASTER_SITES= ${MASTER_SITE_PYPI:=f/feedparser/} + +MAINTAINER= schmonz@NetBSD.org +HOMEPAGE= https://pypi.python.org/pypi/feedparser +COMMENT= Parse RSS and Atom feeds in Python +LICENSE= 2-clause-bsd + +USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +DEPENDS+= ${PYPKGPREFIX}-sgmllib3k-[0-9]*:../../textproc/py-sgmllib3k + +post-extract: + cd ${WRKSRC}/tests/illformed && \ + rm -f chardet/big5.xml undeclared_namespace.xml + +TEST_ENV+= PYTHONPATH=${WRKSRC}/build/lib + +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHONBIN} tests/runtests.py + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/py-feedparser/PLIST diff -u /dev/null pkgsrc/textproc/py-feedparser/PLIST:1.6 --- /dev/null Tue Oct 13 12:33:09 2020 +++ pkgsrc/textproc/py-feedparser/PLIST Tue Oct 13 12:33:09 2020 @@ -0,0 +1,102 @@ +@comment $NetBSD: PLIST,v 1.6 2020/10/13 12:33:09 schmonz 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}/feedparser/__init__.py +${PYSITELIB}/feedparser/__init__.pyc +${PYSITELIB}/feedparser/__init__.pyo +${PYSITELIB}/feedparser/api.py +${PYSITELIB}/feedparser/api.pyc +${PYSITELIB}/feedparser/api.pyo +${PYSITELIB}/feedparser/datetimes/__init__.py +${PYSITELIB}/feedparser/datetimes/__init__.pyc +${PYSITELIB}/feedparser/datetimes/__init__.pyo +${PYSITELIB}/feedparser/datetimes/asctime.py +${PYSITELIB}/feedparser/datetimes/asctime.pyc +${PYSITELIB}/feedparser/datetimes/asctime.pyo +${PYSITELIB}/feedparser/datetimes/greek.py +${PYSITELIB}/feedparser/datetimes/greek.pyc +${PYSITELIB}/feedparser/datetimes/greek.pyo +${PYSITELIB}/feedparser/datetimes/hungarian.py +${PYSITELIB}/feedparser/datetimes/hungarian.pyc +${PYSITELIB}/feedparser/datetimes/hungarian.pyo +${PYSITELIB}/feedparser/datetimes/iso8601.py +${PYSITELIB}/feedparser/datetimes/iso8601.pyc +${PYSITELIB}/feedparser/datetimes/iso8601.pyo +${PYSITELIB}/feedparser/datetimes/korean.py +${PYSITELIB}/feedparser/datetimes/korean.pyc +${PYSITELIB}/feedparser/datetimes/korean.pyo +${PYSITELIB}/feedparser/datetimes/perforce.py +${PYSITELIB}/feedparser/datetimes/perforce.pyc +${PYSITELIB}/feedparser/datetimes/perforce.pyo +${PYSITELIB}/feedparser/datetimes/rfc822.py +${PYSITELIB}/feedparser/datetimes/rfc822.pyc +${PYSITELIB}/feedparser/datetimes/rfc822.pyo +${PYSITELIB}/feedparser/datetimes/w3dtf.py +${PYSITELIB}/feedparser/datetimes/w3dtf.pyc +${PYSITELIB}/feedparser/datetimes/w3dtf.pyo +${PYSITELIB}/feedparser/encodings.py +${PYSITELIB}/feedparser/encodings.pyc +${PYSITELIB}/feedparser/encodings.pyo +${PYSITELIB}/feedparser/exceptions.py +${PYSITELIB}/feedparser/exceptions.pyc +${PYSITELIB}/feedparser/exceptions.pyo +${PYSITELIB}/feedparser/html.py +${PYSITELIB}/feedparser/html.pyc +${PYSITELIB}/feedparser/html.pyo +${PYSITELIB}/feedparser/http.py +${PYSITELIB}/feedparser/http.pyc +${PYSITELIB}/feedparser/http.pyo +${PYSITELIB}/feedparser/mixin.py +${PYSITELIB}/feedparser/mixin.pyc +${PYSITELIB}/feedparser/mixin.pyo +${PYSITELIB}/feedparser/namespaces/__init__.py +${PYSITELIB}/feedparser/namespaces/__init__.pyc +${PYSITELIB}/feedparser/namespaces/__init__.pyo +${PYSITELIB}/feedparser/namespaces/_base.py +${PYSITELIB}/feedparser/namespaces/_base.pyc +${PYSITELIB}/feedparser/namespaces/_base.pyo +${PYSITELIB}/feedparser/namespaces/admin.py +${PYSITELIB}/feedparser/namespaces/admin.pyc +${PYSITELIB}/feedparser/namespaces/admin.pyo +${PYSITELIB}/feedparser/namespaces/cc.py +${PYSITELIB}/feedparser/namespaces/cc.pyc +${PYSITELIB}/feedparser/namespaces/cc.pyo +${PYSITELIB}/feedparser/namespaces/dc.py +${PYSITELIB}/feedparser/namespaces/dc.pyc +${PYSITELIB}/feedparser/namespaces/dc.pyo +${PYSITELIB}/feedparser/namespaces/georss.py +${PYSITELIB}/feedparser/namespaces/georss.pyc +${PYSITELIB}/feedparser/namespaces/georss.pyo +${PYSITELIB}/feedparser/namespaces/itunes.py +${PYSITELIB}/feedparser/namespaces/itunes.pyc +${PYSITELIB}/feedparser/namespaces/itunes.pyo +${PYSITELIB}/feedparser/namespaces/mediarss.py +${PYSITELIB}/feedparser/namespaces/mediarss.pyc +${PYSITELIB}/feedparser/namespaces/mediarss.pyo +${PYSITELIB}/feedparser/namespaces/psc.py +${PYSITELIB}/feedparser/namespaces/psc.pyc +${PYSITELIB}/feedparser/namespaces/psc.pyo +${PYSITELIB}/feedparser/parsers/__init__.py +${PYSITELIB}/feedparser/parsers/__init__.pyc +${PYSITELIB}/feedparser/parsers/__init__.pyo +${PYSITELIB}/feedparser/parsers/loose.py +${PYSITELIB}/feedparser/parsers/loose.pyc +${PYSITELIB}/feedparser/parsers/loose.pyo +${PYSITELIB}/feedparser/parsers/strict.py +${PYSITELIB}/feedparser/parsers/strict.pyc +${PYSITELIB}/feedparser/parsers/strict.pyo +${PYSITELIB}/feedparser/sanitizer.py +${PYSITELIB}/feedparser/sanitizer.pyc +${PYSITELIB}/feedparser/sanitizer.pyo +${PYSITELIB}/feedparser/sgml.py +${PYSITELIB}/feedparser/sgml.pyc +${PYSITELIB}/feedparser/sgml.pyo +${PYSITELIB}/feedparser/urls.py +${PYSITELIB}/feedparser/urls.pyc +${PYSITELIB}/feedparser/urls.pyo +${PYSITELIB}/feedparser/util.py +${PYSITELIB}/feedparser/util.pyc +${PYSITELIB}/feedparser/util.pyo Index: pkgsrc/textproc/py-feedparser/distinfo diff -u /dev/null pkgsrc/textproc/py-feedparser/distinfo:1.17 --- /dev/null Tue Oct 13 12:33:09 2020 +++ pkgsrc/textproc/py-feedparser/distinfo Tue Oct 13 12:33:09 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.17 2020/10/13 12:33:09 schmonz Exp $ + +SHA1 (feedparser-6.0.1.tar.gz) = cf953fc23c20d999c49af81e988afbbec86f722b +RMD160 (feedparser-6.0.1.tar.gz) = 39963b7bb51406b6a1bd240fddf2a0d7255f0159 +SHA512 (feedparser-6.0.1.tar.gz) = 1349de4762a7f17d2c7d52e8f0de9a9d4370e1e6317aa10c0271724b1bb21514cb98d346b10f5faf43a31cd86c9d23476472e3adb10e0719f6d6b6fc3f7a4d8d +Size (feedparser-6.0.1.tar.gz) = 284620 bytes --_----------=_1602592389190100--