Received: by mail.netbsd.org (Postfix, from userid 605) id 482A984DD5; Tue, 29 Sep 2020 18:47:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C05B984D9F for ; Tue, 29 Sep 2020 18:47:30 +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 KSHjhl3B0QTu for ; Tue, 29 Sep 2020 18:47:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3543B84D25 for ; Tue, 29 Sep 2020 18:47:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 29332FB28; Tue, 29 Sep 2020 18:47:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1601405250266570" MIME-Version: 1.0 Date: Tue, 29 Sep 2020 18:47:30 +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: <20200929184730.29332FB28@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. --_----------=_1601405250266570 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Sep 29 18:47:30 UTC 2020 Modified Files: pkgsrc/www/py-beautifulsoup4: Makefile distinfo Log Message: py-beautifulsoup4: updated to 4.9.2 4.9.2 * Fixed a bug that caused too many tags to be popped from the tag stack during tree building, when encountering a closing tag that had no matching opening tag. * Fixed a bug that inconsistently moved elements over when passing a Tag, rather than a list, into Tag.extend(). * Specify the soupsieve dependency in a way that complies with PEP 508. Patch by Mike Nerone. * Change the signatures for BeautifulSoup.insert_before and insert_after (which are not implemented) to match PageElement.insert_before and insert_after, quieting warnings in some IDEs. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/www/py-beautifulsoup4/Makefile cvs rdiff -u -r1.15 -r1.16 pkgsrc/www/py-beautifulsoup4/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1601405250266570 Content-Disposition: inline Content-Length: 1825 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.19 pkgsrc/www/py-beautifulsoup4/Makefile:1.20 --- pkgsrc/www/py-beautifulsoup4/Makefile:1.19 Wed May 27 13:00:40 2020 +++ pkgsrc/www/py-beautifulsoup4/Makefile Tue Sep 29 18:47:29 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2020/05/27 13:00:40 adam Exp $ +# $NetBSD: Makefile,v 1.20 2020/09/29 18:47:29 adam Exp $ -DISTNAME= beautifulsoup4-4.9.1 +DISTNAME= beautifulsoup4-4.9.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= https://www.crummy.com/software/BeautifulSoup/bs4/download/${PKGVERSION_NOREV:R}/ Index: pkgsrc/www/py-beautifulsoup4/distinfo diff -u pkgsrc/www/py-beautifulsoup4/distinfo:1.15 pkgsrc/www/py-beautifulsoup4/distinfo:1.16 --- pkgsrc/www/py-beautifulsoup4/distinfo:1.15 Wed May 27 13:00:40 2020 +++ pkgsrc/www/py-beautifulsoup4/distinfo Tue Sep 29 18:47:29 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.15 2020/05/27 13:00:40 adam Exp $ +$NetBSD: distinfo,v 1.16 2020/09/29 18:47:29 adam Exp $ -SHA1 (beautifulsoup4-4.9.1.tar.gz) = 72ff373be412536b091471d5e8fa7720f7135985 -RMD160 (beautifulsoup4-4.9.1.tar.gz) = b72ed53263f07c843ce34513a9d62128051e2fc3 -SHA512 (beautifulsoup4-4.9.1.tar.gz) = a1fe9cbfe8616d2ff25cc836769ff02d51ed86b06ca9a37366867b145440b7f64b866346600ed74820f0407c8e70eaac3d58700766a99b5ff7433cb736a57b3c -Size (beautifulsoup4-4.9.1.tar.gz) = 374759 bytes +SHA1 (beautifulsoup4-4.9.2.tar.gz) = 021f08e3e51383c93a3cde3d238ab68f3d002ba9 +RMD160 (beautifulsoup4-4.9.2.tar.gz) = 3e2a74e057819961513a3547b0b3092f0874bace +SHA512 (beautifulsoup4-4.9.2.tar.gz) = 3bac5d57404e0be1e77a1bd560750e831c8636fc5f9b3c05b375c0cf44d6846ed73127a2a7d1d8ca657c21ec33854b8194f76b62820fb627d80a5906229a7454 +Size (beautifulsoup4-4.9.2.tar.gz) = 375880 bytes --_----------=_1601405250266570--