From owner-svn-ports-all@freebsd.org Fri Dec 25 22:35:45 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A234A506E5; Fri, 25 Dec 2015 22:35:45 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 273E81C90; Fri, 25 Dec 2015 22:35:45 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBPMZiMR067244; Fri, 25 Dec 2015 22:35:44 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBPMZhUQ067238; Fri, 25 Dec 2015 22:35:43 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201512252235.tBPMZhUQ067238@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 25 Dec 2015 22:35:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404483 - in head: devel/py-prettytable security/py-oauthlib textproc/py-Chameleon textproc/py-diff-match-patch www/py-flask-bootstrap www/py-wsgiauth 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.20 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: Fri, 25 Dec 2015 22:35:45 -0000 Author: antoine Date: Fri Dec 25 22:35:43 2015 New Revision: 404483 URL: https://svnweb.freebsd.org/changeset/ports/404483 Log: Allow use a regular user, some files were unreadable Modified: head/devel/py-prettytable/Makefile head/security/py-oauthlib/Makefile head/textproc/py-Chameleon/Makefile head/textproc/py-diff-match-patch/Makefile head/www/py-flask-bootstrap/Makefile head/www/py-wsgiauth/Makefile Modified: head/devel/py-prettytable/Makefile ============================================================================== --- head/devel/py-prettytable/Makefile Fri Dec 25 22:27:26 2015 (r404482) +++ head/devel/py-prettytable/Makefile Fri Dec 25 22:35:43 2015 (r404483) @@ -3,7 +3,7 @@ PORTNAME= prettytable PORTVERSION= 0.7.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP/source/P/PrettyTable PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,4 +14,7 @@ COMMENT= Library for displaying tabular USES= python USE_PYTHON= distutils autoplist +post-extract: + @${CHMOD} -R a+rX ${WRKSRC} + .include Modified: head/security/py-oauthlib/Makefile ============================================================================== --- head/security/py-oauthlib/Makefile Fri Dec 25 22:27:26 2015 (r404482) +++ head/security/py-oauthlib/Makefile Fri Dec 25 22:35:43 2015 (r404483) @@ -3,6 +3,7 @@ PORTNAME= oauthlib PORTVERSION= 0.7.2 +PORTREVISION= 1 CATEGORIES= security net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -43,6 +44,9 @@ USE_PYTHON= distutils autoplist TEST_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}unittest2>0:${PORTSDIR}/devel/py-unittest2 .endif +post-extract: + @${CHMOD} -R a+rX ${WRKSRC} + regression-test: build @cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test Modified: head/textproc/py-Chameleon/Makefile ============================================================================== --- head/textproc/py-Chameleon/Makefile Fri Dec 25 22:27:26 2015 (r404482) +++ head/textproc/py-Chameleon/Makefile Fri Dec 25 22:35:43 2015 (r404483) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= Chameleon -DISTVERSION= 2.24 +PORTVERSION= 2.24 +PORTREVISION= 1 CATEGORIES= textproc www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,4 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= python USE_PYTHON= autoplist distutils +post-extract: + @${CHMOD} -R a+rX ${WRKSRC} + .include Modified: head/textproc/py-diff-match-patch/Makefile ============================================================================== --- head/textproc/py-diff-match-patch/Makefile Fri Dec 25 22:27:26 2015 (r404482) +++ head/textproc/py-diff-match-patch/Makefile Fri Dec 25 22:35:43 2015 (r404483) @@ -3,6 +3,7 @@ PORTNAME= diff-match-patch PORTVERSION= 0.0.0.20121119 +PORTREVISION= 1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP DISTNAME= ${PORTNAME}-${PORTVERSION:E} @@ -21,6 +22,9 @@ USE_PYTHON= autoplist distutils NO_ARCH= yes +post-extract: + @${CHMOD} -R a+rX ${WRKSRC} + regression-test: build @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test Modified: head/www/py-flask-bootstrap/Makefile ============================================================================== --- head/www/py-flask-bootstrap/Makefile Fri Dec 25 22:27:26 2015 (r404482) +++ head/www/py-flask-bootstrap/Makefile Fri Dec 25 22:35:43 2015 (r404483) @@ -2,6 +2,7 @@ PORTNAME= Flask-Bootstrap PORTVERSION= 3.3.2.1 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,4 +17,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flas USES= python USE_PYTHON= autoplist distutils +post-extract: + @${CHMOD} -R a+rX ${WRKSRC} + .include Modified: head/www/py-wsgiauth/Makefile ============================================================================== --- head/www/py-wsgiauth/Makefile Fri Dec 25 22:27:26 2015 (r404482) +++ head/www/py-wsgiauth/Makefile Fri Dec 25 22:35:43 2015 (r404483) @@ -3,7 +3,7 @@ PORTNAME= wsgiauth PORTVERSION= 0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,4 +14,7 @@ COMMENT= WSGI authentication middleware USES= python USE_PYTHON= distutils autoplist +post-extract: + @${CHMOD} -R a+rX ${WRKSRC} + .include