From owner-svn-ports-head@freebsd.org Sat Mar 3 19:15:31 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9286CF335F7; Sat, 3 Mar 2018 19:15:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E81B67156D; Sat, 3 Mar 2018 19:15:30 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4F87F264C; Sat, 3 Mar 2018 19:15:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w23JFT8D097128; Sat, 3 Mar 2018 19:15:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w23JFTwv097124; Sat, 3 Mar 2018 19:15:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201803031915.w23JFTwv097124@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 3 Mar 2018 19:15:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463521 - in head/devel: . py-pew X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-pew X-SVN-Commit-Revision: 463521 X-SVN-Commit-Repository: ports 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.25 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, 03 Mar 2018 19:15:31 -0000 Author: sunpoet Date: Sat Mar 3 19:15:29 2018 New Revision: 463521 URL: https://svnweb.freebsd.org/changeset/ports/463521 Log: Add py-pew 1.1.2 Python Env Wrapper is a set of commands to manage multiple virtual environments. Pew can create, delete and copy your environments, using a single command to switch to them wherever you are, while keeping them in a single (configurable) location. Virtualenvs makes it easier to work on more than one project at a time without introducing conflicts in their dependencies. Pew is completely shell-agnostic and thus works on bash, zsh, fish, powershell, etc. WWW: https://pypi.python.org/pypi/pew WWW: https://github.com/berdario/pew Added: head/devel/py-pew/ head/devel/py-pew/Makefile (contents, props changed) head/devel/py-pew/distinfo (contents, props changed) head/devel/py-pew/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Mar 3 19:15:24 2018 (r463520) +++ head/devel/Makefile Sat Mar 3 19:15:29 2018 (r463521) @@ -4685,6 +4685,7 @@ SUBDIR += py-pep8-naming SUBDIR += py-period SUBDIR += py-petname + SUBDIR += py-pew SUBDIR += py-pex SUBDIR += py-phabricator SUBDIR += py-phonenumbers Added: head/devel/py-pew/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pew/Makefile Sat Mar 3 19:15:29 2018 (r463521) @@ -0,0 +1,32 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= pew +PORTVERSION= 1.1.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Tool to manage multiple virtualenvs + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}virtualenv>=1.11:devel/py-virtualenv@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}virtualenv-clone>=0.2.5:devel/py-virtualenv-clone@${FLAVOR} + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python shebangfix + +SHEBANG_FILES= pew/shell_config/complete_deploy + +.include + +.if ${PYTHON_REL} < 3000 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}backports.shutil_get_terminal_size>=0:devel/py-backports.shutil_get_terminal_size@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pathlib>=0:devel/py-pathlib@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}shutilwhich>=0:sysutils/py-shutilwhich@${FLAVOR} +.endif + +.include Added: head/devel/py-pew/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pew/distinfo Sat Mar 3 19:15:29 2018 (r463521) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520099753 +SHA256 (pew-1.1.2.tar.gz) = b8312728526c9010295c88215c95a1b1731fdbd1a568f728e069932bd0545611 +SIZE (pew-1.1.2.tar.gz) = 19637 Added: head/devel/py-pew/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pew/pkg-descr Sat Mar 3 19:15:29 2018 (r463521) @@ -0,0 +1,13 @@ +Python Env Wrapper is a set of commands to manage multiple virtual environments. +Pew can create, delete and copy your environments, using a single command to +switch to them wherever you are, while keeping them in a single (configurable) +location. + +Virtualenvs makes it easier to work on more than one project at a time without +introducing conflicts in their dependencies. + +Pew is completely shell-agnostic and thus works on bash, zsh, fish, powershell, +etc. + +WWW: https://pypi.python.org/pypi/pew +WWW: https://github.com/berdario/pew