From owner-svn-ports-head@FreeBSD.ORG Sat Aug 23 15:01:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37155E4C; Sat, 23 Aug 2014 15:01:48 +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 1E3683C5B; Sat, 23 Aug 2014 15:01:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7NF1l7Q064666; Sat, 23 Aug 2014 15:01:47 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7NF1lkM064665; Sat, 23 Aug 2014 15:01:47 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201408231501.s7NF1lkM064665@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 23 Aug 2014 15:01:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365739 - head/devel/py-zope.minmax X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Aug 2014 15:01:48 -0000 Author: antoine Date: Sat Aug 23 15:01:47 2014 New Revision: 365739 URL: http://svnweb.freebsd.org/changeset/ports/365739 QAT: https://qat.redports.org/buildarchive/r365739/ Log: Fix some files unreadable by regular users, this causes errors like: File "/usr/local/lib/python2.7/site-packages/pkg_resources.py", line 1514, in _get with open(path, 'rb') as stream: IOError: [Errno 13] Permission denied: '/usr/local/lib/python2.7/site-packages/zope.minmax-1.1.2-py2.7.egg-info/namespace_packages.txt' While here, modernize a bit Modified: head/devel/py-zope.minmax/Makefile Modified: head/devel/py-zope.minmax/Makefile ============================================================================== --- head/devel/py-zope.minmax/Makefile Sat Aug 23 14:43:06 2014 (r365738) +++ head/devel/py-zope.minmax/Makefile Sat Aug 23 15:01:47 2014 (r365739) @@ -2,7 +2,7 @@ PORTNAME= zope.minmax PORTVERSION= 1.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,8 +16,10 @@ LICENSE= ZPL21 RUN_DEPENDS= zodb${PYTHON_PKGNAMESUFFIX}>=0:${PORTSDIR}/databases/zodb3 \ ${PYTHON_PKGNAMEPREFIX}zope.interface>=0:${PORTSDIR}/devel/py-zope.interface -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python +USE_PYTHON= distutils autoplist + +post-extract: + ${CHMOD} -R a+rX ${WRKSRC} .include