From owner-svn-ports-all@FreeBSD.ORG Mon Mar 4 18:12:33 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7F18A3F1; Mon, 4 Mar 2013 18:12:33 +0000 (UTC) (envelope-from lippe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 66D61C14; Mon, 4 Mar 2013 18:12:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r24ICXaM052983; Mon, 4 Mar 2013 18:12:33 GMT (envelope-from lippe@svn.freebsd.org) Received: (from lippe@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r24ICWVQ052981; Mon, 4 Mar 2013 18:12:32 GMT (envelope-from lippe@svn.freebsd.org) Message-Id: <201303041812.r24ICWVQ052981@svn.freebsd.org> From: Felippe de Meirelles Motta Date: Mon, 4 Mar 2013 18:12:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313417 - head/www/py-beautifulsoup X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 18:12:33 -0000 Author: lippe Date: Mon Mar 4 18:12:32 2013 New Revision: 313417 URL: http://svnweb.freebsd.org/changeset/ports/313417 Log: - Enable python 3 support PR: ports/175509 Submitted by: William Grzybowski Approved by: William Grzybowski (maintainer) Modified: head/www/py-beautifulsoup/Makefile Modified: head/www/py-beautifulsoup/Makefile ============================================================================== --- head/www/py-beautifulsoup/Makefile Mon Mar 4 17:05:06 2013 (r313416) +++ head/www/py-beautifulsoup/Makefile Mon Mar 4 18:12:32 2013 (r313417) @@ -1,12 +1,9 @@ -# New ports collection makefile for: beautifulsoup -# Date created: 25 July 2012 -# Whom: Mike Meyer -# +# Created by: Mike Meyer # $FreeBSD$ -# PORTNAME= beautifulsoup PORTVERSION= 4.1.3 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= http://www.crummy.com/software/BeautifulSoup/bs4/download/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,8 +12,14 @@ DISTNAME= beautifulsoup4-${PORTVERSION} MAINTAINER= william88@gmail.com COMMENT= HTML/XML Parser for Python -USE_PYTHON= 2.7 +USE_PYTHON= yes USE_PYDISTUTILS= yes PYDISTUTILS_PKGNAME= beautifulsoup4 -.include +.include + +.if ${PYTHON_REL} >= 320 +.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc" +.endif + +.include