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 "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 86F087A1FE for ; Tue, 9 May 2017 20:05:19 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 2941F84DCA; Tue, 9 May 2017 20:05:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AD02884D98 for ; Tue, 9 May 2017 20:05:18 +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 N0NfLV8d-4Ha for ; Tue, 9 May 2017 20:05:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2407784D75 for ; Tue, 9 May 2017 20:05:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1E9D4FBE4; Tue, 9 May 2017 20:05:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1494360318136880" MIME-Version: 1.0 Date: Tue, 9 May 2017 20:05:18 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-beautifulsoup4 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170509200518.1E9D4FBE4@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. --_----------=_1494360318136880 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue May 9 20:05:18 UTC 2017 Modified Files: pkgsrc/www/py-beautifulsoup4: Makefile PLIST distinfo Log Message: = 4.6.0 (20170507) = * Added the `Tag.get_attribute_list` method, which acts like `Tag.get` for getting the value of an attribute, but which always returns a list, whether or not the attribute is a multi-value attribute. * It's now possible to use a tag's namespace prefix when searching, e.g. soup.find('namespace:tag') * Improved the handling of empty-element tags like
when using the html.parser parser. * HTML parsers treat all HTML4 and HTML5 empty element tags (aka void element tags) correctly. * Namespace prefix is preserved when an XML tag is copied. Thanks to Vikas for a patch and test. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/py-beautifulsoup4/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/www/py-beautifulsoup4/PLIST cvs rdiff -u -r1.5 -r1.6 pkgsrc/www/py-beautifulsoup4/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1494360318136880 Content-Disposition: inline Content-Length: 3491 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-beautifulsoup4/Makefile diff -u pkgsrc/www/py-beautifulsoup4/Makefile:1.8 pkgsrc/www/py-beautifulsoup4/Makefile:1.9 --- pkgsrc/www/py-beautifulsoup4/Makefile:1.8 Sun Feb 12 04:01:39 2017 +++ pkgsrc/www/py-beautifulsoup4/Makefile Tue May 9 20:05:17 2017 @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.8 2017/02/12 04:01:39 wen Exp $ +# $NetBSD: Makefile,v 1.9 2017/05/09 20:05:17 adam Exp $ -DISTNAME= beautifulsoup4-4.5.3 +DISTNAME= beautifulsoup4-4.6.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python -MASTER_SITES= http://www.crummy.com/software/BeautifulSoup/bs4/download/4.5/ +MASTER_SITES= http://www.crummy.com/software/BeautifulSoup/bs4/download/${PKGVERSION_NOREV:R}/ +MASTER_SITES+= ${MASTER_SITE_PYPI:=b/beautifulsoup4/} MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.crummy.com/software/BeautifulSoup/ @@ -13,7 +14,7 @@ LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml do-test: - cd ${WRKSRC} && ${PYTHONBIN} -m unittest discover -s bs4 + cd ${WRKSRC} && ${PYTHONBIN} -m unittest discover -s bs4 -.include "../../lang/python/distutils.mk" +.include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/py-beautifulsoup4/PLIST diff -u pkgsrc/www/py-beautifulsoup4/PLIST:1.4 pkgsrc/www/py-beautifulsoup4/PLIST:1.5 --- pkgsrc/www/py-beautifulsoup4/PLIST:1.4 Sun Feb 12 04:01:39 2017 +++ pkgsrc/www/py-beautifulsoup4/PLIST Tue May 9 20:05:17 2017 @@ -1,15 +1,12 @@ -@comment $NetBSD: PLIST,v 1.4 2017/02/12 04:01:39 wen Exp $ -${PYSITELIB}/${EGG_FILE}/PKG-INFO -${PYSITELIB}/${EGG_FILE}/SOURCES.txt -${PYSITELIB}/${EGG_FILE}/dependency_links.txt -${PYSITELIB}/${EGG_FILE}/requires.txt -${PYSITELIB}/${EGG_FILE}/top_level.txt +@comment $NetBSD: PLIST,v 1.5 2017/05/09 20:05:17 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}/bs4/__init__.py ${PYSITELIB}/bs4/__init__.pyc ${PYSITELIB}/bs4/__init__.pyo -${PYSITELIB}/bs4/1631353.py -${PYSITELIB}/bs4/1631353.pyc -${PYSITELIB}/bs4/1631353.pyo ${PYSITELIB}/bs4/builder/__init__.py ${PYSITELIB}/bs4/builder/__init__.pyc ${PYSITELIB}/bs4/builder/__init__.pyo Index: pkgsrc/www/py-beautifulsoup4/distinfo diff -u pkgsrc/www/py-beautifulsoup4/distinfo:1.5 pkgsrc/www/py-beautifulsoup4/distinfo:1.6 --- pkgsrc/www/py-beautifulsoup4/distinfo:1.5 Sun Feb 12 04:01:39 2017 +++ pkgsrc/www/py-beautifulsoup4/distinfo Tue May 9 20:05:17 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2017/02/12 04:01:39 wen Exp $ +$NetBSD: distinfo,v 1.6 2017/05/09 20:05:17 adam Exp $ -SHA1 (beautifulsoup4-4.5.3.tar.gz) = 1418181249fd9e9a4cd766f733ce111d74eaae53 -RMD160 (beautifulsoup4-4.5.3.tar.gz) = 30f17c4b959f82c2a86bc2043f6c528c9e4eab1a -SHA512 (beautifulsoup4-4.5.3.tar.gz) = d31db0e3bb778a78c37882fcd55dc580eb5eeadfd48744eae6e2e0d0ef5983b216a4682af84a4971611b05fb99c45012ce094475f2d7c39a5b90dad99906ec84 -Size (beautifulsoup4-4.5.3.tar.gz) = 159185 bytes +SHA1 (beautifulsoup4-4.6.0.tar.gz) = b9ad167d69b12d342b3ff713b2b6461c3f20e441 +RMD160 (beautifulsoup4-4.6.0.tar.gz) = 6452de577ef676636fb0be79eba9224cafd5622d +SHA512 (beautifulsoup4-4.6.0.tar.gz) = 1a7eee4218e58cc3852e71fe4f0892f673bb46a851941264766a38eff8ef05d612d88b4641fcb478ce8f66ac50dc987ca039923c4bbb11867c74813289f7e578 +Size (beautifulsoup4-4.6.0.tar.gz) = 160846 bytes --_----------=_1494360318136880--