From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 30 17:50:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B2BBA1065673 for ; Thu, 30 Aug 2012 17:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 86ED98FC18 for ; Thu, 30 Aug 2012 17:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7UHo1s6018093 for ; Thu, 30 Aug 2012 17:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7UHo1fT018092; Thu, 30 Aug 2012 17:50:01 GMT (envelope-from gnats) Resent-Date: Thu, 30 Aug 2012 17:50:01 GMT Resent-Message-Id: <201208301750.q7UHo1fT018092@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, William Grzybowski Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B382E106566C for ; Thu, 30 Aug 2012 17:49:53 +0000 (UTC) (envelope-from william88@gmail.com) Received: from mail-gg0-f182.google.com (mail-gg0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 6CCF88FC12 for ; Thu, 30 Aug 2012 17:49:53 +0000 (UTC) Received: by ggnk4 with SMTP id k4so404501ggn.13 for ; Thu, 30 Aug 2012 10:49:51 -0700 (PDT) Received: by 10.236.176.234 with SMTP id b70mr5659178yhm.55.1346348991248; Thu, 30 Aug 2012 10:49:51 -0700 (PDT) Received: from localhost (201.86.39.101.dynamic.adsl.gvt.net.br. [201.86.39.101]) by mx.google.com with ESMTPS id y10sm4143610yhd.6.2012.08.30.10.49.49 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 30 Aug 2012 10:49:50 -0700 (PDT) Message-Id: <503fa7be.0a4bec0a.73d4.ffff91c6@mx.google.com> Date: Thu, 30 Aug 2012 10:49:50 -0700 (PDT) From: William Grzybowski To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/171189: [MAINTAINER] www/py-beautifulsoup: bump to 4.1.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: William Grzybowski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Aug 2012 17:50:01 -0000 >Number: 171189 >Category: ports >Synopsis: [MAINTAINER] www/py-beautifulsoup: bump to 4.1.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Aug 30 17:50:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: William Grzybowski >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: >Description: Bump to 4.1.3: = 4.1.3 (20120820) = * Skipped a test under Python 2.6 and Python 3.1 to avoid a spurious test failure caused by the lousy HTMLParser in those versions. [bug=1038503] * Raise a more specific error (FeatureNotFound) when a requested parser or parser feature is not installed. Raise NotImplementedError instead of ValueError when the user calls insert_before() or insert_after() on the BeautifulSoup object itself. Patch by Aaron Devore. [bug=1038301] = 4.1.2 (20120817) = * As per PEP-8, allow searching by CSS class using the 'class_' keyword argument. [bug=1037624] * Display namespace prefixes for namespaced attribute names, instead of the fully-qualified names given by the lxml parser. [bug=1037597] * Fixed a crash on encoding when an attribute name contained non-ASCII characters. * When sniffing encodings, if the cchardet library is installed, Beautiful Soup uses it instead of chardet. cchardet is much faster. [bug=1020748] * Use logging.warning() instead of warning.warn() to notify the user that characters were replaced with REPLACEMENT CHARACTER. [bug=1013862] >How-To-Repeat: >Fix: See attached patch --- beautifulsoup.patch begins here --- Index: distinfo =================================================================== --- distinfo (revision 303386) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (beautifulsoup4-4.1.1.tar.gz) = a8b1b59a105c07cf5a4912efd77294b3f86c4e3623fee773c8ca764c29d507ed -SIZE (beautifulsoup4-4.1.1.tar.gz) = 129632 +SHA256 (beautifulsoup4-4.1.3.tar.gz) = f1e9b7b48e93efc044c79fa0ac5805094ab6f42f8946ec4abf840753e0dea91f +SIZE (beautifulsoup4-4.1.3.tar.gz) = 131290 Index: Makefile =================================================================== --- Makefile (revision 303386) +++ Makefile (working copy) @@ -6,9 +6,9 @@ # PORTNAME= beautifulsoup -PORTVERSION= 4.1.1 +PORTVERSION= 4.1.3 CATEGORIES= www python -MASTER_SITES= http://www.crummy.com/software/BeautifulSoup/bs4/download/4.1/ +MASTER_SITES= http://www.crummy.com/software/BeautifulSoup/bs4/download/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= beautifulsoup4-${PORTVERSION} --- beautifulsoup.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: