From owner-svn-ports-all@FreeBSD.ORG Wed Dec 10 07:32:18 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF434C8E; Wed, 10 Dec 2014 07:32:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 92438F4; Wed, 10 Dec 2014 07:32:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBA7WIjS008306; Wed, 10 Dec 2014 07:32:18 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBA7WHOX008300; Wed, 10 Dec 2014 07:32:17 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201412100732.sBA7WHOX008300@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Wed, 10 Dec 2014 07:32:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374444 - in head/www: py-flask-admin py-flask-cache py-flask-flatpages 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.18-1 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: Wed, 10 Dec 2014 07:32:18 -0000 Author: rm Date: Wed Dec 10 07:32:17 2014 New Revision: 374444 URL: https://svnweb.freebsd.org/changeset/ports/374444 QAT: https://qat.redports.org/buildarchive/r374444/ Log: - convert flask ports to USES=python - limit python version to 2 for www/py-flask-flatpages because of: ===> Configuring for py34-Flask-FlatPages-0.5_1 Traceback (most recent call last): File "", line 1, in File "setup.py", line 10, in INIT_PY = open(os.path.join(ROOT, 'flask_flatpages', '__init__.py')).read() File "/usr/local/lib/python3.4/encodings/ascii.py", line 26, in decode return codecs.ascii_decode(input, self.errors)[0] UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 164: ordinal not in range(128) *** Error code 1 Approved by: portmgr (blanket) Modified: head/www/py-flask-admin/Makefile head/www/py-flask-cache/Makefile head/www/py-flask-flatpages/Makefile Modified: head/www/py-flask-admin/Makefile ============================================================================== --- head/www/py-flask-admin/Makefile Wed Dec 10 07:19:28 2014 (r374443) +++ head/www/py-flask-admin/Makefile Wed Dec 10 07:32:17 2014 (r374444) @@ -13,8 +13,7 @@ LICENSE= MIT RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0.10:${PORTSDIR}/www/py-flask -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 +USE_PYTHON= autoplist distutils .include Modified: head/www/py-flask-cache/Makefile ============================================================================== --- head/www/py-flask-cache/Makefile Wed Dec 10 07:19:28 2014 (r374443) +++ head/www/py-flask-cache/Makefile Wed Dec 10 07:32:17 2014 (r374444) @@ -15,8 +15,7 @@ LICENSE= BSD3CLAUSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0.8:${PORTSDIR}/www/py-flask -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 +USE_PYTHON= autoplist distutils .include Modified: head/www/py-flask-flatpages/Makefile ============================================================================== --- head/www/py-flask-flatpages/Makefile Wed Dec 10 07:19:28 2014 (r374443) +++ head/www/py-flask-flatpages/Makefile Wed Dec 10 07:32:17 2014 (r374444) @@ -15,8 +15,7 @@ LICENSE= BSD3CLAUSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0:${PORTSDIR}/www/py-flask -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 +USE_PYTHON= autoplist distutils .include